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 (414B)


      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 echo $REPONSE
     14 
     15 LATITUDE=$(echo $REPONSE | jq -r '.[0].lat')
     16 LONGITUDE=$(echo $REPONSE | jq -r '.[0].lon')
     17 
     18 echo "data-lat=\"$LATITUDE\" data-lon=\"$LONGITUDE\""