REST Resource: projects.tables

  • A Table resource represents information about a table, including its JSON representation and various fields.

  • Key fields for a Table include name, expression, fileFormat, selectors, and filename.

  • Methods available for Table resources include create to generate a rendering ID and getFeatures to download 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.