No timeline yet.
Have you tried LAZ as your intermediate raster format? It's an incredible compact way to store a DTM. From LAZ you can go to any other image format by lasgridding with the right '-step 0.5' size. And it still loads into any LiDAR processing software that has LAZ support. Here an example:
Creating the same raster in LAZ, TIF, IMG, BIL, ASC, and XYZ format:
C:\LAStools\bin>las2dem -i ..\data\zurich.laz -step 0.2 -spike_free 0.6 -o zurich_dsm20cm.laz
WARNING: there were 1 duplicate rasters
C:\LAStools\bin>las2dem -i ..\data\zurich.laz -step 0.2 -spike_free 0.6 -o zurich_dsm20cm.tif
WARNING: there were 1 duplicate rasters
C:\LAStools\bin>las2dem -i ..\data\zurich.laz -step 0.2 -spike_free 0.6 -o zurich_dsm20cm.img
WARNING: there were 1 duplicate rasters
C:\LAStools\bin>las2dem -i ..\data\zurich.laz -step 0.2 -spike_free 0.6 -o zurich_dsm20cm.bil
WARNING: there were 1 duplicate rasters
C:\LAStools\bin>las2dem -i ..\data\zurich.laz -step 0.2 -spike_free 0.6 -o zurich_dsm20cm.asc
WARNING: there were 1 duplicate rasters
C:\LAStools\bin>las2dem -i ..\data\zurich.laz -step 0.2 -spike_free 0.6 -o
zurich_dsm20cm.xyzWARNING: there were 1 duplicate rasters
Comparing the resulting file sizes. LAZ is just 36% of TIF and just 18% of IMG. So why not use LAZ as a standard raster format for elevations / heights / ranges / ... ?
C:\LAStools\bin>dir zurich_dsm20cm*
1,750,616 zurich_dsm20cm.asc
1,000,000 zurich_dsm20cm.bil
77 zurich_dsm20cm.blw
225 zurich_dsm20cm.hdr
1,035,139 zurich_dsm20cm.img
189,705 zurich_dsm20cm.laz
77 zurich_dsm20cm.tfw
524,182 zurich_dsm20cm.tif
Regards from Istanbul (Airport),
Martin @rapidlasso