16 lines
504 B
Plaintext
16 lines
504 B
Plaintext
/*
|
|
https://overpass-turbo.eu/
|
|
This has been generated by the overpass-turbo wizard.
|
|
The original search was:
|
|
“"Train Station" in italy”
|
|
*/
|
|
[out:json][timeout:25];
|
|
// fetch area “italy” to search in
|
|
{{geocodeArea:italy}}->.searchArea;
|
|
// gather results
|
|
// exclude subways because they are apparently train stations.
|
|
// TODO: are there other kind of "Train" stations we want to exclude?
|
|
nwr["public_transport"="station"]["train"="yes"]["subway"!="yes"](area.searchArea);
|
|
// print results
|
|
out geom;
|