REST Resource: projects.filmstripThumbnails

  • FilmstripThumbnail objects represent a series of images from an ImageCollection, arranged in a strip format (horizontal or vertical).

  • They are created using an expression which evaluates to an ImageCollection, and can be rendered in a chosen output encoding.

  • You can customize the layout and projection of the image strip using Orientation and PixelGrid options respectively.

  • Earth Engine provides methods to create these filmstrip thumbnails and retrieve pixel data for visualization.

Resource: FilmstripThumbnail

Information about a filmstrip thumbnail.

JSON representation
{
  "name": string,
  "expression": {
    object (Expression)
  },
  "orientation": enum (Orientation),
  "fileFormat": enum (ImageFileFormat),
  "grid": {
    object (PixelGrid)
  }
}
Fields
name

string

The resource name representing the filmstrip thumbnail, of the form "projects/*/filmstripThumbnails/**" (e.g. "projects/earthengine-legacy/filmstripThumbnails/").

expression

object (Expression)

The expression to compute. Must evaluate to an ImageCollection.

orientation

enum (Orientation)

How the images should be placed to form the filmstrip thumbnail.

fileFormat

enum (ImageFileFormat)

The output encoding in which to generate the resulting image.

grid

object (PixelGrid)

An optional pixel grid describing how the images computed by expression are reprojected and clipped.

Orientation

Defines the orientation of a filmstrip thumbnail image.

Enums
ORIENTATION_UNSPECIFIED Unspecified.
HORIZONTAL Horizontal: images are laid out side by side, from left to right.
VERTICAL Vertical: images are laid out from top to bottom.

Methods

create

Creates an ID that can be used to render an image containing multiple images from a collection.

getPixels

Computes an image showing the result of a computation.