diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-09-16 21:12:49 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-09-16 21:12:49 +0300 |
commit | a85f859f886ac2a22a94a604f2ce46395c148476 (patch) | |
tree | cc0fe30a8bcd158f5e96a4d34d1084b1b626d0ab /core/views/statistics.py | |
parent | 81b5198cd127f47e888ae6ef3760a18793f9819e (diff) | |
download | troggle-a85f859f886ac2a22a94a604f2ce46395c148476.tar.gz troggle-a85f859f886ac2a22a94a604f2ce46395c148476.tar.bz2 troggle-a85f859f886ac2a22a94a604f2ce46395c148476.zip |
add WGS84 lat/long entrance locations
Diffstat (limited to 'core/views/statistics.py')
-rw-r--r-- | core/views/statistics.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/views/statistics.py b/core/views/statistics.py index ebe70dd..f056ab1 100644 --- a/core/views/statistics.py +++ b/core/views/statistics.py @@ -281,6 +281,8 @@ def eastings(request): for e in entrances: if e.easting or e.northing: ents.append(e) + if e.lat_wgs84 or e.long_wgs84: + ents.append(e) stations = SurvexStation.objects.all() |