Batch convert a directory of tiffs to ecw

Posted by & filed under QGIS.

Today I wanted to batch convert a directory of .tiff images to .ecw (MrSid wavelet compressed). Our server has 8 cores so it would be nice to use them all right? Here is the quick & dirty way I do this kind of job in parallel. #!/bin/bash mkdir ecw for FILE in *.tif do BASENAME=$(basename… Read more »