summaryrefslogtreecommitdiff
path: root/tests/gis_tests
AgeCommit message (Collapse)Author
2017-07-26Fixed #28433 -- Made GEOSGeometry.__eq__() work correctly with non-canonical ↵Sergey Fedoseev
EWKT string.
2017-07-26Fixed #28436 -- Added support for distance lookups on MySQL.Sergey Fedoseev
2017-07-25Fixed #28432 -- Allowed geometry expressions to be used with distance lookups.Sergey Fedoseev
Distance lookups use the Distance function for decreased code redundancy.
2017-07-20Simplified handling of GIS lookup params.Sergey Fedoseev
2017-07-20Tested the case when the lhs of a raster lookup has an index specified and ↵Sergey Fedoseev
the rhs doesn't.
2017-07-19Fixed typo in DistanceLookupBase.process_rhs() error message.Sergey Fedoseev
2017-07-18Removed redundant lookup values in ↵Sergey Fedoseev
RasterFieldTest.test_all_gis_lookups_with_rasters. These values produce already tested lookups and prevent another one from being tested.
2017-07-18Fixed RasterFieldTest.test_all_gis_lookups_with_rasters.Sergey Fedoseev
It was inadvertently made a no-op in 378cf689d8772d917f642a80967ab8a2332eb41c.
2017-07-13Added test for GEOSCoordSeq.__getitem__().Sergey Fedoseev
2017-07-12Added test for LineString.__iter__().Sergey Fedoseev
2017-07-11Fixed #28383 -- Made NumPoints GIS function return None for non-LINESTRING ↵Sergey Fedoseev
geometries on MySQL.
2017-06-26Fixed #27964 -- Made MySQL backend raise exception if spatial transformation ↵Sergey Fedoseev
is needed for query.
2017-06-16Fixed #28300 -- Allowed GDALRasters to use the vsimem filesystem.Daniel Wiesmann
Thanks Tim Graham for the review and edits.
2017-06-13Fixed #27830 -- Used distutils.version.LooseVersion for version parsing.chillaranand
2017-06-08Fixed #28288 -- Allowed passing papsz options to GDALRaster initialization.Daniel Wiesmann
2017-06-07Fixed #28257 -- Confirmed support for GDAL 2.2Claude Paroz
Additionally, a test has been updated to account for small SRS WKT differences. Thanks Tim Graham for writing the doc part.
2017-06-07Fixed #28232 -- Made raster metadata readable and writable on GDALRaster/Band.Daniel Wiesmann
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-05-30Refs #23804 -- Improved value validation in GDALRaster.geotransform setter.Adam Johnson
2017-05-30Fixed gis_tests.geoapp test with incorrect geodetic coordinates.Mariusz Felisiak
The latitude coordinates exceed -90, 90 bounds and caused a test failure on Oracle 12.2. Thanks Michał Wierzbowski for help preparing the patch.
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
iter(dict) is equivalent to iter(dict.keys()).
2017-05-24Refs #27804 -- Used subTest() in several tests.Bruno Alla
2017-05-22Fixed #28112 -- Added 'time_zone' in GeoIP2.city() dict.R3turnz
2017-05-14Fixed #28195 -- Added OSMWidget.default_zoom attribute.Danilo Bargen
2017-05-14Simplified test for OSMWidget.default_lon/lat.Tim Graham
2017-05-04Removed obsolete HAS_GEOS variable for test skipping.Tim Graham
2017-05-04Fixed #28160 -- Prevented hiding GDAL exceptions when it's not installed.Tim Graham
2017-05-04Made runtests.py run gis_tests only when using a GIS database backend.Tim Graham
This facilitates other changes like refs #28160.
2017-04-30Fixed #28105 -- Fixed crash in BaseGeometryWidget.get_context() when ↵Dylan Verheul
overriding existing attrs.
2017-04-22Fixed #28115 -- Fixed IP address validation in geoip2 moduleClaude Paroz
Regression in 277a4dd4b4cc2a2cad77139882f084480751a95a. Thanks Tim Graham for the test.
2017-04-20Fixed #28039 -- Fixed crash in BaseGeometryWidget.subwidgets().Tim Graham
2017-04-10Fixed #26788 -- Fixed QuerySet.update() crash when updating a geometry to ↵Sergey Fedoseev
another one.
2017-04-06Fixed #28006 -- Allowed using D with lookups on Distance annotations.Sergey Fedoseev
2017-04-02Fixed #27573 -- Made Distance on geodetic coordinates return a raw value on ↵Sergey Fedoseev
MySQL.
2017-04-02Fixed #11854 -- Added Azimuth GIS function. (#8286)Sergey Fedoseev
2017-04-01Fixed #25874 -- Made GEOSGeometry read SRID from GeoJSON input.Sergey Fedoseev
2017-04-01Fixed #12410 -- Added LineLocatePoint GIS function.Sergey Fedoseev
2017-04-01Fixed #26967 -- Added MySQL support for AsGeoJSON, GeoHash, IsValid ↵Sergey Fedoseev
functions, and isvalid lookup.
2017-04-01Fixed #25605 -- Made GIS DB functions accept geometric expressions, not only ↵Sergey Fedoseev
values, in all positions.
2017-03-30Fixed #25873 -- Made GEOSGeometry handle the srid parameter more predictably.Sergey Fedoseev
2017-03-29Fixed #27973 -- Fixed GeoJSON representation of LinearRing and custom ↵Sergey Fedoseev
GEOSGeometry subclasses.
2017-03-29Made isvalid lookup use IsValid function to decrease code redundancy.Sergey Fedoseev
2017-03-27Refs #27736 -- Used decorators for GIS lookup registration.Sergey Fedoseev
2017-03-23Fixed #27962 -- Allowed lookups on Area annotations.Sergey Fedoseev
2017-03-23Fixed #27603 -- Fixed AsKML when queryset is evaluated more than once.Sergey Fedoseev
2017-03-21Fixed #27965 -- Fixed precision comparison in a geoforms test (refs #27939).Sergey Fedoseev
2017-03-17Fixed #27939 -- Updated OpenLayersWidget.map_srid for OpenLayers 3.Tim Graham
Regression in 2ebfda38e65177dfc7d6e90457ffa4a0fa2796f0 (refs #25004).
2017-03-17Replaced type-specific assertions with assertEqual().Tim Graham
Python docs say, "it's usually not necessary to invoke these methods directly."
2017-03-16Updated postgis.net and gaia-gis.it links to https.Tim Graham
2017-03-16Removed GeoQuerySet leftovers.Sergey Fedoseev
Follow up to a0d166306fbdc41f49e6fadf4ec84b17eb147daa.