Raster Datasets and Raster Files
Raster Datasets store georeferenced imagery (satellite photos, terrain models, derived raster outputs). The application supports displaying Cloud-Optimized GeoTIFF (COG) layers. Unlike vector data, raster files do not require PMTiles conversion — they are served directly from the file storage.
Adding a Raster Dataset
- Go to Datasets → Raster Datasets → + Add Raster Dataset.
- Fill in the same metadata fields as Vector Datasets (name, description, source, contact, CRS, etc.). Supports EN/PT translations.
- Click Save. Then add a Raster File.
Adding Raster Files
- Go to Datasets → Raster Files → + Add Raster File.
- Select the parent Raster Dataset.
- Upload a raster file. Accepted formats:
.tiff,.tif,.geotiff,.gtiff,.vrt. - Click Save.
COG requirements
For best performance, raster files must be Cloud-Optimized GeoTIFFs in EPSG:3857 with 256×256 block size and the Google Maps tiling scheme.
Single-band data:
gdalwarp <source.tif> <dest.tif> -of COG -t_srs EPSG:3857 \
-co BLOCKSIZE=256 -co TILING_SCHEME=GoogleMapsCompatible
RGB imagery (satellite):
gdalwarp <source.tif> <dest.tif> -of COG -t_srs EPSG:3857 \
-co BLOCKSIZE=256 -co TILING_SCHEME=GoogleMapsCompatible \
-co COMPRESS=JPEG -co ADD_ALPHA=NO -dstnodata NaN
Linking Raster Datasets to Data Models
Add a Raster Dataset to a Data Model's Raster Layers multi-select to make it available as an optional map layer in the explorer. Only approved Raster Datasets appear in this selector.