[QGIS-it-user] processing merge

Totò pigrecoinfinito a gmail.com
Sab 23 Feb 2019 12:38:44 PST


leonardo donnini wrote
> QGIS 3.4  Windows 10
> 
> Se non sbaglio qualcosa è un bug potete confermare ?

Non confermo,
ho provato a fondere 20 shp usando il processing, tutto funziona bene.

Una alternativa è l'uso della riga di comando, se hai installato Bash Ubuntu
su win 10, avvia bash all'interno della cartella e lancia questo scriptino

#!/bin/bash
consolidated_file="./consolidated.shp"
for i in $(find . -name '*.shp'); do
    if [ ! -f "$consolidated_file" ]; then
        # first file - create the consolidated output file
        ogr2ogr -f "ESRI Shapefile" $consolidated_file $i
    else
        # update the output file with new file content
        ogr2ogr -f "ESRI Shapefile" -update -append $consolidated_file $i
    fi
done

salute




-----
https://pigrecoinfinito.wordpress.com/
--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Italian-User-f5250612.html


Maggiori informazioni sulla lista QGIS-it-user