Load all layer information from OpenStreetMap -
i'm trying load points of sertain layer openstreetmap. can't find such command in overpass api. possible? can achieve nodes bounding box:
<osm-script output="json"> <query type="way"> <bbox-query {{bbox}}/> </query> <recurse type="way-node" into="waynodes"/> <query type="node" into="nodes"> <bbox-query {{bbox}}/> </query> <!-- added auto repair --> <union> <item/> <recurse type="down"/> </union> <!-- end of auto repair --> <print/> </osm-script>
openstreetmap doesn't have "layer" concept in contrast other gis data.
for loading existing information have query every element type, i.e. nodes, ways , relations. that's all. overpass turbo (a nice web frontend overpass api) default when using wizard.
Comments
Post a Comment