diff options
Diffstat (limited to 'parsers/caves.py')
-rw-r--r-- | parsers/caves.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/parsers/caves.py b/parsers/caves.py index 91985d1..c3d2567 100644 --- a/parsers/caves.py +++ b/parsers/caves.py @@ -498,7 +498,6 @@ def read_entrance(filename, ent=None): bearings = getXMLmax1("bearings") easting = getXMLmax1("easting") entrance_description = getXMLmax1("entrance_description") - exact_station = getXMLmax1("exact_station") explorers = getXMLmax1("explorers") findability = getXMLmax1("findability") findability_description = getXMLmax1("findability_description") @@ -524,11 +523,9 @@ def read_entrance(filename, ent=None): ent.alt=alt[0] 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] ent.filename=filename ent.findability=findability[0] @@ -538,7 +535,6 @@ def read_entrance(filename, ent=None): ent.map_description=map_description[0] ent.marking=marking[0] ent.marking_comment=marking_comment[0] - ent.northing=northing[0] ent.other_description=other_description[0] ent.other_station=other_station[0] ent.photo=photo[0] @@ -547,7 +543,7 @@ def read_entrance(filename, ent=None): ent.underground_description=underground_description[0] ent.url=url[0] - for st in [ent.exact_station, ent.other_station, ent.tag_station]: + for st in [ent.other_station, ent.tag_station]: #validate_station(st) try: validate_station(st) |