Skip to content

Commit

Permalink
fix: xlocation accepted in the conflation if present
Browse files Browse the repository at this point in the history
  • Loading branch information
nrjadkry committed Oct 2, 2023
1 parent f626c6b commit 9aba8a2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions osm_fieldwork/json2osm.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,9 @@ def parse(self,
lon = v[0]
tags['geometry'] = f"{lat} {lon}"
continue
if key == "xlocation":
tags["geometry"] = v
continue
tags[key] = v
total.append(tags)
return total
Expand Down

0 comments on commit 9aba8a2

Please sign in to comment.