Creates a batch task to export a FeatureCollection as a table to Drive. Tasks can be started from the Tasks tab.
Usage | Returns |
---|---|
Export.table.toDrive(collection, description, folder, fileNamePrefix, fileFormat, selectors) |
Argument | Type | Details |
---|---|---|
collection | FeatureCollection | The feature collection to export. |
description | String, optional | A human-readable name of the task. Defaults to "myExportTableTask". |
folder | String, optional | The Google Drive Folder that the export will reside in. |
fileNamePrefix | String, optional | The filename prefix. Defaults to the task's description. |
fileFormat | String, optional | The output format: "CSV" (default), "GeoJSON", "KML", "KMZ", or "SHP", or "TFRecord". |
selectors | List, optional | A list of properties to include in the export; either a single string with comma-separated names or a list of strings. |
Examples
JavaScript
// Your example goes here!
Python
# Your example goes here!