Gdal Translate

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

gdal_translate -of GTiff -co "COMPRESS=JPEG" -co "JPEG_QUALITY=60" -co

"TILED=YES" -co "NBITS=12" -scale 0 3635 0 255 <source> <target>


atau kalau mau direscale ke 12 bit
gdal_translate -of GTiff -co "COMPRESS=JPEG" -co "JPEG_QUALITY=60" -co
"TILED=YES" -co "NBITS=12" -scale 0 3635 0 4095 <source> <target>
atau kalau mau di-rescale tiap band:
gdal_translate -of GTiff -co "COMPRESS=JPEG" -co "JPEG_QUALITY=60" -co
"TILED=YES" -co "NBITS=12" -scale_1 0 3635 0 4095 -scale_2 0 3554 0 4095 -scale_1 0 3554
0 4095 <source> <target>

You might also like