Files
OSINT-Cheat-sheet/Script/OSM-QUERY-LIST/osm-query-search-bts-tower.md
2024-10-11 01:10:09 +07:00

764 B

image

/*
This query looks for nodes, ways and relations 
with the given key/value combination.
Choose your region and hit the Run button above!
*/
[out:json][timeout:25];
// gather results
nwr["tower:type"="communication"]({{bbox}});
// print results
out geom;

Script by Dhukera OSINT Mindset

{{geocodeArea:<change your area>}}->.searchArea;

node["man_made"="tower"]["tower:type"="communication"](area.searchArea) -> .tower;

way["power"="line"](around.tower:200) -> .tower_line;

way["building"="yes"](around.tower_line:50) -> .tower_line_building;

way["amenity"="parking"]["parking"="street_side"](around.tower_line_building:30);

out;
>;
out skel;