summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py14
1 files changed, 6 insertions, 8 deletions
diff --git a/settings.py b/settings.py
index 88dbd7d..9fd47ba 100644
--- a/settings.py
+++ b/settings.py
@@ -1,9 +1,13 @@
# Django settings for chimere project.
-# GDAL path for GeoDjango
-
ROOT_PATH = '/var/local/django/chimere/'
+# chimere specific
+MAP_BOUNDS = (-20037508.34, -20037508.34, 20037508.34, 20037508.34)
+DEFAULT_CENTER = (-1.679444, 48.114722)
+EPSG_PROJECTION = 900913
+EPSG_DISPLAY_PROJECTION = 4326
+
DEBUG = True
TEMPLATE_DEBUG = DEBUG
@@ -85,9 +89,3 @@ INSTALLED_APPS = (
'django.contrib.sites',
'chimere.main',
)
-
-# Wikimap specific
-MAP_BOUNDS = (-20037508.34, -20037508.34, 20037508.34, 20037508.34)
-DEFAULT_CENTER = (-1.679444, 48.114722)
-EPSG_PROJECTION = 900913
-EPSG_DISPLAY_PROJECTION = 4326