Sentinel Hub · Schema

S1ProcessingSpeckleFilterLEE

The Lee speckle filter. Note that processing time rapidly increases as window size increases.

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
type string
windowSizeX integer The window size in the X direction of the source data. Odd values recommended.
windowSizeY integer The window size in the Y direction of the source data. Odd values recommended.
View JSON Schema on GitHub

JSON Schema

S1ProcessingSpeckleFilterLEE.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/S1ProcessingSpeckleFilterLEE",
  "title": "S1ProcessingSpeckleFilterLEE",
  "type": "object",
  "description": "The Lee speckle filter. Note that processing time rapidly increases as window size increases.",
  "required": [
    "type",
    "windowSizeX",
    "windowSizeY"
  ],
  "properties": {
    "type": {
      "type": "string"
    },
    "windowSizeX": {
      "type": "integer",
      "minimum": 1,
      "maximum": 7,
      "description": "The window size in the X direction of the source data. Odd values recommended."
    },
    "windowSizeY": {
      "type": "integer",
      "minimum": 1,
      "maximum": 7,
      "description": "The window size in the Y direction of the source data. Odd values recommended."
    }
  }
}