Sentinel Hub · Schema

BaseDatasetProcessing

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
upsampling string The interpolation used when the requested resolution is higher than the source resolution.
downsampling string The interpolation used when the requested resolution is lower than the source resolution.
View JSON Schema on GitHub

JSON Schema

BaseDatasetProcessing.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/BaseDatasetProcessing",
  "title": "BaseDatasetProcessing",
  "type": "object",
  "properties": {
    "upsampling": {
      "description": "The interpolation used when the requested\nresolution is higher than the source resolution.\n",
      "type": "string",
      "enum": [
        "NEAREST",
        "BILINEAR",
        "BICUBIC"
      ],
      "default": "NEAREST"
    },
    "downsampling": {
      "description": "The interpolation used when the requested\nresolution is lower than the source resolution.\n",
      "type": "string",
      "enum": [
        "NEAREST",
        "BILINEAR",
        "BICUBIC"
      ],
      "default": "NEAREST"
    }
  }
}