summaryrefslogtreecommitdiff
path: root/tests/gis_tests
AgeCommit message (Collapse)Author
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2016-03-29Fixed #26417 -- Allowed setting GDALBand data with partial values.Daniel Wiesmann
2016-03-29Fixed #26415 -- Allowed deleting nodata value on GDALBands.Daniel Wiesmann
2016-03-28Sorted single letter imports per the latest version of isort.Tim Graham
2016-03-11Removed unneeded GeoManagers in tests.Tim Graham
2016-03-11Fixed #25865 -- Made OSMGeoAdmin require GDAL only if transformation is needed.Sergey Fedoseev
2016-02-24Fixed #26266 -- Output the primary key in the GeoJSON serializer propertiesClaude Paroz
Thanks Tim Graham for the review.
2016-02-09Refs #26112 -- Fixed aggregate GIS test on Oracle.Shai Berger
Made sure the test doesn't try to aggregate over MultiPolygonField and made AreaField turn decimals into floats on the way from the DB. Thanks Daniel Wiesmann, Jani Tiainen, and Tim Graham for review and discussion.
2016-02-05Fixed #26176 -- Fixed E123 flake8 warnings.Tim Graham
2016-01-29Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as ↵Hasan
appropriate.
2016-01-29Refs #26022 -- Used context manager version of assertRaises in tests.Hasan
2016-01-28Fixed #20415 -- Ensured srid isn't localized in OpenLayers JavaScript.Tim Graham
2016-01-28Fixed #26147 -- Relaxed expected values in GIS tests to account for ↵Tim Graham
database/library differences.
2016-01-28Fixed #26138 -- Ensured geometry_field's geometry is always serializedClaude Paroz
Thanks Bernd Schlapsi for the report.
2016-01-23Fixed typos in test comments.Mingun Pak
2016-01-22Fixed #26112 -- Error when computing aggregate of GIS areas.Daniel Wiesmann
Thanks Simon Charette and Claude Paroz for the reviews.
2016-01-07Reverted #25961 -- Removed handling of thread-non-safe GEOS functions.Tim Graham
This reverts commit 312fc1af7b8a028611b45ee272652d59ea7bd85a as it seems to cause segmentation faults as described in the ticket.
2015-12-30Fixed #15165 -- Prevented wrong results with perimeter on geodetic fields.Claude Paroz
2015-12-23Fixed #25961 -- Removed handling of thread-non-safe GEOS functions.Sergey Fedoseev
2015-12-22Fixed #25950 -- Added support for GEOSisClosed.Sergey Fedoseev
2015-12-18Fixed #25869 -- Added trim and precision properties to WKTWriter.Sergey Fedoseev
2015-12-14Fixed #25662 -- Allowed creation of empty GEOS geometries.Sergey Fedoseev
2015-12-14Fixed #25932 -- Made predicates of OGRGeometry return bool instead of int.Sergey Fedoseev
2015-12-04Refs #25734 -- Relaxed GDALRaster statistics test to use assertAlmostEqual.Daniel Wiesmann
Some versions of GDAL give slightly different results.
2015-12-03Fixed #25797 -- Fixed regex for getting units from SRS WKT.Sergey Fedoseev
2015-12-03Fixed many spelling mistakes in code, comments, and docs.Josh Soref
2015-12-02Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite.Sergey Fedoseev
2015-11-25Fixed #25773 -- Deprecated the geos.MultiPolygon.cascaded_union property.Sergey Fedoseev
2015-11-25Fixed #25734 -- Made GDALBand min and max properties use ↵Daniel Wiesmann
GDALComputeRasterStatistics. Thanks Sergey Fedoseev and Tim Graham for the review.
2015-11-23Refs #25663 -- Fixed checking of the number of points for LineString if ↵Sergey Fedoseev
initialized from numpy.array.
2015-11-20Fixed #25722 -- Added the GEOSGeometry.covers() method.Sergey Fedoseev
2015-11-20Removed skipIf for GEOSTest.test_linearref which already exists at class level.Sergey Fedoseev
2015-11-19Fixed #25438 -- Fixed assorted Oracle GIS test failures.Jani Tiainen
2015-11-19Allowed RasterFieldWithoutGDALTest to run even if GDAL is installed.Sergey Fedoseev
2015-11-18Fixed #25654 -- Added the GEOSGeometry.unary_union property.Sergey Fedoseev
2015-11-18Fixed #25663 -- Added checking of the number of points for LinearRing and ↵Sergey Fedoseev
LineString.
2015-11-18Fixed #25665 -- Deprecated getter/setter of Point.tuple.Sergey Fedoseev
2015-11-18Refs #25665 -- Deprecated getters/setters of Point coordinate properties.Sergey Fedoseev
2015-11-18Refs #25665 -- Deprecated getter/setter of GEOSGeometry.srid.Sergey Fedoseev
2015-11-17Fixed #25682 -- Removed bare except clauses.Attila Tovt
2015-11-07Removed ability to pass a geometry string to GIS functionsClaude Paroz
This was a possible confusion source with column name arguments. Thanks Sergey Fedoseev for the suggestion.
2015-11-07Fixed GIS test failures when GDAL is not installedClaude Paroz
Thanks Iacopo Spalletti for the report and testing.
2015-11-06Fixed #25673 -- Made `GeometryField.from_db_value` set SRIDSergey Fedoseev
2015-11-03Fixed #25629 -- Added checks of the number of arguments for GeoDjango DB ↵Sergey Fedoseev
functions.
2015-11-02Fixed #25661 -- Fixed checking number of points during list assignment for ↵Sergey Fedoseev
`LinearRing`.
2015-11-02Fixed #25664 -- Fixed `dims` for `Point`Sergey Fedoseev
2015-11-02Fixed #25659 -- Added missing support for MySQL 5.6.1 GIS functionsSergey Fedoseev
Added support for ST_Difference/ST_Intersection/ST_SymDifference.
2015-11-01Fixed #25655 -- Dropped support for GEOS < 3.3Sergey Fedoseev
2015-10-31Fixed #25636 -- Dropped support for SpatiaLite < 3.0Sergey Fedoseev
2015-10-30Refs #24499 -- Removed an obsolete test check for PostGIS 1.5.Tim Graham