Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
95f7ea3a
Kaydet (Commit)
95f7ea3a
authored
Eki 12, 2012
tarafından
Brian Galey
Kaydeden (comit)
Claude Paroz
Eki 12, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #19028 -- Support GeoJSON output with SpatiaLite 3.0+
üst
470deb5c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
12 deletions
+15
-12
operations.py
django/contrib/gis/db/backends/spatialite/operations.py
+2
-0
query.py
django/contrib/gis/db/models/query.py
+3
-2
tests.py
django/contrib/gis/tests/geoapp/tests.py
+8
-8
db-api.txt
docs/ref/contrib/gis/db-api.txt
+1
-1
geoquerysets.txt
docs/ref/contrib/gis/geoquerysets.txt
+1
-1
No files found.
django/contrib/gis/db/backends/spatialite/operations.py
Dosyayı görüntüle @
95f7ea3a
...
...
@@ -146,6 +146,8 @@ class SpatiaLiteOperations(DatabaseOperations, BaseSpatialOperations):
except
DatabaseError
:
# we are using < 2.4.0-RC4
pass
if
version
>=
(
3
,
0
,
0
):
self
.
geojson
=
'AsGeoJSON'
def
check_aggregate_support
(
self
,
aggregate
):
"""
...
...
django/contrib/gis/db/models/query.py
Dosyayı görüntüle @
95f7ea3a
...
...
@@ -146,13 +146,14 @@ class GeoQuerySet(QuerySet):
"""
backend
=
connections
[
self
.
db
]
.
ops
if
not
backend
.
geojson
:
raise
NotImplementedError
(
'Only PostGIS 1.3.4+ supports GeoJSON serialization.'
)
raise
NotImplementedError
(
'Only PostGIS 1.3.4+ and SpatiaLite 3.0+ '
'support GeoJSON serialization.'
)
if
not
isinstance
(
precision
,
six
.
integer_types
):
raise
TypeError
(
'Precision keyword must be set with an integer.'
)
# Setting the options flag -- which depends on which version of
# PostGIS we're using.
# PostGIS we're using.
SpatiaLite only uses the first group of options.
if
backend
.
spatial_version
>=
(
1
,
4
,
0
):
options
=
0
if
crs
and
bbox
:
options
=
3
...
...
django/contrib/gis/tests/geoapp/tests.py
Dosyayı görüntüle @
95f7ea3a
...
...
@@ -474,21 +474,21 @@ class GeoQuerySetTest(TestCase):
def
test_geojson
(
self
):
"Testing GeoJSON output from the database using GeoQuerySet.geojson()."
# Only PostGIS 1.3.4+
supports
GeoJSON.
# Only PostGIS 1.3.4+
and SpatiaLite 3.0+ support
GeoJSON.
if
not
connection
.
ops
.
geojson
:
self
.
assertRaises
(
NotImplementedError
,
Country
.
objects
.
all
()
.
geojson
,
field_name
=
'mpoly'
)
return
if
connection
.
ops
.
spatial_version
>=
(
1
,
4
,
0
):
pueblo_json
=
'{"type":"Point","coordinates":[-104.609252,38.255001]}'
houston_json
=
'{"type":"Point","crs":{"type":"name","properties":{"name":"EPSG:4326"}},"coordinates":[-95.363151,29.763374]}'
victoria_json
=
'{"type":"Point","bbox":[-123.30519600,48.46261100,-123.30519600,48.46261100],"coordinates":[-123.305196,48.462611]}'
chicago_json
=
'{"type":"Point","crs":{"type":"name","properties":{"name":"EPSG:4326"}},"bbox":[-87.65018,41.85039,-87.65018,41.85039],"coordinates":[-87.65018,41.85039]}'
else
:
pueblo_json
=
'{"type":"Point","coordinates":[-104.609252,38.255001]}'
houston_json
=
'{"type":"Point","crs":{"type":"name","properties":{"name":"EPSG:4326"}},"coordinates":[-95.363151,29.763374]}'
victoria_json
=
'{"type":"Point","bbox":[-123.30519600,48.46261100,-123.30519600,48.46261100],"coordinates":[-123.305196,48.462611]}'
chicago_json
=
'{"type":"Point","crs":{"type":"name","properties":{"name":"EPSG:4326"}},"bbox":[-87.65018,41.85039,-87.65018,41.85039],"coordinates":[-87.65018,41.85039]}'
if
postgis
and
connection
.
ops
.
spatial_version
<
(
1
,
4
,
0
):
pueblo_json
=
'{"type":"Point","coordinates":[-104.60925200,38.25500100]}'
houston_json
=
'{"type":"Point","crs":{"type":"EPSG","properties":{"EPSG":4326}},"coordinates":[-95.36315100,29.76337400]}'
victoria_json
=
'{"type":"Point","bbox":[-123.30519600,48.46261100,-123.30519600,48.46261100],"coordinates":[-123.30519600,48.46261100]}'
chicago_json
=
'{"type":"Point","crs":{"type":"EPSG","properties":{"EPSG":4326}},"bbox":[-87.65018,41.85039,-87.65018,41.85039],"coordinates":[-87.65018,41.85039]}'
elif
spatialite
:
victoria_json
=
'{"type":"Point","bbox":[-123.305196,48.462611,-123.305196,48.462611],"coordinates":[-123.305196,48.462611]}'
# Precision argument should only be an integer
self
.
assertRaises
(
TypeError
,
City
.
objects
.
geojson
,
precision
=
'foo'
)
...
...
docs/ref/contrib/gis/db-api.txt
Dosyayı görüntüle @
95f7ea3a
...
...
@@ -282,7 +282,7 @@ Method PostGIS Oracle SpatiaLite
:meth:`GeoQuerySet.extent3d` X
:meth:`GeoQuerySet.force_rhr` X
:meth:`GeoQuerySet.geohash` X
:meth:`GeoQuerySet.geojson` X
:meth:`GeoQuerySet.geojson` X
X
:meth:`GeoQuerySet.gml` X X X
:meth:`GeoQuerySet.intersection` X X X
:meth:`GeoQuerySet.kml` X X
...
...
docs/ref/contrib/gis/geoquerysets.txt
Dosyayı görüntüle @
95f7ea3a
...
...
@@ -947,7 +947,7 @@ __ http://geohash.org/
.. method:: GeoQuerySet.geojson(**kwargs)
*Availability*: PostGIS
*Availability*: PostGIS
, SpatiaLite
Attaches a ``geojson`` attribute to every model in the queryset that contains the
`GeoJSON`__ representation of the geometry.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment