Skip to content

Instantly share code, notes, and snippets.

@ratopi
Last active May 3, 2024 13:22
Show Gist options
  • Save ratopi/18a6a468f7ff5f55f0a2e6714b02bb21 to your computer and use it in GitHub Desktop.
Save ratopi/18a6a468f7ff5f55f0a2e6714b02bb21 to your computer and use it in GitHub Desktop.
Overpass API
https://overpass-turbo.eu/
# Punkte mit "railway:ref" (= Code / RIL100) und einem Operator und Operator enthält (regex) "DB"
node
["railway:ref"]
["operator"]
["operator" ~ "DB"]
({{bbox}});
out;
Große BBox:
https://overpass-api.de/api/interpreter?data=%5Bout%3Ajson%5D%3B%0Anode%0A%20%20%5B%22railway%3Aref%22%5D%0A%20%20%5B%22operator%22%5D%0A%20%20%5B%22operator%22%20~%20%22DB%22%5D%0A%20%20%2848.75981008089207%2C6.586303710937501%2C52.25470880113083%2C12.381591796875002%29%3B%0Aout%3B
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment