Skip to content

Instantly share code, notes, and snippets.

@rugk
Created November 24, 2018 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rugk/b3597e3a2bcfc96266fb0cbd8e787193 to your computer and use it in GitHub Desktop.
Save rugk/b3597e3a2bcfc96266fb0cbd8e787193 to your computer and use it in GitHub Desktop.
osm query test
[out:json][timeout:25];
(
node["shop"]["shop"!~"no|vacant"]["wheelchair"!~".*"]["name"]({{bbox}});
node["amenity"~"restaurant|cafe|ice_cream|fast_food|bar|pub|biergarten|food_court|nightclub|cinema|library|arts_centre|bank|bureau_de_change|money_transfer|post_office|internet_cafe|marketplace|police|ranger_station|courthouse|embassy|townhall|community_centre|youth_centre|car_wash|car_rental|fuel|driving_school|doctors|clinic|pharmacy|veterinary|dentist|place_of_worship"]["wheelchair"!~".*"]["name"]({{bbox}});
node["amenity"="parking"]["parking"="multi-storey"]["wheelchair"!~".*"]["name"]({{bbox}});
node["amenity"="recycling"]["recycling_type"="centre"]["wheelchair"!~".*"]["name"]({{bbox}});
node["tourism"~"zoo|aquarium|theme_park|gallery|attraction|viewpoint|museum|hotel|guest_house|hostel|motel|apartment|viewpoint"]["wheelchair"!~".*"]["name"]({{bbox}});
node["tourism"="information"]["information"="office"]["wheelchair"!~".*"]["name"]({{bbox}});
node["leisure"~"golf_course|water_park|miniature_golf|dance|bowling_alley|horse_riding|sports_centre|fitness_centre|amusement_arcade|adult_gaming_centre|tanning_salon"]["wheelchair"!~".*"]["name"]({{bbox}});
node["office"~"insurance|government|lawyer|estate_agent|political_party|travel_agent|tax_advisor|therapist"]["wheelchair"!~".*"]["name"]({{bbox}});
way["shop"]["shop"!~"no|vacant"]["wheelchair"!~".*"]["name"]({{bbox}});
way["amenity"~"restaurant|cafe|ice_cream|fast_food|bar|pub|biergarten|food_court|nightclub|cinema|library|arts_centre|bank|bureau_de_change|money_transfer|post_office|internet_cafe|marketplace|police|ranger_station|courthouse|embassy|townhall|community_centre|youth_centre|car_wash|car_rental|fuel|driving_school|doctors|clinic|pharmacy|veterinary|dentist|place_of_worship"]["wheelchair"!~".*"]["name"]({{bbox}});
way["amenity"="parking"]["parking"="multi-storey"]["wheelchair"!~".*"]["name"]({{bbox}});
way["amenity"="recycling"]["recycling_type"="centre"]["wheelchair"!~".*"]["name"]({{bbox}});
way["tourism"~"zoo|aquarium|theme_park|gallery|attraction|viewpoint|museum|hotel|guest_house|hostel|motel|apartment|viewpoint"]["wheelchair"!~".*"]["name"]({{bbox}});
way["tourism"="information"]["information"="office"]["wheelchair"!~".*"]["name"]({{bbox}});
way["leisure"~"golf_course|water_park|miniature_golf|dance|bowling_alley|horse_riding|sports_centre|fitness_centre|amusement_arcade|adult_gaming_centre|tanning_salon"]["wheelchair"!~".*"]["name"]({{bbox}});
way["office"~"insurance|government|lawyer|estate_agent|political_party|travel_agent|tax_advisor|therapist"]["wheelchair"!~".*"]["name"]({{bbox}});
relation["shop"]["shop"!~"no|vacant"]["wheelchair"!~".*"]["name"]({{bbox}});
relation["amenity"~"restaurant|cafe|ice_cream|fast_food|bar|pub|biergarten|food_court|nightclub|cinema|library|arts_centre|bank|bureau_de_change|money_transfer|post_office|internet_cafe|marketplace|police|ranger_station|courthouse|embassy|townhall|community_centre|youth_centre|car_wash|car_rental|fuel|driving_school|doctors|clinic|pharmacy|veterinary|dentist|place_of_worship"]["wheelchair"!~".*"]["name"]({{bbox}});
relation["amenity"="parking"]["parking"="multi-storey"]["wheelchair"!~".*"]["name"]({{bbox}});
relation["amenity"="recycling"]["recycling_type"="centre"]["wheelchair"!~".*"]["name"]({{bbox}});
relation["tourism"~"zoo|aquarium|theme_park|gallery|attraction|viewpoint|museum|hotel|guest_house|hostel|motel|apartment|viewpoint"]["wheelchair"!~".*"]["name"]({{bbox}});
relation["tourism"="information"]["information"="office"]["wheelchair"!~".*"]["name"]({{bbox}});
relation["leisure"~"golf_course|water_park|miniature_golf|dance|bowling_alley|horse_riding|sports_centre|fitness_centre|amusement_arcade|adult_gaming_centre|tanning_salon"]["wheelchair"!~".*"]["name"]({{bbox}});
relation["office"~"insurance|government|lawyer|estate_agent|political_party|travel_agent|tax_advisor|therapist"]["wheelchair"!~".*"]["name"]({{bbox}});
);
out body;
>;
out skel qt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment