REST Resource: projects.featureViews

  • A FeatureView is a map resource in Earth Engine represented by a JSON object containing a name, visualization expression, and a data source.

  • The data source for a FeatureView can be an Earth Engine asset, specified using the asset field in the JSON representation.

  • Visualization options for the FeatureView are defined using the visualizationExpression field, based on the google.earthengine.datamaps.v1.MapOptions proto.

  • FeatureViews are identified by a unique resource name with the format "projects/*/featureViews/**".

  • You can create a FeatureView using the create method provided by the Earth Engine API.

Resource: FeatureView

Information about a FeatureView map.

JSON representation
{
  "name": string,
  "visualizationExpression": {
    object (Expression)
  },

  // Union field source can be only one of the following:
  "asset": string
  // End of list of possible types for union field source.
}
Fields
name

string

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

visualizationExpression

object (Expression)

A set of FeatureView visualization options to apply to the tiles at serving-time. Based on the google.earthengine.datamaps.v1.MapOptions proto.

Union field source. The source of this map's data. source can be only one of the following:
asset

string

Earth Engine asset name for which to create a FeatureView.

Methods

create

Create a FeatureView.