OSM script:
* added note regarding password setting
This commit is contained in:
parent
41f4f00601
commit
a99914e7c2
1 changed files with 4 additions and 2 deletions
|
@ -10,13 +10,15 @@
|
||||||
# The input file should contain the way ids in the first column and the height
|
# 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.
|
# in the second column separated by a space or tab.
|
||||||
#
|
#
|
||||||
|
# Update your username and password below!
|
||||||
|
#
|
||||||
|
|
||||||
import OsmApi
|
import OsmApi
|
||||||
import sys
|
import sys
|
||||||
import types
|
import types
|
||||||
|
|
||||||
username = u"lars@systemausfall.org"
|
username = u"YOUR_USER_NAME"
|
||||||
password = u"testtest"
|
password = u"YOUR_PASSWORD"
|
||||||
|
|
||||||
value_key = u"building:height"
|
value_key = u"building:height"
|
||||||
forbidden_tags = [value_key, u"height"]
|
forbidden_tags = [value_key, u"height"]
|
||||||
|
|
Loading…
Reference in a new issue