diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-11-18 14:17:50 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-11-18 14:17:50 +0000 |
commit | 7c7c0812e8605919943433b32be8d11defe9745f (patch) | |
tree | 5e17a7c401398ce8c25e47e789446e1579e494a5 /parsers/caves.py | |
parent | 7a61bc47eae0568eb32b5529e4ca9c59da5150e6 (diff) | |
download | troggle-7c7c0812e8605919943433b32be8d11defe9745f.tar.gz troggle-7c7c0812e8605919943433b32be8d11defe9745f.tar.bz2 troggle-7c7c0812e8605919943433b32be8d11defe9745f.zip |
removing unused fields
Diffstat (limited to 'parsers/caves.py')
-rw-r--r-- | parsers/caves.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/parsers/caves.py b/parsers/caves.py index 98a5463..4203368 100644 --- a/parsers/caves.py +++ b/parsers/caves.py @@ -506,7 +506,7 @@ def read_entrance(filename, ent=None): findability = getXMLmax1("findability") findability_description = getXMLmax1("findability_description") location_description = getXMLmax1("location_description") - map_description = getXMLmax1("map_description") + #map_description = getXMLmax1("map_description") marking = getXMLmax1("marking") marking_comment = getXMLmax1("marking_comment") name = getXMLmax1("name") @@ -534,7 +534,7 @@ def read_entrance(filename, ent=None): ent.findability_description=findability_description[0] ent.lastvisit=lastvisit[0] ent.location_description=location_description[0] - ent.map_description=map_description[0] + #ent.map_description=map_description[0] ent.marking=marking[0] ent.marking_comment=marking_comment[0] ent.other_description=other_description[0] @@ -741,7 +741,7 @@ def read_cave(filename, cave=None): references = getXMLmax1("references") survey = getXMLmax1("survey") kataster_status = getXMLmax1("kataster_status") - underground_centre_line = getXMLmax1("underground_centre_line") + #underground_centre_line = getXMLmax1("underground_centre_line") notes = getXMLmax1("notes") length = getXMLmax1("length") depth = getXMLmax1("depth") @@ -798,7 +798,7 @@ def read_cave(filename, cave=None): cave.references=references[0] cave.survey=survey[0] cave.kataster_status=kataster_status[0] - cave.underground_centre_line=underground_centre_line[0] + #cave.underground_centre_line=underground_centre_line[0] cave.notes=notes[0] cave.length=length[0] cave.depth=depth[0] |