wiki:BatchConversionOfRasterFormatsOnDOS

Version 1 (modified by aperi2007, 12 years ago) ( diff )

--

I often need to convert a set of rasters from a format to another format.
To do this is very useful a really simple batch procedure using the features of dos shell scripting language.


Convert from a set of Geotiff to a set of TIF+TFW removing the GeoTiff tags

The source_folder is the folder where (include subfolders) there is the source TIF. The target_folder is the destination for raster outputs.
Also EPSG:3003 is the source SRS and also EPSG:3003 is the target SRS.

The option PROFILE=BASELINE remove the geotiff tags, the TFW=YES ask to create the TFW file.

for /R F:/folder1/source_folder %f IN (*.tif) do gdalwarp.exe -co PROFILE=BASELINE -co TFW=YES -s_srs EPSG:3003 -t_srs EPSG:3003 -r near -ot Byte -srcnodata "0" -of GTiff %f F:/folder1/target_folder/%~nf.tif


Happy converting Andrea Peri.

Note: See TracWiki for help on using the wiki.