REST Resource: projects.tables

  • A Table is a resource with a JSON representation including name, expression, fileFormat, selectors, and filename.

  • The resource name is of the form "projects/*/tables/**".

  • The expression field must evaluate to a FeatureCollection.

  • The fileFormat specifies the output encoding for the resulting table.

  • Methods for Tables include create to render "table" data and getFeatures to fetch Table features.

Resource: Table

Information about a table.

JSON representation
{
  "name": string,
  "expression": {
    object (Expression)
  },
  "fileFormat": enum (TableFileFormat),
  "selectors": [
    string
  ],
  "filename": string
}
Fields
name

string

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

expression

object (Expression)

The expression to compute. Must evaluate to a FeatureCollection.

fileFormat

enum (TableFileFormat)

The output encoding in which to generate the resulting table.

selectors[]

string

Optional property fields to select from the specified table.

filename

string

Optional filename of the resulting table.

Methods

create

Creates an ID that can be used to render "table" data.

getFeatures

Fetches Table features, the request includes the name of the Table to download from a previous CreateTable request.