I have an installed library called Gdal which runs certain GIS commands.
This command runs for a single file
gdal_translate -a_srs EPSG:25832 INPUT_FILE OUTPUT_FILE
but I would like to run a batch command which iterates through all *.tif files so I don´t have to write the name of each one (i´ve got 1300 files!)
I tried this in a .sh file...but it didn´t work
#!/bin/bash
for FILE in *.tif
do
BASE=$FILE .tif
NEWFILE=test/${BASE}.tif
gdal_translate -s_srs EPSG:25832 $FILE $NEWFILE
done
could anyone show me how to do this?
yours,
Robert
BASE=$FILE .tifin line 5? – Tichodroma Jan 30 at 11:25