summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 7015c70a5..f87c1b8de 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -2977,7 +2977,9 @@ post_delete.connect(post_save_cache, sender=OperationType)
class SpatialReferenceSystem(GeneralType):
order = models.IntegerField(_(u"Order"), default=10)
- srid = models.IntegerField(_(u"SRID"))
+ auth_name = models.CharField(
+ _(u"Authority name"), default='EPSG', max_length=256)
+ srid = models.IntegerField(_(u"Authority SRID"))
class Meta:
verbose_name = _(u"Spatial reference system")