summaryrefslogtreecommitdiff
path: root/tests/gis_tests
AgeCommit message (Collapse)Author
2015-10-28Refs #25588 -- Added the srid property to GDALRasterDaniel Wiesmann
Geometry objects have an srid property, so this addition makes the raster api more similar to the geometries api.
2015-10-24Fixed #25583 -- Allowed calling `transform` with `CoordTransform` even if ↵Sergey Fedoseev
SRID is invalid.
2015-10-22Fixed #25592 -- Fixed misnamed strictly_above PostGIS lookupClaude Paroz
Fixes a regression from 2bd1bbc42. Thanks Daniel Wiesmann for the report and Tim Graham for the review.
2015-10-21Fixed #25585 -- Allowed setting OGRGeometry srid/srs attributes to `None`.Sergey Fedoseev
2015-10-21Fixed #25580 -- Allowed `None` to be set as SRID value.Sergey Fedoseev
2015-10-10Fixed #24687 -- Added select_related() validation for nested non-relational ↵Tim Graham
fields. The removed test was added in the original select_related() validation patch (45d4e43d2d25b902e3821b612209afa951a8bcb8), but there doesn't seem to be any reason for it. Thanks Claude Paroz for help and review.
2015-10-09Fixed #25533 -- Changed datatype mapping for GDALRastersDaniel Wiesmann
2015-10-09Fixed #25499 -- Added the ability to pass an expression in distance lookupsClaude Paroz
Thanks Bibhas Debnath for the report and Tim Graham for the review.
2015-09-23Refs #24152 -- Removed deprecated GeoQuerySet aggregate methods.Tim Graham
Per deprecation timeline.
2015-09-23Refs #22384 -- Removed the ability to reverse URLs by dotted path per ↵Tim Graham
deprecation timeline.
2015-09-23Fixed #25407 -- Removed network dependency in GeoIP tests.Anton Baklanov
2015-09-21Fixed #24688 -- Added Oracle support for new-style GIS functions.Jani Tiainen
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-09-10Fixed a GeoIP2 test failure with the latest GeoIP2 database.Tim Graham
Düsseldorf now appears as Dusseldorf in the latest version of the GeoIP2 database.
2015-09-04Fixed GeoIP test crash when dependencies not installed.Tim Graham
2015-08-31Refs #24121 -- Added a repr() to gis.GeoIP and gis.GeoIP2.Keryn Knight
2015-08-19Refs #12400 -- Added supports_geometry_field_unique_index GIS db feature.Jani Tiainen
2015-08-18Fixed #25225 -- Simplified code to remove GEOSIndexErrorTim Graham
The test is a regression for refs #4740 to show that the original fix of GEOSIndexError is no longer needed.
2015-08-10Removed deprecated GeoManager from inspectdb/ogrinspect output.Tim Graham
refs ea27e26b0907e74ab8d6c46a9694775a310fdc67
2015-07-31Refs #25184 -- Started deprecation for contrib.gis.geoip.Flavio Curella
2015-07-31Fixed #25184 -- Added support for MaxMind GeoLite2 database formatFlavio Curella
2015-07-30Fixed #25183 -- Fixed non-deterministic GeoIP test.Tim Graham
google.com doesn't always resolve to an IP inside the United States.
2015-07-28Refs #25183 -- Added debugging for non-deterministic GeoIP test.Tim Graham
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella
ForeignKey/OneToOneField
2015-07-20Fixed #25141 -- Diminished GDAL dependence during geojson serializationClaude Paroz
Only require GDAL if contained geometries need coordinate transformations. Thanks drepo for the report and Tim Graham for the review.
2015-07-18Replaced try/finally by mock.patch in geos testsClaude Paroz
2015-07-10Fixed #25072 -- Prevented GDALRaster memory to be uncollectableClaude Paroz
Setting GDALRaster.bands as a cached property was creating a circular reference with objects having __del__ methods, which means the memory could never be freed. Thanks Daniel Wiesmann for the report and test, and Tim Graham for the review.
2015-07-06Fixed some unclosed objects in testsAndriy Sokolovskiy
2015-06-26Pushed GDAL skip condition inside testClaude Paroz
As GDAL_VERSION is conditionnaly imported, it cannot be referenced in skipIf decorator.
2015-06-26Refs #24840 -- Added skip flag to raster transform test for GDAL<1.8.1.Daniel Wiesmann
Thanks to Simon Charette for the report.
2015-06-25Updated GeoIP test for newer versionsClaude Paroz
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-24Refs #24840 -- Added GDALRaster Warp and transform methodsDaniel Wiesmann
Thanks to Tim Graham for the review.
2015-06-23Fixed #25011, Refs #23804 -- Added check for GDAL on RasterField initializationDaniel Wiesmann
2015-06-20Added GDAL 2.0 supportClaude Paroz
2015-06-19Fixed #23804 -- Added RasterField for PostGIS.Daniel Wiesmann
Thanks to Tim Graham and Claude Paroz for the reviews and patches.
2015-06-06Fixed GIS tests broken by 0a89915Claude Paroz
2015-06-05Cleanup: Removed the try-except-fail antipattern from testsShai Berger
Found cases where testing code was doing try: whatever except (some excption type): self.fail("exception shouldn't be thrown") replaced it with just whatever as this makes the unexpected errors easier to debug, and the tests would fail just as much and aren't rendered less readable. Thanks Markus Holtermann for review
2015-05-20Refs #24652 -- Used SimpleTestCase where appropriate.Simon Charette
2015-05-13Removed test numbering in gdal testsClaude Paroz
2015-05-06Fixed #24207 -- Added 25D-type geometry field support to ogrinspectClaude Paroz
Thanks Michael Diener for the report and sample data, and Tim Graham for the review.
2015-05-05Made some tests run on non-GIS databasesClaude Paroz
2015-04-28Fixed #24714 -- Used more specific assertions than assertEqual in tests.Alasdair Nicol
2015-04-27Used assertIsInstance in tests.Alasdair Nicol
2015-04-25Fixed #24499 -- Dropped support for PostGIS 1.5.Tim Graham
2015-04-24Delayed GDAL check for OSMGeoAdminClaude Paroz
2015-04-24Removed many HAS_GEOS conditional importsClaude Paroz
2015-04-24Lazy loading of GEOS functionsClaude Paroz
2015-04-23Fixed failures with older Spatialite versionsClaude Paroz
2015-04-22Deprecated legacy GeoManager/GeoQuerySet methodsClaude Paroz