summaryrefslogtreecommitdiff
path: root/tests/gis_tests/data
AgeCommit message (Collapse)Author
2025-07-21Used assertRaisesMessage and subTest where appropriate in GEOS tests.David Smith
2024-10-22Refs #34406 -- Added support for GDAL curved geometries.David Smith
Co-authored-by: Fabien Le Frapper <contact@fabienlefrapper.me>
2024-10-17Fixed #35841 -- Restored support for DB-IP databases in GeoIP2.Nick Pope
Thanks Felix Farquharson for the report and Claude Paroz for the review. Regression in 40b5b1596f7505416bd30d5d7582b5a9004ea7d5. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-10-17Refs #35841 -- Updated GeoIP2 test database files.Nick Pope
The mmdb files were taken from https://github.com/maxmind/MaxMind-DB/commit/679e37e18a4a3009949c2213ec2c0bb8090c10c7.
2023-12-12Fixed #34305 -- Changed GeoIP2 tests to use MaxMind test databases.Nick Pope
GEOIP_SETTINGS is removed from the global scope as this prevents modifications to the settings using @override_settings in tests. Additional improvements now that we have stable test databases include: - Made testing more comprehensive and improved coverage - Patched socket.gethostbyname() for whole test case - Added testing of non-free GeoIP2 databases Co-authored-by: Tom Forbes <tom@tomforb.es>
2019-01-31Fixed #30020 -- Fixed reading nulls with LayerMapping.Kathryn Killebrew
2018-02-10Fixed #28960 -- Added GEOSGeometry.buffer_with_style().Stanislav Karpov
2016-11-12Dropped support for GDAL 1.7 and 1.8Claude Paroz
2016-04-17Fixed #25951 -- Trimmed default representation of GEOSGeometryClaude Paroz
Thanks Sergey Fedoseev for the report.
2016-04-12Fixed #26432 -- Fixed size tuple order when using numpy reshape on a GDALBand.Opa-
2015-06-19Fixed #23804 -- Added RasterField for PostGIS.Daniel Wiesmann
Thanks to Tim Graham and Claude Paroz for the reviews and patches.
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-03-16Added write support for GDALRasterDaniel Wiesmann
- Instantiation of GDALRaster instances from dict or json data. - Retrieve and write pixel values in GDALBand objects. - Support for the GDALFlushCache in gdal C prototypes - Added private flush method to GDALRaster to make sure all data is written to files when file-based rasters are changed. - Replaced ``ptr`` with ``_ptr`` for internal ptr variable Refs #23804. Thanks Claude Paroz and Tim Graham for the reviews.
2015-02-11Moved contrib.gis tests out of contrib.Tim Graham