diff options
| author | Daniel Wiesmann <daniel.wiesmann@gmail.com> | 2015-06-19 16:46:03 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-06-19 14:36:43 -0400 |
| commit | b769bbd4f6a3cd1bcd9ebf3559ec6ea0f9b50565 (patch) | |
| tree | 48cb987ced74d60f75fd86306edc2f87c764362f /tests/gis_tests/data | |
| parent | d3d66d47222dd8765a20a15fdc754c0ed7635404 (diff) | |
Fixed #23804 -- Added RasterField for PostGIS.
Thanks to Tim Graham and Claude Paroz for the reviews and patches.
Diffstat (limited to 'tests/gis_tests/data')
| -rw-r--r-- | tests/gis_tests/data/rasters/textrasters.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/gis_tests/data/rasters/textrasters.py b/tests/gis_tests/data/rasters/textrasters.py index b12ce62afc..01b211b3ce 100644 --- a/tests/gis_tests/data/rasters/textrasters.py +++ b/tests/gis_tests/data/rasters/textrasters.py @@ -1,7 +1,11 @@ +""" +Text-based test rasters +""" + JSON_RASTER = """{ "srid": 4326, "origin": [0, 0], - "scale": [1, 1], + "scale": [-1, 1], "skew": [0, 0], "width": 5, "height": 5, |
