From c9a19f4da2973c910cdaf9e2c03f384b2b50730c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kom=D1=8Fpa?= Date: Sat, 1 May 2010 16:23:50 +0300 Subject: [PATCH] Updated converter. - fixed: leftover ways --- src/python-osm-converter/osm2tiles.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/python-osm-converter/osm2tiles.py b/src/python-osm-converter/osm2tiles.py index 7e14ff2..aef4c90 100755 --- a/src/python-osm-converter/osm2tiles.py +++ b/src/python-osm-converter/osm2tiles.py @@ -104,14 +104,12 @@ def main (): elif elem.tag == "tag": tags[items["k"]] = items["v"] elif elem.tag == "way": - tags = way_interesting(tags) - if tags: mzoom = 1 way_simplified = {} for zoom in xrange(MAXZOOM,-1,-1): ######## generalize a bit - + # TODO: Douglas-Peucker prev_point = curway[0] way = [prev_point] for point in curway: @@ -144,7 +142,7 @@ def main (): if waytype is not 0: for tile in tilelist_by_geometry(curway, mzoom+1): z, x, y = tile - path = "tiles/z%s/%s/x%s/%s/"%(z, x/1024, x, y/1024) + path = "../tiles/z%s/%s/x%s/%s/"%(z, x/1024, x, y/1024) if tile not in tilefiles: if not os.path.exists(path): @@ -162,7 +160,7 @@ def main (): #user = default_user #ts = "" print DROPPED_POINTS - + print len(nodes) main()