GDAL Source
The [GdalSource] is a source operator that reads raster data using GDAL.
The counterpart for vector data is the [OgrSource].
Errors
Section titled “Errors”If the given dataset does not exist or is not readable, an error is thrown.
Parameters
Section titled “Parameters”| 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 |
Examples
Section titled “Examples”{ "type": "GdalSource", "params": { "data": "ndvi", "overviewLevel": null }}