mirror of
https://github.com/Jieyab89/OSINT-Cheat-sheet.git
synced 2025-12-05 20:40:30 -08:00
764 B
764 B
/*
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;