2024-10-20 14:39:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-10-27 09:37:52 +01:00
|
|
|
# export depuis OSM des ponts qui ont un nom
|
2024-10-20 14:39:37 +02:00
|
|
|
# pour le monde entier
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-11-05 09:58:42 +01:00
|
|
|
url='https://overpass-api.de/api/interpreter?data=[out:json][timeout:300];area(id:3602202162)->.searchArea;nwr["bridge"]["name"](area.searchArea);out+meta;'
|
2024-10-20 14:39:37 +02:00
|
|
|
|
|
|
|
export_file="ponts_points_from_openstreetmap"
|
2025-01-05 17:11:16 +01:00
|
|
|
source $www_folder/mapping-osm-geojson/update_scripts/functions.sh
|
2024-10-27 10:03:49 +01:00
|
|
|
extract_from_osm $url $export_file
|