2024-10-18 16:04:49 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-10-27 09:37:52 +01:00
|
|
|
# export depuis OSM des parking à vélo cargo
|
2024-10-18 16:04:49 +02:00
|
|
|
# cargo_bike=*
|
|
|
|
# en France
|
|
|
|
|
|
|
|
url='https://overpass-api.de/api/interpreter?data=[out:json][timeout:300];area(id:3602202162)->.searchArea;nwr["cargo_bike"](area.searchArea);out+geom;'
|
|
|
|
|
|
|
|
export_file="cargo_bike_zone_france_from_openstreetmap"
|
2024-10-27 09:37:52 +01:00
|
|
|
source ../../update_scripts/functions.sh
|
|
|
|
extract_from_osm $url $export_file
|