Fetches pixels from an image asset. This custom method allows the caller to request an arbitrary tile of pixels from an image, optionally specifying the bands and map projection. Masked or missing data will be encoded as zeroes.
Requests are limited to 48MB in uncompressed data per request, computed as the product of the request dimensions in pixels, the number of image bands requested, and the number of bytes per pixel for each band. Requests are also limited to at most 32K pixels in either dimension and at most 1024 bands. Requests exceeding these limits will result in an error code of 400 (BAD_REQUEST).
If successful, the response body contains the requested pixel data in the encoding specified in the fileFormat
field of the request.
HTTP request
POST https://earthengine.googleapis.com/v1alpha/{name=projects/*/assets/**}:getPixels
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
name |
Required. The name of the image asset from which to get pixels. Authorization requires the following IAM permission on the specified resource
|
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "fileFormat": enum ( |
Fields | |
---|---|
file |
The output file format in which to return the pixel values. |
grid |
Parameters describing the pixel grid in which to fetch data. Defaults to the native pixel grid of the data. |
region |
If present, the region of data to return, specified as a GeoJSON geometry object (see RFC 7946). Since the returned image is always rectangular, the bounding box of the given geometry in the output coordinate system will actually be used. If |
band |
If present, specifies a specific set of bands from which to get pixels. Bands are identified by id, as indicated by the |
visualization |
If present, a set of visualization options to apply to produce an 8-bit RGB visualization of the data, rather than returning the raw data. |
workload |
User supplied tag to track this computation. |
Response body
If successful, the response is a generic HTTP response whose format is defined by the method.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/earthengine
https://www.googleapis.com/auth/earthengine.readonly
https://www.googleapis.com/auth/cloud-platform
https://www.googleapis.com/auth/cloud-platform.read-only
For more information, see the Authentication Overview.