6 lines
329 B
Bash
6 lines
329 B
Bash
#!/bin/bash
|
|
echo "récupérer les bornes de recharge en Essonne"
|
|
overpass_website="https://overpass-api.de/api/interpreter"
|
|
curl --header "Content-Type: plain/text" --data @content_irve.txt --trace-ascii website-data.log "$overpass_website" > data_other/irve_osm_2023-08-30.geojson
|
|
du -sch data_other/irve_osm_2023-08-30.geojson
|