Get Tile
| sagemakergeospatialcapabilities_get_tile | R Documentation |
Gets a web mercator tile for the given Earth Observation job¶
Description¶
Gets a web mercator tile for the given Earth Observation job.
Usage¶
sagemakergeospatialcapabilities_get_tile(Arn, ExecutionRoleArn,
ImageAssets, ImageMask, OutputDataType, OutputFormat, PropertyFilters,
Target, TimeRangeFilter, x, y, z)
Arguments¶
Arn[required] The Amazon Resource Name (ARN) of the tile operation.
ExecutionRoleArnThe Amazon Resource Name (ARN) of the IAM role that you specify.
ImageAssets[required] The particular assets or bands to tile.
ImageMaskDetermines whether or not to return a valid data mask.
OutputDataTypeThe output data type of the tile operation.
OutputFormatThe data format of the output tile. The formats include .npy, .png and .jpg.
PropertyFiltersProperty filters for the imagery to tile.
Target[required] Determines what part of the Earth Observation job to tile. 'INPUT' or 'OUTPUT' are the valid options.
TimeRangeFilterTime range filter applied to imagery to find the images to tile.
x[required] The x coordinate of the tile input.
y[required] The y coordinate of the tile input.
z[required] The z coordinate of the tile input.
Value¶
A list with the following syntax:
Request syntax¶
svc$get_tile(
Arn = "string",
ExecutionRoleArn = "string",
ImageAssets = list(
"string"
),
ImageMask = TRUE|FALSE,
OutputDataType = "INT32"|"FLOAT32"|"INT16"|"FLOAT64"|"UINT16",
OutputFormat = "string",
PropertyFilters = "string",
Target = "INPUT"|"OUTPUT",
TimeRangeFilter = "string",
x = 123,
y = 123,
z = 123
)