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

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -