Is there a way to restrict the boundary of OpenStreetMapX.jl to irregular polygonal regions? For example, I would like to find all the public water fountains in the 11eme arrondissement of Paris. Can this be done?
Many thanks.
Is there a way to restrict the boundary of OpenStreetMapX.jl to irregular polygonal regions? For example, I would like to find all the public water fountains in the 11eme arrondissement of Paris. Can this be done?
Many thanks.
for me - the simplest solution for small osm data:
amenity=fountain in "11e arrondissement de Paris"
As I see the Overpass-API is not yet supported:
for an extra large extract - I am using osmium tool with multiple steps.
osmium extract --polygon POLYGON-FILE [OPTIONS] OSM-FILE
osmium tags-filter [OPTIONS ] OSM-FILE FILTER-EXPRESSION …
amenity=fountain
OSM tagging:
for a “public” water fountain …
Alternative - with Julia <-> Python packages
Brill. That gives me a lot to work with. TVM.