Initiates a batch process that computes a table and writes the result to one of several destinations.
HTTP request
POST https://earthengine.googleapis.com/v1alpha/{project=projects/*}/table:export
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
project |
The project id or project number of the Google Cloud Platform project that should be treated as the service consumer for this request. Format is Authorization requires the following IAM permission on the specified resource
|
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "expression": { object ( |
Fields | |
---|---|
expression |
An expression that evaluates to the table to compute and export. |
description |
A human-readable name of the task. |
selectors[] |
An explicit list of columns to include in the result. |
request |
A unique string used to detect duplicated requests. If more than one request is made by the same user with the same non-empty |
max |
The max allowed error in meters when transforming geometry between coordinate systems. If empty, the max error is 1 meter by default. |
max |
Max number of uncut vertices per geometry; geometries with more vertices will be cut into pieces smaller than this size. |
workload |
User supplied label to track this computation. |
priority |
Optional. The priority of the export task within the project. Higher priority tasks are scheduled sooner. Must be an integer between 0 and 9999. Defaults to 100 if not set. |
Union field export_options . Options describing where and how to store the results. export_options can be only one of the following: |
|
file |
If specified, configures export as a file. |
asset |
If specified, configures export as an Earth Engine asset. |
feature |
If specified, configures export as a FeatureView map. |
bigquery |
If specified, configures export of tabular data to BigQuery. |
Response body
If successful, the response body contains an instance of Operation
.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/earthengine
https://www.googleapis.com/auth/cloud-platform
https://www.googleapis.com/auth/devstorage.full_control
For more information, see the Authentication Overview.
TableFileExportOptions
Options for exporting tables as files outside Earth Engine.
JSON representation |
---|
{ "fileFormat": enum ( |
Fields | |
---|---|
file |
The file format in which to export the table(s). |
Union field destination . Where to write the results. destination can be only one of the following: |
|
drive |
If specified, configures export to Google Drive. |
cloud |
If specified, configures export to Google Cloud Storage. |
gcsDestination |
If specified, configures export to Google Cloud Storage. |
TableAssetExportOptions
Options for saving tables as Earth Engine assets.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field destination . Where to write the results. destination can be only one of the following: |
|
earth |
If specified, configures export to Earth Engine. |
FeatureViewAssetExportOptions
Options for saving tables or FeatureCollections as FeatureView maps.
JSON representation |
---|
{ "ingestionTimeParameters": { object ( |
Fields | |
---|---|
ingestion |
The FeatureView ingestion time parameters. These parameters must be specified at ingestion time and cannot be updated on the fly. |
Union field destination . Where to write the results. destination can be only one of the following: |
|
feature |
If specified, configures export to FeatureViews. |
FeatureViewDestination
Configuration for an Earth Engine FeatureView destination.
JSON representation |
---|
{ "name": string, "assetVersion": integer } |
Fields | |
---|---|
name |
Required. The FeatureView asset ID. The server generates a map name from the ID. |
asset |
The FeatureView asset version to create. Used for aliasing versions with assets. If not set, 0 will be used. |
BigQueryExportOptions
Options for exporting tabular data to BigQuery.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field destination . Where to write the data. destination can be only one of the following: |
|
bigquery |
If specified, configures export to BigQuery. |
BigQueryDestination
Configuration for a destination in BigQuery.
JSON representation |
---|
{ "table": string, "overwrite": boolean, "append": boolean } |
Fields | |
---|---|
table |
Required. The BigQuery destination table reference in the following format: "projectId.dataset_id.table_id". If the referenced resource does not exist, new table will be created. This applies if "append" and "overwrite" parameters are both false as well. If the referenced resource does exist and has compatible schema, one of the "overwrite" and "append" parameters has to be true, otherwise the task will fail. If referenced resource exists and schema is not compatible with the existing one, task will also fail. |
overwrite |
Specifies if the table data should be overwritten if the table already exists and has a compatible schema. The |
append |
Specifies if the table data should be appended if the table already exists and has a compatible schema. The |