From a99914e7c25da7bf91eead548aa7a05fb1af3a6a Mon Sep 17 00:00:00 2001 From: lars Date: Fri, 21 Aug 2009 11:11:45 +0000 Subject: [PATCH] OSM script: * added note regarding password setting --- osm/rostock_import_height_2009/add_height.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/osm/rostock_import_height_2009/add_height.py b/osm/rostock_import_height_2009/add_height.py index 5991101..acdbfdd 100755 --- a/osm/rostock_import_height_2009/add_height.py +++ b/osm/rostock_import_height_2009/add_height.py @@ -10,13 +10,15 @@ # The input file should contain the way ids in the first column and the height # in the second column separated by a space or tab. # +# Update your username and password below! +# import OsmApi import sys import types -username = u"lars@systemausfall.org" -password = u"testtest" +username = u"YOUR_USER_NAME" +password = u"YOUR_PASSWORD" value_key = u"building:height" forbidden_tags = [value_key, u"height"]