質問

i'm trying to download the data from OSM, this guide says that i can do this with following command:

wget -O muenchen.osm "http://api.openstreetmap.org/api/0.6/map?bbox=11.54,48.14,11.543,48.145"

This command works fine, but when i'm trying to download my map:

wget -O muenchen.osm "http://api.openstreetmap.org/api/0.6/map?bbox=34.3893,49.5277,34.7195,49.6727"

it says:

Resolving api.openstreetmap.org... 193.63.75.100, 193.63.75.99, 193.63.75.103, ...
Connecting to api.openstreetmap.org|193.63.75.100|:80... connected.
HTTP request sent, awaiting response... 400 Bad Request
2013-12-19 11:47:41 ERROR 400: Bad Request.

Any ideas what am i doing wrong? Thanks

役に立ちましたか?

解決

You get a 400 error "When any of the node/way/relation limits are crossed" (source). Try to make your bounding box smaller.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top