Sentinel Hub · Schema

BatchTileOrigin

Coordinates of the tile origin (lower left corner) in the tile's CRS.

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
type string
coordinates array
crs object
View JSON Schema on GitHub

JSON Schema

BatchTileOrigin.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/BatchTileOrigin",
  "title": "BatchTileOrigin",
  "description": "Coordinates of the tile origin (lower left corner) in the tile's CRS.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "Point"
      ]
    },
    "coordinates": {
      "type": "array",
      "minItems": 2,
      "maxItems": 2,
      "items": {
        "type": "number",
        "format": "double"
      }
    },
    "crs": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "name"
          ]
        },
        "properties": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string",
              "description": "CRS used by the tile, e.g. `urn:ogc:def:crs:EPSG::4326`",
              "example": "urn:ogc:def:crs:EPSG::4326"
            }
          }
        }
      }
    }
  }
}