feat: extend folder bus-stop

This commit is contained in:
dancingCycle 2024-04-12 11:32:55 +02:00
parent d5d478f11c
commit 0ef4d91aff
2 changed files with 61 additions and 0 deletions

34
bus-stop/area-hb.txt Normal file
View File

@ -0,0 +1,34 @@
# overpass query
```
[out:json][timeout:60];
relation(62718);
map_to_area;
(
nwr[highway=bus_stop](area);
);
out body center qt;
```
# urlencoded GET query
* use [decoder/encoder](https://meyerweb.com/eric/tools/dencoder/)
## https://overpass-api.de/api/interpreter?data=
* encode
```
https://overpass-api.de/api/interpreter?data=[out:json][timeout:60];relation(62718);map_to_area;(nwr[highway=bus_stop](area););out body center qt;
```
* decode
```
tbc
```
## https://overpass-turbo.eu/map.html?Q=
* encode
```
https://overpass-turbo.eu/map.html?Q=[out:json][timeout:60];relation(62718);map_to_area;(nwr[highway=bus_stop](area););out body center qt;
```

27
bus-stop/area-vbn.txt Normal file
View File

@ -0,0 +1,27 @@
# overpass query
```
[out:json][timeout:60];
relation(4189513);
map_to_area;
(
nwr[highway=bus_stop](area);
);
out body center qt;
```
# urlencoded GET query
* use [decoder/encoder](https://meyerweb.com/eric/tools/dencoder/)
https://overpass-api.de/api/interpreter?data=
* encode
```
https://overpass-api.de/api/interpreter?data=[out:json][timeout:60];relation(4189513);map_to_area;(nwr[highway=bus_stop](area););out body center qt;
```
* decode
```
tbc
```