#gdalbuildvrt -resolution highest -r nearest -a_srs "EPSG:2169" mappers_delight.vrt -input_file_list input-files.txt

# HILLSHADE

gdaldem hillshade /home/stereo/public_html/mappers-delight/dem/dem.vrt lu_hillshade_2019.tif -co CPL_DEBUG=ON -co COMPRESS=LZW -co PREDICTOR=2 -co BIGTIFF=YES -co TILED=YES -co GDAL_NUM_THREADS=ALL_CPUS -of GTiff -multidirectional
gdalwarp -s_srs epsg:2169 -t_srs epsg:3857 -multi -wo NUM_THREADS=ALL_CPUS -co COMPRESS=JPEG -co TILED=YES -co NUM_THREADS=ALL_CPUS -co BIGTIFF=YES lu_hillshade_2019.tif lu_hillshade_2019-compress-epsg3857.tif
gdaladdo -ro --config COMPRESS_OVERVIEW JPEG --config INTERLEAVE_OVERVIEW PIXEL --config BIGTIFF_OVERVIEW IF_SAFER --config GDAL_TIFF_OVR_BLOCKSIZE 512 -r average lu_hillshade_2019-compress-epsg3857.tif 4 16 64 256 1024 4096

# COLOR RELIEF
gdaldem color-relief /home/stereo/public_html/mappers-delight/dem/dem.vrt viridis.txt lu_color-relief_2019.tif
#gdal_translate lu_color-relief_2019.vrt lu_color-relief_2019.tif
gdalwarp -s_srs epsg:2169 -t_srs epsg:3857 -multi -wo NUM_THREADS=ALL_CPUS -co COMPRESS=JPEG -co TILED=YES -co NUM_THREADS=ALL_CPUS -co BIGTIFF=YES lu_color-relief_2019.tif lu_color-relief-compress-epsg3857.tif
gdaladdo -ro --config COMPRESS_OVERVIEW DEFLATE --config BIGTIFF_OVERVIEW IF_SAFER --config GDAL_TIFF_OVR_BLOCKSIZE 512 -r average lu_color-relief-compress-epsg3857.tif 4 16 64 256 1024 4096

