laradb

script pour établir une bdd Ãà partir d'un tsv avec différent format - retour accueil

git clone git://bebou.netlib.re/laradb
Log | Files | Refs |

ville2gps.sh (392B)


      1 #!/bin/bash
      2 
      3 #set -- "La Garenne Colombes"
      4 
      5 # Par example :
      6 #./ville2gps.sh "La Garenne Colombes"
      7 
      8 #46.5802596
      9 #0.340196
     10 
     11 VILLE=$(echo "$1" | jq -sRr @uri)
     12 REPONSE=$(curl -s "https://nominatim.openstreetmap.org/search?city=${VILLE}&format=json&limit=1")
     13 
     14 LATITUDE=$(echo $REPONSE | jq -r '.[0].lat')
     15 LONGITUDE=$(echo $REPONSE | jq -r '.[0].lon')
     16 
     17 echo "lat:\"$LATITUDE\", lon:\"$LONGITUDE\""