Changes between Version 13 and Version 14 of FAQVector


Ignore:
Timestamp:
Aug 1, 2013, 8:10:02 AM (11 years ago)
Author:
ulysseous
Comment:

Added note about not having .shp at the end of file name so others can avoid my mistake.

Legend:

Unmodified
Added
Removed
Modified
  • FAQVector

    v13 v14  
    6161find . -name 'myshape*' -exec mv '{}' merged \;
    6262 
    63 #Batch merge all the remaining shapefiles from the tmp dir into the copied file in the merge dir (exchange 'myshape' for the name of the copied shapefile)
     63#Batch merge all the remaining shapefiles from the tmp dir into the copied file in the merge dir (exchange 'myshape' for the name of the copied shapefile without the ".shp" at the end)
    6464for i in $(ls *.shp); do ogr2ogr -f 'ESRI Shapefile' -update -append merged $i -nln myshape
    6565done