mirror of
https://github.com/Jieyab89/OSINT-Cheat-sheet.git
synced 2026-02-28 06:13:00 -08:00
34 lines
764 B
Markdown
34 lines
764 B
Markdown

|
|
|
|
````
|
|
/*
|
|
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;
|
|
```
|
|
|