LogoLogo
Sign upDeveloper DocsContactSocial
  • Getting Started
    • Welcome
    • What is Felt?
    • Create your first map
    • Tour the interface
    • Your workspace
    • Keyboard shortcuts
  • upload anything
    • Files
    • URLs
    • Spreadsheets
    • Raster and imagery
    • Cloud sources
      • BigQuery
      • Databricks
      • Esri Feature Service
      • Microsoft SQL Server
      • PostGIS
      • Redshift
      • Snowflake
      • Web Feature Service (WFS)
      • WMS/WMTS
    • Raster infrastructure
      • Organizing your raster data
      • Cloud Optimized GeoTiffs
      • Cloud storage
        • Amazon S3
        • Google Cloud Storage
        • Azure Blob Storage
      • STAC
    • SQL queries
    • Refreshing data
    • QGIS plugin
    • Troubleshooting
  • Layers
    • Viewing data
    • Filters
    • Styling
      • Vector layers
      • Raster layers
      • Backgrounds
    • Formatting
    • Interactions
    • List
    • Group
    • Spatial analysis
  • Elements
    • Creating data
    • Annotations
    • Styling & grouping
    • Extract
    • Converting Elements ↔ Layers
  • Dashboards & Apps
    • Components
    • Layer slider
    • Map settings
    • For developers
  • Sharing & Collaboration
    • Sharing a map
    • Commenting
    • Embedding
    • Integrations
    • Duplicating a map
    • Exporting
      • Exporting Data
      • PDF & images
  • Administration
    • Workspaces and projects
    • Managing members
    • Layer library
    • For classrooms
    • Single sign-on (SSO)
    • Regional hosting
    • Billing
    • Security and privacy
  • Terms & policy
    • Privacy policy
    • Terms of service
    • Attribution policy
Powered by GitBook
On this page
  • Configuration
  • Converting raster files to Cloud Optimized GeoTIFFs

Was this helpful?

Export as PDF
  1. upload anything
  2. Raster infrastructure

Cloud Optimized GeoTiffs

PreviousOrganizing your raster dataNextCloud storage

Last updated 2 days ago

Was this helpful?

While Felt can read many raster formats, storing your data as a (COGs) allows efficient access of subsets of data for fast viewing.

This feature is only available to customers on the . To upgrade, .

Configuration

Required?
Configuration option
Recommended values

Mandatory

Overview resampling

  • bilinear for floating point data

  • nearest for integer or categorical data

Recommended

Compression scheme

  • YCbCr with JPG compression for 8-bit RGB data

  • DEFLATE, LZW, or ZSTD for floating point data

Recommended

Transparency

Mandatory for streaming, recommended for all uploads

Block size

256x256 or 512x512

Recommended*

Summary statistics

Min, max, mean and standard deviation. Stored in the header, per the GeoTIFF specification

Uploading Cloud Optimized GeoTIFFs without summary statistics to Felt can be slow and inefficient, since Felt will have to read large amounts of data in order to compute those values.

Converting raster files to Cloud Optimized GeoTIFFs

Example for floating-point data
$ gdal_translate -stats -of COG -resampling bilinear -co COMPRESS=LWZ {input}.tif {output}.tif
Example for integer data
$ gdal_translate -stats -of COG -resampling nearest -co COMPRESS=JPEG {input}.tif {output}.tif

Set an explicit

Install the command line tools. If you’re using on MacOS, you can do this with brew install gdal

Use the 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.

GDAL
homebrew
gdal_translate
Nodata mask band
Cloud Optimized Geotiff
Enterprise plan
contact sales