AI-generated Key Takeaways
-
Creates a unique ID for rendering a single image composed of multiple images from an ImageCollection, stitched together.
-
This ID, generated using an expression and output options, can be used with
GetFilmstripThumbnailPixels
to retrieve the composite image. -
The generated image is limited to a total size of 512x512x100 pixels across all images in the collection, exceeding which results in an error.
-
The request requires specific IAM permission (
earthengine.filmstripthumbnails.create
) on the parent resource for authorization.
Creates an ID that can be used to render an image containing multiple images from a collection.
This is used in conjunction with GetFilmstripThumbnailPixels
. A call to filmstripThumbnails.create
provides an expression and some output options. The result of filmstripThumbnails.create
is an ID that represents an image that is the result of evaluating that expression and applying those options. Subsequently, calls to GetFilmstripThumbnailPixels
can be made to get an image showing all of the elements of an ImageCollection, concatenated top-to-bottom or side-to-side. The ID will be valid for a moderate period (a few hours).
The request is limited to 512*512*100 pixels in total, across all Images in the ImageCollection. Requests exceeding these limits will result in an error code of 400 (BAD_REQUEST).
HTTP request
POST https://earthengine.googleapis.com/v1beta/{parent=projects/*/locations/*}/filmstripThumbnails
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. The parent of the location where the filmstrip thumbnail will be created (e.g., "projects/*"). Authorization requires the following IAM permission on the specified resource
|
Query parameters
Parameters | |
---|---|
workloadTag |
User supplied tag to track this computation. |
Request body
The request body contains an instance of FilmstripThumbnail
.
Response body
If successful, the response body contains a newly created instance of FilmstripThumbnail
.
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 OAuth 2.0 Overview.