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
a37dcfd0
Kaydet (Commit)
a37dcfd0
authored
Nis 24, 2015
tarafından
Claude Paroz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Delayed GDAL check for OSMGeoAdmin
üst
b6951538
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
25 deletions
+20
-25
__init__.py
django/contrib/gis/admin/__init__.py
+1
-14
options.py
django/contrib/gis/admin/options.py
+16
-10
models.py
tests/gis_tests/geoadmin/models.py
+3
-1
No files found.
django/contrib/gis/admin/__init__.py
Dosyayı görüntüle @
a37dcfd0
...
@@ -4,18 +4,5 @@ from django.contrib.admin import ( # NOQA: flake8 detects only the last __all__
...
@@ -4,18 +4,5 @@ from django.contrib.admin import ( # NOQA: flake8 detects only the last __all__
HORIZONTAL
,
VERTICAL
,
HORIZONTAL
,
VERTICAL
,
)
)
# Geographic admin options classes and widgets.
# Geographic admin options classes and widgets.
from
django.contrib.gis.admin.options
import
GeoModelAdmin
# NOQA
from
django.contrib.gis.admin.options
import
GeoModelAdmin
,
OSMGeoAdmin
# NOQA
from
django.contrib.gis.admin.widgets
import
OpenLayersWidget
# NOQA
from
django.contrib.gis.admin.widgets
import
OpenLayersWidget
# NOQA
__all__
=
[
"autodiscover"
,
"site"
,
"AdminSite"
,
"ModelAdmin"
,
"StackedInline"
,
"TabularInline"
,
"HORIZONTAL"
,
"VERTICAL"
,
"GeoModelAdmin"
,
"OpenLayersWidget"
,
"HAS_OSM"
,
]
try
:
from
django.contrib.gis.admin.options
import
OSMGeoAdmin
HAS_OSM
=
True
__all__
+=
[
'OSMGeoAdmin'
]
except
ImportError
:
HAS_OSM
=
False
django/contrib/gis/admin/options.py
Dosyayı görüntüle @
a37dcfd0
...
@@ -2,6 +2,9 @@ from django.contrib.admin import ModelAdmin
...
@@ -2,6 +2,9 @@ from django.contrib.admin import ModelAdmin
from
django.contrib.gis.admin.widgets
import
OpenLayersWidget
from
django.contrib.gis.admin.widgets
import
OpenLayersWidget
from
django.contrib.gis.db
import
models
from
django.contrib.gis.db
import
models
from
django.contrib.gis.gdal
import
HAS_GDAL
,
OGRGeomType
from
django.contrib.gis.gdal
import
HAS_GDAL
,
OGRGeomType
from
django.core.exceptions
import
ImproperlyConfigured
spherical_mercator_srid
=
3857
class
GeoModelAdmin
(
ModelAdmin
):
class
GeoModelAdmin
(
ModelAdmin
):
...
@@ -123,14 +126,17 @@ class GeoModelAdmin(ModelAdmin):
...
@@ -123,14 +126,17 @@ class GeoModelAdmin(ModelAdmin):
}
}
return
OLMap
return
OLMap
if
HAS_GDAL
:
spherical_mercator_srid
=
3857
class
OSMGeoAdmin
(
GeoModelAdmin
):
class
OSMGeoAdmin
(
GeoModelAdmin
):
map_template
=
'gis/admin/osm.html'
map_template
=
'gis/admin/osm.html'
num_zoom
=
20
num_zoom
=
20
map_srid
=
spherical_mercator_srid
map_srid
=
spherical_mercator_srid
max_extent
=
'-20037508,-20037508,20037508,20037508'
max_extent
=
'-20037508,-20037508,20037508,20037508'
max_resolution
=
'156543.0339'
max_resolution
=
'156543.0339'
point_zoom
=
num_zoom
-
6
point_zoom
=
num_zoom
-
6
units
=
'm'
units
=
'm'
def
__init__
(
self
,
*
args
):
if
not
HAS_GDAL
:
raise
ImproperlyConfigured
(
"OSMGeoAdmin is not usable without GDAL libs installed"
)
super
(
OSMGeoAdmin
,
self
)
.
__init__
(
*
args
)
tests/gis_tests/geoadmin/models.py
Dosyayı görüntüle @
a37dcfd0
from
django.contrib.gis.gdal
import
HAS_GDAL
from
django.utils.encoding
import
python_2_unicode_compatible
from
django.utils.encoding
import
python_2_unicode_compatible
from
..admin
import
admin
from
..admin
import
admin
...
@@ -19,4 +20,5 @@ class City(models.Model):
...
@@ -19,4 +20,5 @@ class City(models.Model):
return
self
.
name
return
self
.
name
site
=
admin
.
AdminSite
(
name
=
'admin_gis'
)
site
=
admin
.
AdminSite
(
name
=
'admin_gis'
)
site
.
register
(
City
,
admin
.
OSMGeoAdmin
)
if
HAS_GDAL
:
site
.
register
(
City
,
admin
.
OSMGeoAdmin
)
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