summaryrefslogtreecommitdiffstats
path: root/core/models
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-05-07 20:44:58 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-05-07 20:44:58 +0100
commitc6bcb5fde9e2ea6f8539fcd0e64e828cc24e5888 (patch)
treed8a7a29b9172040dc21ed7c9f34beb8c1950a13c /core/models
parent4cd7367a7e12ffec4004dc4003678504e3603555 (diff)
downloadtroggle-c6bcb5fde9e2ea6f8539fcd0e64e828cc24e5888.tar.gz
troggle-c6bcb5fde9e2ea6f8539fcd0e64e828cc24e5888.tar.bz2
troggle-c6bcb5fde9e2ea6f8539fcd0e64e828cc24e5888.zip
wgs84 lat long for entrances
Diffstat (limited to 'core/models')
-rw-r--r--core/models/caves.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/models/caves.py b/core/models/caves.py
index b277041..fb62a26 100644
--- a/core/models/caves.py
+++ b/core/models/caves.py
@@ -263,6 +263,8 @@ class Entrance(TroggleModel):
alt = models.TextField(blank=True, null=True)
northing = models.TextField(blank=True, null=True)
easting = models.TextField(blank=True, null=True)
+ lat_wgs84 = models.TextField(blank=True, null=True)
+ long_wgs84 = models.TextField(blank=True, null=True)
tag_station = models.TextField(blank=True, null=True)
exact_station = models.TextField(blank=True, null=True)
other_station = models.TextField(blank=True, null=True)