Skip to content

Commit

Permalink
#36 pass significant_digits to OsmData
Browse files Browse the repository at this point in the history
  • Loading branch information
roelderickx committed Sep 10, 2023
1 parent a4b4c7f commit 6adeea3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ogr2osm/ogr2osm.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ def main():

logger.info("Preparing to convert '%s' to '%s'.", params.source, params.outputFile)

osmdata = OsmData(translation_object, \
params.roundingDigits, params.maxNodesPerWay, params.addBounds, \
params.id, params.positiveId, params.zValueTagName)
osmdata = OsmData(translation_object, params.roundingDigits, params.significantDigits, \
params.maxNodesPerWay, params.addBounds, params.id, params.positiveId, \
params.zValueTagName)

osmdata.load_start_id_from_file(params.idfile)

Expand Down

0 comments on commit 6adeea3

Please sign in to comment.