Skip to content

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.

ExecutionRoleArn

The Amazon Resource Name (ARN) of the IAM role that you specify.

ImageAssets

[required] The particular assets or bands to tile.

ImageMask

Determines whether or not to return a valid data mask.

OutputDataType

The output data type of the tile operation.

OutputFormat

The data format of the output tile. The formats include .npy, .png and .jpg.

PropertyFilters

Property 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.

TimeRangeFilter

Time 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:

list(
  BinaryFile = raw
)

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
)