Add wiki and add osm query

This commit is contained in:
Jieyab89
2024-10-11 01:10:09 +07:00
parent c21f5ab76a
commit 4e8fff7ec4
4 changed files with 92 additions and 2 deletions

View File

@@ -960,7 +960,6 @@ Example
- [Maltego social links](https://www.maltego.com/transform-hub/social-links-ce/)
- [indokontraktor ID](https://indokontraktor.com/)
- [opentender ID](https://opentender.net/)
- [lpse lkpp ID](https://lpse.lkpp.go.id/eproc4)
- [ahu ID](https://ahu.go.id/pencarian/profil-pt)
- [Minerba ESDM ID](https://momi.minerba.esdm.go.id/gisportal/home/)
- [MODI ID](https://modi.esdm.go.id/portal/dataPerusahaan)

View File

@@ -1,4 +1,50 @@
# Notes
You understand IMINT, to map the search, next you know the place to search, for example Jakarta, Indonesia this will help narrow down the search in searching through OSM
Things to you should take a look:
1. Place object
2. Object of the building
3. Road object
4. Building object
5. Pole objects, lights, signs
6. Billboard or advertising board object
7. Are there other inventions such as license plates? Place names? Building characteristics
8. Measurement on the object
# Pro Tips
1. You can navigate in the search on osm or turbo overpass
2. You can learn through wikimapia to understand the object and the place of the object https://wikimapia.org/#lang=en&lat=-6.225886&lon=106.829681&z=10&m=w
3. You need to understand IMINT, extract information from what you can
4. Verify the data like coordinate and see on the Google maps or other things
Example
1. Search data from OSM overpass
![image](https://github.com/user-attachments/assets/1f2d32af-255b-4582-baf1-64958839dae2)
2. Detail data
![image](https://github.com/user-attachments/assets/79b762a1-ed15-4209-b87a-ef5a593c3559)
3. Verify on Google Maps
![image](https://github.com/user-attachments/assets/83c390ab-828b-4bc4-a64f-d7c1232e2f4d)
4. Dont forget check street view
# Overpass Tutorial Script or Query
- [osm-queries](https://osm-queries.ldodds.com/tutorial/index.html)
- [osm-tag-info](https://taginfo.openstreetmap.org/keys)
- [osm-tag-info](https://taginfo.openstreetmap.org/keys)
# Guide
>
> Or you can use chatgpt for make this query if you still confused about osm query on documentation
>
- [How to user overpass](https://publish.obsidian.md/dukera-gewel/How+to+Use+Overpass+Turbo)

View File

@@ -0,0 +1,12 @@
```
/*
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["bridge"="yes"]({{bbox}});
// print results
out geom;
```

View File

@@ -0,0 +1,33 @@
![image](https://github.com/user-attachments/assets/5e5f1eba-09d9-4f11-b41e-88319c0a09bf)
````
/*
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;
```