Last active
June 13, 2017 07:34
-
-
Save pigreco/9ef7a2391715b17d98b7b20936251dab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# attivo il debug così vedo cosa avviene nella shell | |
set -x | |
# per ogni file shp contenuto nella cartella dello script, esegue | |
# l'import nel file spatialite denominato out.sqlite | |
for i in *.shp; | |
do ogr2ogr -append -f SQLite -dsco SPATIALITE=YES out.sqlite ./"$i"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
questo script aggiunge, in un database spatialite (esistente o no) , tutti gli *.shp presenti nella cartella dello script.
è possibile avviare lo script dal terminale MSYS installato di default quando si installa QGIS!!!