From 0d5297f08c9a629176bbeb9839e8cc9bf80ef3b2 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Wed, 27 Sep 2023 00:38:07 +0300 Subject: lat/long values now persistent on Entrances --- parsers/caves.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'parsers/caves.py') diff --git a/parsers/caves.py b/parsers/caves.py index b7d2a20..34f7143 100644 --- a/parsers/caves.py +++ b/parsers/caves.py @@ -474,6 +474,8 @@ def read_entrance(filename, ent=None): print(message) lastvisit = getXML(entrancecontents, "lastvisit", maxItems=1, minItems=0, context=f"/cave/{slug}/edit/") + lat_wgs84 = getXML(entrancecontents, "lat_wgs84", maxItems=1, minItems=0, context=f"/cave/{slug}/edit/") + long_wgs84 = getXML(entrancecontents, "long_wgs84", maxItems=1, minItems=0, context=f"/cave/{slug}/edit/") alt = getXMLmax1("alt") approach = getXMLmax1("approach") @@ -507,6 +509,8 @@ def read_entrance(filename, ent=None): ent.approach=approach[0] ent.bearings=bearings[0] ent.easting=easting[0] + ent.lat_wgs84=lat_wgs84[0] + ent.long_wgs84=long_wgs84[0] ent.entrance_description=entrance_description[0] ent.exact_station=exact_station[0] ent.explorers=explorers[0] -- cgit v1.2.3