Sentinel Hub · Schema
TilingGridDescriptorProperties
Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC
Properties
| Name | Type | Description |
|---|---|---|
| tileWidth | number | Width of each output tile, in units used by the grid |
| tileHeight | number | Height of each output tile, in units used by the grid |
| resolutions | array | List of supported resolutions, in units used by the grid |
| unit | string | Units used by the grid |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.sentinel-hub.com/schemas/TilingGridDescriptorProperties",
"title": "TilingGridDescriptorProperties",
"type": "object",
"properties": {
"tileWidth": {
"description": "Width of each output tile, in units used by the grid",
"type": "number",
"format": "double"
},
"tileHeight": {
"description": "Height of each output tile, in units used by the grid",
"type": "number",
"format": "double"
},
"resolutions": {
"description": "List of supported resolutions, in units used by the grid",
"type": "array",
"uniqueItems": true,
"items": {
"type": "number",
"description": "List of supported resolutions, in units used by the grid",
"format": "double"
}
},
"unit": {
"description": "Units used by the grid",
"type": "string",
"enum": [
"METRE",
"DEGREE"
]
}
}
}