openapi: 3.1.0
info:
title: API Reference async_process batch_statistical API
version: 1.0.0
contact:
name: Sentinel Hub
description: '**NOTE:** _Asynchronous Processing API is currently in beta release._
'
servers:
- url: https://services.sentinel-hub.com
tags:
- name: batch_statistical
x-displayName: Statistical
paths:
/statistics/batch/v1:
post:
operationId: createNewBatchStatisticsRequest
summary: Submit a new statistical batch request
tags:
- batch_statistical
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/BatchStatisticalRequest'
multipart/form-data:
schema:
$ref: '#/components/schemas/MultiPartBatchRequest'
responses:
'201':
description: Request submitted
content:
application/json:
schema:
$ref: '#/components/schemas/BatchStatisticsTaskDto'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
security:
- OAuth2: []
get:
operationId: searchBatchStatisticsRequests
summary: Query statistical batch requests
tags:
- batch_statistical
parameters:
- $ref: '#/components/parameters/SearchBeanCount'
- $ref: '#/components/parameters/SearchBeanViewtoken'
- name: sort
description: 'Sort the statistical batch requests by given field.
Omit for default ordering.
'
in: query
schema:
type: string
enum:
- created
- created:desc
- status
- status:desc
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/BatchStatisticsTaskDto'
links:
$ref: '#/components/schemas/View'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
security:
- OAuth2: []
/statistics/batch/v1/{requestId}:
get:
summary: Retrieve a single batch statistical request
operationId: getSingleBatchStatisticalRequestById
tags:
- batch_statistical
parameters:
- $ref: '#/components/parameters/BatchRequestId'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/BatchStatisticsTaskDto'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
security:
- OAuth2: []
/statistics/batch/v1/{requestId}/status:
get:
summary: Retrieve the status of a batch statistical request.
operationId: batchStatisticalGetStatus
tags:
- batch_statistical
parameters:
- $ref: '#/components/parameters/BatchRequestId'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/BatchStatisticsTaskStatusDto'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
security:
- OAuth2: []
/statistics/batch/v1/{requestId}/analyse:
post:
summary: Request analysis of a batch statistical request
operationId: batchStatisticalAnalyse
tags:
- batch_statistical
parameters:
- $ref: '#/components/parameters/BatchRequestId'
responses:
'204':
description: Success
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
security:
- OAuth2: []
/statistics/batch/v1/{requestId}/start:
post:
summary: Start (confirm) processing of a batch statistical request
operationId: batchStartStatisticalRequest
tags:
- batch_statistical
parameters:
- $ref: '#/components/parameters/BatchRequestId'
responses:
'204':
description: Success
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
security:
- OAuth2: []
/statistics/batch/v1/{requestId}/stop:
post:
summary: Stop a batch statistical request
operationId: batchStopStatisticalRequest
tags:
- batch_statistical
parameters:
- $ref: '#/components/parameters/BatchRequestId'
responses:
'204':
description: Success
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
security:
- OAuth2: []
components:
schemas:
ObjectStorageInfoV2:
type: object
oneOf:
- title: S3BucketInfo
required:
- s3
properties:
s3:
$ref: '#/components/schemas/S3BucketInfo'
- title: GSBucketInfo
x-cdse-exclude: true
required:
- gs
properties:
gs:
$ref: '#/components/schemas/GSBucketInfo'
BatchStatisticalRequestAggregation:
type: object
allOf:
- $ref: '#/components/schemas/StatisticalRequestAggregationWithoutEvalscript'
- type: object
properties:
evalscript:
description: 'Your evalscript. For details, click
<a href="https://docs.planet.com/develop/evalscripts/" target="_blank">here</a>.
The evalscript will be executed once for each time interval defined by `timeRange` and `aggregationInterval`.
Either this or `evalscriptReference` parameter is required.
'
type: string
evalscriptReference:
description: 'Reference to your evalscript stored in an object storage. For details, click
<a href="https://docs.planet.com/develop/evalscripts/" target="_blank">here</a>.
Either this or `evalscript` parameter is required.
'
$ref: '#/components/schemas/ObjectStorageInfoV2'
HistogramDefinition:
description: "The name of the band (as key) for which a histogram is defined below. Each key must match with one of the band names\n`output.bands` specified in a `setup()` function in an evalscript (for this output) or be \"default\". If it is \"default\",\nthe histogram specified below will be returned for all bands of this output for which histogram is not explicitly defined.\n\nEach band's histogram may be defined by providing one of the following properties:\n * `binWidth`\n * `nBins`\n * exact bins provided by `bins` array\n\n[This example](https://docs.planet.com/develop/apis/statistical/examples/#multiple-outputs-with-different-datamasks-multi-band-output-with-custom-bands-names-and-different-histogram-types)\nshows how to specify histograms using different parameters.\n\nHistograms can be calculated using float or integer math. Providing `lowEdge` and `highEdge` or `binWidth` or\nelements of the `bins` array as integer numbers will select integer math, otherwise float will be used.\nOutput type of the band's output (specified in `output.sampleType` in the `setup()` function in the evalscript)\nmust match the respective histogram math.\n\nIf `lowEdge` and `highEdge` are not explicitly provided, min and max values are used, respectively.\n"
type: object
properties:
nBins:
description: 'Number of bins in the histogram.
'
type: number
binWidth:
description: 'Bin width.
'
type: number
lowEdge:
description: 'Values lower to this will not be included in any of the histogram''s bins.
'
type: number
highEdge:
description: 'Values higher to this will not be included in any of the histogram''s bins.
'
type: number
bins:
description: 'Explicitly defined bins.
Array [v1,v2,v3,v4] will define the following bins:
[v1,v2), [v2,v3), [v3,v4]
'
type: array
items:
type: number
minItems: 2
S1Filtering:
type: object
properties:
timeRange:
$ref: '#/components/schemas/TimeRange'
mosaickingOrder:
description: The order in which tiles are overlapped from which the output result is mosaicked.
type: string
enum:
- mostRecent
- leastRecent
default: mostRecent
resolution:
type: string
enum:
- HIGH
- MEDIUM
- FULL
acquisitionMode:
type: string
enum:
- SM
- IW
- EW
- WV
- EN
- AN
- IM
polarization:
type: string
enum:
- SH
- SV
- DH
- DV
- HH
- HV
- VV
- VH
orbitDirection:
type: string
enum:
- ASCENDING
- DESCENDING
timeliness:
type: string
enum:
- NRT10m
- NRT1h
- NRT3h
- Fast24h
- Offline
- Reprocessing
- ArchNormal
ArrayParameters:
required:
- dtype
- chunks
- order
- fill_value
properties:
dtype:
description: "Data type/encoding. Allowed values depend on the `sampleType` defined in `evalscript`:\n * `|u1`: 8-bit unsigned integer, recommended for `sampleType` UINT8 and AUTO,\n * `|i1`: 8-bit signed integer, recommended for `sampleType` INT8,\n * `<u2`,`>u2`: 16-bit unsigned integer (little and big endian, respectively), recommended for `sampleType` UINT16, allowed for UINT8 and AUTO,\n * `<i2`,`>i2`: 16-bit signed integer (little and big endian, respectively), recommended for `sampleType` INT16, allowed for UINT8, INT8 and AUTO,\n * `<f4`, `>f4`, `<f8`, `>f8`: float (little/big endian single precision, little/big endian double precision, respectively),\n recommended for `sampleType` FLOAT32, allowed for any `sampleType`.\n\n*Recommended* values encode the chosen `sampleType` losslessly, while other allowed values encode the same values in a wider data type but do not add any more precision.\n"
example: <f4
type: string
externalDocs:
description: Zarr data type specification version 2, Attributes
url: https://zarr-specs.readthedocs.io/en/latest/v2/v2.0.html#data-type-encoding
order:
description: Layout of values within each chunk of the array. Currently only "C" is supported, which means row-major order.
type: string
default: C
chunks:
description: 'A list of integers defining the length of each dimension of a chunk of the array, e.g. `[1, 1000, 1000]`.
The first element (time dimension chunking) must be 1.
The second and third (latidude/y and longitude/x-dimension chunking, respectively)
must evenly divide the batch output tile raster size.
For example, when using the [LAEA 100km grid](https://docs.planet.com/develop/apis/batch-processing/#1-tiling-grid)
with an output resolution of 50 m, each batch tile will be 2000 x 2000 pixels,
thus valid chunking sizes are 2000, 1000, 500, 400 etc.
'
example:
- 1
- 1000
- 1000
type: array
minItems: 3
maxItems: 3
items:
type: number
format: integer
fill_value:
type: number
description: 'A scalar value providing the default value for portions of the array corresponding to non-existing chunks:
* any chunks consisting solely of this value will **not** be written,
* the value will be included in the output Zarr metadata.
**Note**: `fill_value` must be representable by the array''s `dtype`.
**Note**: any grid tiles that are within Zarr envelope but outside of `processRequest.input.bounds.geometry` will not be processed by batch at all.
No chunks will thus be written for those tiles, thus `fill_value` is required to ensure a valid Zarr is created.
'
compressor:
description: 'Compressor type and parameters, which will be used to compress the data chunks.
'
default:
id: blosc
cname: lz4
clevel: 5
shuffle: 1
blocksize: 0
type: object
ArrayOverrides:
description: Overrides the values of `arrayParameters` for individual arrays.
type: object
additionalProperties:
x-additionalPropertiesName: array name
$ref: '#/components/schemas/ArrayOverride'
MultiPartBatchRequest:
type: object
properties:
request:
$ref: '#/components/schemas/BatchProcessRequest'
evalscript:
description: Block of JavaScript code.
type: string
StatisticsDefinition:
description: Single band statistics definition. The name of the band (as key) for which a calculation of statistic is defined below. Each key must match with one of the band names `output.bands` specified in a `setup()` function in an evalscript (for this output) or be "default". If it is "default", the statistics specified below will be calculated for all bands of this output for which calculation of statistics is not explicitly defined.
type: object
properties:
percentiles:
description: Calculate percentiles.
type: object
properties:
k:
description: 'Percentiles definition as array of values between [0,1], [see this example](https://docs.planet.com/develop/apis/statistical/examples/#statistics-histogram-and-percentiles-for-one-single-band-output).
'
type: array
items:
type: number
format: double
minimum: 0
maximum: 1
View:
description: Links to paginate the resource
type: object
properties:
currentToken:
type: string
nextToken:
type: string
previousToken:
type: string
'@id':
type: string
format: uri
next:
type: string
format: uri
previous:
type: string
format: uri
Aggregation:
required:
- of
description: 'Specifies how given time range is split into time intervals.
'
type: object
properties:
of:
description: 'Duration in ISO 8601 duration format, check [here](https://docs.planet.com/develop/apis/statistical/#split-the-requested-timerange-into-multiple-time-intervals) for more details.
'
type: string
lastIntervalBehavior:
description: "This parameter specifies the behavior of the last interval if the given time range isn't divisible by the provided aggregation interval.\n * SKIP - skip the last interval (default behavior)\n * SHORTEN - shortens the last interval so that it ends at the end of provided time range.\n * EXTEND - extends the last interval over the end of the provided time range so that all intervals are of equal duration\n"
type: string
enum:
- SKIP
- SHORTEN
- EXTEND
Group:
required:
- zarr_format
description: Zarr group level parameters
properties:
zarr_format:
description: Zarr format version. Currently only version 2 is supported.
example: 2
type: integer
coordinates:
description: Allows customization of certain output coordinate system parameters
properties:
origin:
type: string
description: "Defines the origin of the output raster/sign of resolution:\n * `topLeft` (default): negative resolution along the Zarr y-axis, same as for TIFF output</li>\n * `bottomLeft`: positive resolution along the Zarr y-axis</li>\n\nThe resolution along the Zarr x-axis is always positive.\n"
default: topLeft
enum:
- topLeft
- bottomLeft
customAttributes:
description: 'User-defined metadata to store into the group''s `.zattrs` file.
For example, to include a copyright notice in the ouptut Zarr, you could set this field to
`{"copyright": "My Company Ltd, 2023"}`.
**Note**: multiple fields are added to the group attributes by default, such as "date_modified"
and the geospatial extent. Listing any such field in `customAttributes` will override its default value.
'
type: object
BatchProcessOutput:
description: 'Specifies the tile output paths where the results shall be written. Required unless `bucketName` or `zarrOutput` is specified.
'
type: object
properties:
defaultTilePath:
description: "Path or path template specifying where batch processing results shall be stored. Supported formats: <ul>\n <li>a valid Amazon S3 URL, e.g. `s3://some-bucket/some/folder`.<br/>\n A subdirectory will be created for this batch request, named after the request ID, and will contain further subdirectories with the output tiles.\n This is equivalent to the template `s3://some-bucket/some/folder/<requestId>/<tileName>/<outputId>.<format>`.\n </li>\n <li>a templated Amazon S3 URL, e.g. `s3://some-bucket/some/folder/<tileName>.tif`.\n Templating allows custom organization of the output files.\n Templates can contain the following placeholders, which are replaced by respective actual values when writing results:\n <ul>\n <li> `<requestId>` - the ID of your batch request,</li>\n <li> `<tileName>` - the name (string ID) of the tile within the used tiling grid,</li>\n <li> `<tileId>` - the numerical ID of the tile within the used tiling grid,</li>\n <li> `<outputId>` - the output (raster) identifier (e.g. `default`),</li>\n <li> `<format>` - the filename extension of the output's format (e.g. `tiff`).</li>\n </ul>\n The template must contain `<tileName>` or `<tileId>` in order to ensure unique output files.\n In case of multiple outputs, the template must also contain `<outputId>`.\n </li>\n</ul> The request will fail if files already exist.\n"
type: string
overwrite:
description: "If `true`, the request will **never** fail if files already exist. Instead, any existing files will be overwritten, except if `skipExisting` is `true` and **all** outputs for a tile exist.\n\n*Note:* checking for existing files can only be done if the task is estimated to output fewer than 5000 files, e.g. a task that produces 5 outputs per tile and is estimated to span over 1000 grid tiles is too big to check. Such big tasks must either: <ul>\n <li> ensure that the output path is unique to the task by including `<taskId>` in `defaultTilePath` and all `tilePath`s,</li>\n <li> ensure that the output path is unique by using a simple, non-templated `defaultTilePath`, or</li>\n <li> suppress overwrite checks by setting `overwrite` to `true` and `skipExisting` to `false`.</li>\n<ul>\n"
default: false
type: boolean
skipExisting:
description: 'If `true`, any tiles for which **all** outputs already exist will be skipped. Tiles for which only **some** of the outputs exist will either be *fully overwritten* (if `overwrite` is `true`) or will cause the whole request to fail.
'
default: false
type: boolean
cogOutput:
description: If `true`, the results will be written as COG (cloud optimized GeoTIFFs). All outputs must use the TIFF format and **cannot** use `sampleType` INT8. We also suggest setting the evalscript output object `nodataValue` (<a href="https://docs.planet.com/develop/evalscripts/functions/#output-object-properties" target="_blank">more details</a>) for correct overview generation.
default: false
type: boolean
cogParameters:
$ref: '#/components/schemas/BatchCogParameters'
createCollection:
description: 'If `true`, the results will be written as COG (cloud optimized GeoTIFFs) and a collection will be automatically created. All outputs must be single-band and use the TIFF format. Only one of *createCollection* and *collectinId* may be specified. Requires `"cogOutput"=true`.
'
type: boolean
default: false
collectionId:
description: 'If provided, the results will be written as COG (cloud optimized GeoTIFFs) and added to the existing collection with the specified identifier. All outputs must be single-band and use the TIFF format. The collection must exist and be compatible -- that is, must contain bands equivalent to the batch request''s outputs with the same bit depths. Only one of *createCollection* and *collectinId* may be specified. Requires `"cogOutput"=true`.
'
type:
- string
- 'null'
default: null
Ls8Dataset:
title: landsat-8-l1c
type: object
allOf:
- $ref: '#/components/schemas/LandsatDataset'
- type: object
properties:
type:
type: string
enum:
- landsat-8-l1c
dataFilter:
allOf:
- $ref: '#/components/schemas/LandsatFiltering'
- $ref: '#/components/schemas/LandsatTierFilteringWithRt'
StatisticalRequestAggregationWithoutEvalscript:
required:
- timeRange
- aggregationInterval
description: 'Specifies how data is aggregated and processed before statistics is calculated. `timeRange` and `aggregationInterval` combined define sampling intervals in time dimension. Width/height or resx/resy combined with `input.bounds` define a sample matrix (i.e. "image") in spatial dimension.
'
type: object
properties:
timeRange:
$ref: '#/components/schemas/StatisticalDateTimeInterval'
aggregationInterval:
$ref: '#/components/schemas/Aggregation'
width:
description: 'Width of the sample matrix.
_Only one pair of parameters "width"/"height" or "resx"/"resy" must be set at the same time._
'
type: integer
format: int32
minimum: 1
maximum: 2500
default: 256
example: 512
height:
description: 'Height of the sample matrix.
_Only one pair of parameters "width"/"height" or "resx"/"resy" must be set at the same time._
'
type: integer
format: int32
minimum: 1
maximum: 2500
default: 256
example: 512
resx:
description: 'Spatial resolution used to calculate the width of the sample matrix from the `input.bounds`.
Its units are defined by the CRS given in `input.bounds.properties.crs`
parameter.
_Only one pair of parameters "width"/"height" or "resx"/"resy" must be set at the same time._
'
type: number
format: double
resy:
description: 'Spatial resolution used to calculate the height of the sample matrix from the `input.bounds`.
Its units are defined by the CRS given in `input.bounds.properties.crs`
parameter.
_Only one pair of parameters "width"/"height" or "resx"/"resy" must be set at the same time._
'
type: number
format: double
ProcessRequestForBatch:
type: object
description: Batch processing equivalent of the <a href="#operation/process">Process request</a>.
required:
- evalscript
- input
properties:
input:
$ref: '#/components/schemas/ProcessRequestInput'
output:
$ref: '#/components/schemas/ProcessRequestOutputForBatch'
evalscript:
description: 'Your evalscript. For details, click
<a href="https://docs.planet.com/develop/evalscripts/" target="_blank">here</a>.
'
type: string
S3BucketInfo:
type: object
required:
- url
properties:
url:
type: string
description: A URL pointing to an S3 bucket or an object in an S3 bucket. It can contain prefixes, e.g. `s3://my-personal-bucket/some-folder` or `s3://my-personal-bucket/some-folder/some-file.gpkg`.
iamRoleARN:
type: string
description: IAM role ARN, which allows programmatic access to the S3 bucket specified in the `url` field using the recommended assume IAM role flow.
accessKey:
type: string
description: AWS access key, which allows programmatic access to the S3 bucket specified in the `url` field.
secretAccessKey:
type: string
description: AWS secret access key which must correspond to the AWS access key.
region:
type: string
description: The region where the S3 bucket is located. If omitted, the region of the deployment that the request is submitted to is assumed.
LandsatDataset:
type: object
allOf:
- $ref: '#/components/schemas/BaseDataset'
- type: object
properties:
dataFilter:
$ref: '#/components/schemas/LandsatFiltering'
processing:
$ref: '#/components/schemas/BaseDatasetProcessing'
BYOCFiltering:
type: object
properties:
timeRange:
$ref: '#/components/schemas/TimeRange'
mosaickingOrder:
description: The order in which tiles are overlapped from which the output result is mosaicked.
type: string
enum:
- mostRecent
- leastRecent
default: mostRecent
ObjectStorageOutputInfoV2:
type: object
oneOf:
- title: S3BucketInfoTemplated
required:
- s3
properties:
s3:
$ref: '#/components/schemas/S3BucketInfoTemplated'
- title: GSBucketInfoTemplated
x-cdse-exclude: true
required:
- gs
properties:
gs:
$ref: '#/components/schemas/GSBucketInfoTemplated'
ProcessRequestOutputForBatch:
type: object
properties:
responses:
type: array
description: Response object.
items:
$ref: '#/components/schemas/ProcessRequestOutputBatchResponse'
RestErrorWrapper:
type: object
properties:
error:
$ref: '#/components/schemas/Boom'
DEMProcessing:
type: object
allOf:
- $ref: '#/components/schemas/BaseDatasetProcessing'
- type: object
properties:
clampNegative:
type: boolean
default: false
description: Mapzen DEM specific option. It replaces negative orthometric heights with 0. Useful for removing ocean bathymetry, for example.
egm:
type: boolean
default: false
description: It replaces orthometric heights with ellipsoidal heights relative to the WGS84 ellipsoid.
S1ProcessingSpeckleFilterNONE:
type: object
description: Does NO speckle filtering. Equivalent to not having speckleFilter defined.
required:
- type
properties:
type:
type: string
ProcessRequestInputBoundsProperties:
title: BoundsProperties
type: object
properties:
crs:
description: 'The coordinate reference system of the coordinates. Must be
one of the values listed at https://docs.planet.com/develop/apis/processing/#crs-support.
Default CRS is WGS84, http://www.opengis.net/def/crs/OGC/1.3/CRS84.
'
type: string
default: http://www.opengis.net/def/crs/OGC/1.3/CRS84
S1Processing:
type: object
allOf:
- $ref: '#/components/schemas/BaseDatasetProcessing'
- type: object
properties:
speckleFilter:
type: object
oneOf:
- $ref: '#/components/schemas/S1ProcessingSpeckleFilterLEE'
- $ref: '#/components/schemas/S1ProcessingSpeckleFilterNONE'
discriminator:
propertyName: type
mapping:
LEE: '#/components/schemas/S1ProcessingSpeckleFilterLEE'
NONE: '#/components/schemas/S1ProcessingSpeckleFilterNONE'
backCoeff:
type: string
enum:
- BETA0
- SIGMA0_ELLIPSOID
- GAMMA0_ELLIPSOID
- GAMMA0_TERRAIN
default: GAMMA0_ELLIPSOID
orthorectify:
type: boolean
default: false
demInstance:
type: string
enum:
- MAPZEN
- COPERNICUS
- COPERNICUS_30
- COPERNICUS_90
default: MAPZEN
radiometricTerrainOversampling:
type: number
format: double
minimum: 1
maximum: 4
default: 2
ProcessRequestInput:
title: Input
type: object
required:
- bounds
- data
properties:
bounds:
$ref: '#/components/schemas/ProcessRequestInputBounds'
data:
$ref: '#/components/schemas/ProcessRequestInputData'
BatchStatisticsTaskDto:
type: object
allOf:
- $ref: '#/components/schemas/BatchStatisticsTaskStatusDto'
- type: object
properties:
request:
$ref: '#/components/schemas/BatchStatisticalRequest'
userAction:
description: Last user action on the request.
type: string
enum:
- NONE
- ANALYSE
- START
- STOP
userActionUpdated:
type: string
description: Date of the last user action on the request
format: date-time
domainAccountId:
description: Deprecated. It is equal to projectId
type: string
format: uuid
projectId:
type: string
format: uuid
workspaceId:
type: string
format: uuid
BatchProcessRequest:
required:
- processRequest
type: object
properties:
id:
description: Identifier
type: string
format: uuid
readOnly: true
accountId:
description: Account that submitted the request
type: string
format: uuid
readOnly: true
created:
description: Creation time of the request in ISO 8601
type: string
format: date-time
readOnly: true
processRequest:
$ref: '#/components/schemas/ProcessRequestForBatch'
tilingGridId:
description: This parameter was moved to tilingGrid
type: integer
format: int64
deprecated: true
tilingGrid:
$ref: '#/components/schemas/TilingGridSettings'
resolution:
description: This parameter was moved to tilingGrid.
type: number
format: double
deprecated: true
output:
# --- truncated at 32 KB (70 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/sentinel-hub/refs/heads/main/openapi/sentinel-hub-batch-statistical-api-openapi.yml