Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
REST Resource: projects.locations.tables
Stay organized with collections
Save and categorize content based on your preferences.
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 |
|
Creates an ID that can be used to render "table" data. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-06 UTC.
[null,null,["Last updated 2025-03-06 UTC."],[[["\u003cp\u003eTables store data in rows and columns and can be created using an expression that evaluates to a FeatureCollection.\u003c/p\u003e\n"],["\u003cp\u003eYou can specify the output format for the table data, such as CSV, GeoJSON, or Shapefile, using the \u003ccode\u003efileFormat\u003c/code\u003e property.\u003c/p\u003e\n"],["\u003cp\u003eUse the \u003ccode\u003eselectors\u003c/code\u003e property to choose specific fields from the table data to include in the output.\u003c/p\u003e\n"],["\u003cp\u003eYou can provide a filename for the table using the \u003ccode\u003efilename\u003c/code\u003e property.\u003c/p\u003e\n"],["\u003cp\u003eUse the \u003ccode\u003ecreate\u003c/code\u003e method to generate an ID that can be used to render table data.\u003c/p\u003e\n"]]],["This content describes a table resource with properties such as `name`, `expression`, `fileFormat`, `selectors`, and `filename`. The `expression` computes a `FeatureCollection`. `fileFormat` specifies the output encoding (e.g., CSV, GeoJSON, KML, SHP, TF_RECORD_TABLE). `selectors` allows selecting specific property fields, and `filename` sets the table's filename. The `create` method generates an ID for rendering \"table\" data.\n"],null,["# REST Resource: projects.locations.tables\n\nResource: Table\n---------------\n\nInformation about a table.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"expression\": { object (/earth-engine/reference/rest/v1/Expression) }, \"fileFormat\": enum (/earth-engine/reference/rest/v1/projects.locations.tables#Table.TableFileFormat), \"selectors\": [ string ], \"filename\": string } ``` |\n\n| Fields ||\n|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` The resource name representing the thumbnail, of the form \"projects/\\*/tables/\\*\\*\" (e.g. \"projects/earthengine-legacy/tables/\"). |\n| `expression` | `object (`[Expression](/earth-engine/reference/rest/v1/Expression)`)` The expression to compute. Must evaluate to a FeatureCollection. |\n| `fileFormat` | `enum (`[TableFileFormat](/earth-engine/reference/rest/v1/projects.locations.tables#Table.TableFileFormat)`)` The output encoding in which to generate the resulting table. |\n| `selectors[]` | `string` Optional property fields to select from the specified table. |\n| `filename` | `string` Optional filename of the resulting table. |\n\n### TableFileFormat\n\nSelects a tabular file format in which to encode a table of features.\n\n| Enums ||\n|---------------------------------|--------------------------------------------------------------|\n| `TABLE_FILE_FORMAT_UNSPECIFIED` | Unspecified. |\n| `CSV` | Comma-separated value format. |\n| `GEO_JSON` | GeoJSON FeatureCollection format. See \u003chttp://geojson.org/\u003e. |\n| `KML` | Keyhole Markup Language format. |\n| `KMZ` | Zip-compressed Keyhole Markup Language format. |\n| `SHP` | Shapefile format. |\n| `TF_RECORD_TABLE` | TFRecord format. |\n\n| Methods ------- ||\n|--------------------------------------------------------------------------------|--------------------------------------------------------|\n| ### [create](/earth-engine/reference/rest/v1/projects.locations.tables/create) | Creates an ID that can be used to render \"table\" data. |"]]