Skip to content

GDAL Source

The [GdalSource] is a source operator that reads raster data using GDAL. The counterpart for vector data is the [OgrSource].

If the given dataset does not exist or is not readable, an error is thrown.

Name Type Description Examples
data string Dataset name or identifier to be loaded. "ndvi"
overviewLevel integer,null Optional: overview level to use.

If not provided, the data source will determine the resolution, i.e., uses its native resolution.
3
{
"type": "GdalSource",
"params": {
"data": "ndvi",
"overviewLevel": null
}
}