Cloud Optimized GeoTiffs

Configuration
Required?
Configuration option
Recommended values
Converting raster files to Cloud Optimized GeoTIFFs
Last updated
Was this helpful?

While Felt can read many raster formats, storing your data as a Cloud Optimized Geotiff (COGs) allows efficient access of subsets of data for fast viewing.
This feature is only available to customers on the Enterprise plan. To upgrade, contact sales.
Mandatory
Overview resampling
bilinear for floating point data
nearest for integer or categorical data
Mandatory
Block size
256x256 or 512x512
Recommended
Compression scheme
YCbCr with JPG compression for 8-bit RGB data
DEFLATE, LZW, or ZSTD for floating point data
Recommended*
Summary statistics
Min, max, mean and standard deviation. Stored in the header, per the GeoTIFF specification
If you upload a Cloud Optimized GeoTIFF that meets the mandatory requirements but doesn’t have summary statistics, Felt will sample the entire file to compute the values, which will add additional processing time.
Use the gdal_translate command with the COG output format and the -stats flag. This will create a COG with summary stats and overviews that will be most efficiently streamed into Felt.
Last updated
Was this helpful?
Was this helpful?
$ gdal_translate -stats -of COG -resampling bilinear -co COMPRESS=LWZ {input}.tif {output}.tif$ gdal_translate -stats -of COG -resampling nearest -co COMPRESS=JPEG {input}.tif {output}.tif