diff options
| author | Justin Bronn <jbronn@gmail.com> | 2011-09-11 00:52:08 +0000 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2011-09-11 00:52:08 +0000 |
| commit | 28cb5bf1622cd8fa6f324cc516974e3badc31a51 (patch) | |
| tree | 873b7c1851227c15ad7660b7a1552ac70240fb83 /django | |
| parent | 83484cc109baf6aad645e7cace2183c2b7f9c181 (diff) | |
Fixed #16231 -- Added support for GML and KML on the SpatiaLite backend. Thanks, steko for the bug report and jpaulett for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/gis/db/backends/spatialite/operations.py | 12 | ||||
| -rw-r--r-- | django/contrib/gis/tests/geoapp/tests.py | 18 |
2 files changed, 23 insertions, 7 deletions
diff --git a/django/contrib/gis/db/backends/spatialite/operations.py b/django/contrib/gis/db/backends/spatialite/operations.py index 449c527187..a0efb99527 100644 --- a/django/contrib/gis/db/backends/spatialite/operations.py +++ b/django/contrib/gis/db/backends/spatialite/operations.py @@ -133,6 +133,18 @@ class SpatiaLiteOperations(DatabaseOperations, BaseSpatialOperations): gis_terms += self.geometry_functions.keys() self.gis_terms = dict([(term, None) for term in gis_terms]) + if version >= (2, 4, 0): + # Spatialite 2.4.0-RC4 added AsGML and AsKML, however both + # RC2 (shipped in popular Debian/Ubuntu packages) and RC4 + # report version as '2.4.0', so we fall back to feature detection + try: + self._get_spatialite_func("AsGML(GeomFromText('POINT(1 1)'))") + self.gml = 'AsGML' + self.kml = 'AsKML' + except DatabaseError: + # we are using < 2.4.0-RC4 + pass + def check_aggregate_support(self, aggregate): """ Checks if the given aggregate name is supported (that is, if it's diff --git a/django/contrib/gis/tests/geoapp/tests.py b/django/contrib/gis/tests/geoapp/tests.py index b7ce3b7111..25023d7bf5 100644 --- a/django/contrib/gis/tests/geoapp/tests.py +++ b/django/contrib/gis/tests/geoapp/tests.py @@ -1,5 +1,6 @@ import re from django.db import connection +from django.db.utils import DatabaseError from django.contrib.gis import gdal from django.contrib.gis.geos import (fromstr, GEOSGeometry, Point, LineString, LinearRing, Polygon, GeometryCollection) @@ -92,8 +93,8 @@ class GeoModelTest(TestCase): def test03a_kml(self): "Testing KML output from the database using GeoQuerySet.kml()." - # Only PostGIS supports KML serialization - if not postgis: + # Only PostGIS and Spatialite (>=2.4.0-RC4) support KML serialization + if not (postgis or (spatialite and connection.ops.kml)): self.assertRaises(NotImplementedError, State.objects.all().kml, field_name='poly') return @@ -117,7 +118,7 @@ class GeoModelTest(TestCase): def test03b_gml(self): "Testing GML output from the database using GeoQuerySet.gml()." - if mysql or spatialite: + if mysql or (spatialite and not connection.ops.gml) : self.assertRaises(NotImplementedError, Country.objects.all().gml, field_name='mpoly') return @@ -131,12 +132,15 @@ class GeoModelTest(TestCase): if oracle: # No precision parameter for Oracle :-/ gml_regex = re.compile(r'^<gml:Point srsName="SDO:4326" xmlns:gml="http://www.opengis.net/gml"><gml:coordinates decimal="\." cs="," ts=" ">-104.60925\d+,38.25500\d+ </gml:coordinates></gml:Point>') - for ptown in [ptown1, ptown2]: - self.assertTrue(gml_regex.match(ptown.gml)) + elif spatialite: + # Spatialite has extra colon in SrsName + gml_regex = re.compile(r'^<gml:Point SrsName="EPSG::4326"><gml:coordinates decimal="\." cs="," ts=" ">-104.609251\d+,38.255001</gml:coordinates></gml:Point>') else: gml_regex = re.compile(r'^<gml:Point srsName="EPSG:4326"><gml:coordinates>-104\.60925\d+,38\.255001</gml:coordinates></gml:Point>') - for ptown in [ptown1, ptown2]: - self.assertTrue(gml_regex.match(ptown.gml)) + + for ptown in [ptown1, ptown2]: + self.assertTrue(gml_regex.match(ptown.gml)) + def test03c_geojson(self): "Testing GeoJSON output from the database using GeoQuerySet.geojson()." |
