<div dir="ltr">As recommended by Paul Ramsey, tiled schema is a better option, so I add it to gdal_translate command.<br><br>Thanks!<br><br><br>a. Reading ECW and compressing to JPG (set your favourite quality, 80 is
 a good choice for orthoimages; also CACHEMAX could be increased):<br><br>gdal_translate
 --config GDAL_CACHEMAX 1000 --config GDAL_PAM_ENABLED NO -of GTIFF -co 
COMPRESS=JPEG -co TILED=YES -co JPEG_QUALITY=80 -co PHOTOMETRIC=YCBCR 
"source_image.ecw" "target_image.tif"<br><br>b. Adding internal pyramids/overviews with JPG compression (select your resampling method, I prefer average):<br><br>gdaladdo
 --config COMPRESS_OVERVIEW JPEG --config PHOTOMETRIC_OVERVIEW YCBCR 
--config INTERLEAVE_OVERVIEW PIXEL -r average "image.tif" 2 4 8 16 32 64
 128<br><br><div class="gmail_extra"><br><div class="gmail_quote">2015-08-04 17:23 GMT+02:00 Steve Golden <span dir="ltr"><<a href="mailto:stevenlgolden@gmail.com" target="_blank">stevenlgolden@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">If you have access to Windows XP and can install GDAL, gdal_translate is the<br>
way to go to convert ECW to something else and GeoTIFF should be on your<br>
list for that something else.  There are a lot of webpages out there with<br>
sample gdal_translate commands, but I recommend reading about  GeoTIFF<br>
compression<br>
<<a href="http://blog.cleverelephant.ca/2015/02/geotiff-compression-for-dummies.html" rel="noreferrer" target="_blank">http://blog.cleverelephant.ca/2015/02/geotiff-compression-for-dummies.html</a>><br>
from a very good source.<br>
<br>
-Steve<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://osgeo-org.1560.x6.nabble.com/How-to-convert-ECW-using-open-source-packages-into-something-else-tp5218390p5218484.html" rel="noreferrer" target="_blank">http://osgeo-org.1560.x6.nabble.com/How-to-convert-ECW-using-open-source-packages-into-something-else-tp5218390p5218484.html</a><br>
Sent from the Quantum GIS - User mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Qgis-user mailing list<br>
<a href="mailto:Qgis-user@lists.osgeo.org" target="_blank">Qgis-user@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
</blockquote></div><br></div></div>