AI-generated Key Takeaways
-
tables.create
generates a temporary ID representing a table derived from a provided expression and output options. -
This ID can be used with
tables.getFeatures
to retrieve the entire table data, offering a solution for scenarios whereComputeFeatures
is limited. -
Unlike
ComputeFeatures
,tables.getFeatures
can be accessed using an API key, enabling broader usage scenarios. -
The process involves a two-step approach: creating a table ID with a POST request to
tables.create
and then fetching the table data via a GET request totables.getFeatures
. -
Authorization is required for both
tables.create
andComputeFeatures
, buttables.getFeatures
allows for access with an API key, expanding its usability.
Creates an ID that can be used to render "table" data.
This is used in conjunction with tables.getFeatures
. A call to tables.create
provides an expression and some output options. The result of tables.create
is an ID that represents a table that is the result of evaluating that expression and applying those options. Subsequently, calls to tables.getFeatures
can be made to get the table data for the entire resulting table. The ID will be valid for a moderate period (a few hours).
The most common use case for this pair of endpoints is to provide a complex expression via a POST to tables.create
, and then fetch the computed table via a GET to tables.getFeatures
. This two-part process allows for use in more situations than ComputeFeatures
. In particular: - the result of ComputeFeatures
requires pagination to get the entirety of the features. Additionally only individual Feature
s are returned. - ComputeFeatures
can only be called by an authorized user, using a properly-scoped OAuth token. tables.create
has the same restriction, but GetTableData
can be invoked with a URL containing an API key, so URLs invoking it can be used more broadly.
HTTP request
POST https://earthengine.googleapis.com/v1/{parent=projects/*}/tables
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. The parent of the location where the table will be created (e.g., "projects/*"). |
Query parameters
Parameters | |
---|---|
workloadTag |
User supplied tag to track this computation. |
Request body
The request body contains an instance of Table
.
Response body
If successful, the response body contains a newly created instance of Table
.
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.