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.

NameTypeDescriptionExamples
datastringDataset name or identifier to be loaded."ndvi"
overviewLevelinteger,nullOptional: 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
}
}