diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-05-07 20:44:58 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-05-07 20:44:58 +0100 |
commit | c6bcb5fde9e2ea6f8539fcd0e64e828cc24e5888 (patch) | |
tree | d8a7a29b9172040dc21ed7c9f34beb8c1950a13c /core/models/caves.py | |
parent | 4cd7367a7e12ffec4004dc4003678504e3603555 (diff) | |
download | troggle-c6bcb5fde9e2ea6f8539fcd0e64e828cc24e5888.tar.gz troggle-c6bcb5fde9e2ea6f8539fcd0e64e828cc24e5888.tar.bz2 troggle-c6bcb5fde9e2ea6f8539fcd0e64e828cc24e5888.zip |
wgs84 lat long for entrances
Diffstat (limited to 'core/models/caves.py')
-rw-r--r-- | core/models/caves.py | 2 |
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) |