公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
Export.table.toAsset
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
创建批量任务,以将要素集合导出到 Earth Engine 表格资产。您可以在“任务”标签页中开始任务。
用法 | 返回 |
---|
Export.table.toAsset(collection, description, assetId, maxVertices, priority) | |
参数 | 类型 | 详细信息 |
---|
collection | FeatureCollection | 要导出的要素集合。 |
description | 字符串,可选 | 任务的简明易懂的名称。默认为“myExportTableTask”。 |
assetId | 字符串,可选 | 目标素材资源 ID。 |
maxVertices | 数字,可选 | 每个几何图形的未切割顶点数量上限;顶点数量超过此上限的几何图形将被切割成小于此大小的块。 |
priority | 数字,可选 | 任务在项目中的优先级。优先级较高的任务会更早安排。必须是介于 0 到 9999 之间的整数。默认值为 100。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003eExports Earth Engine feature collections to table assets for storage and analysis.\u003c/p\u003e\n"],["\u003cp\u003eUtilizes the \u003ccode\u003eExport.table.toAsset()\u003c/code\u003e function, accepting parameters for collection, description, asset ID, and more.\u003c/p\u003e\n"],["\u003cp\u003eEnables users to manage and initiate export tasks through the Earth Engine Tasks tab.\u003c/p\u003e\n"],["\u003cp\u003eOffers control over task priority and geometry handling with optional parameters like \u003ccode\u003epriority\u003c/code\u003e and \u003ccode\u003emaxVertices\u003c/code\u003e.\u003c/p\u003e\n"]]],["Exports a feature collection to an Earth Engine table asset using `Export.table.toAsset`. The function takes a `collection`, destination `assetId`, and optional parameters: `description` (task name), `maxVertices` (limit for geometry vertices), and `priority` (task scheduling priority, 0-9999, defaults to 100). The created task is managed in the Tasks tab. Geometries exceeding `maxVertices` are split. The task's purpose is to store a feature collection into an asset table.\n"],null,["# Export.table.toAsset\n\n\u003cbr /\u003e\n\nCreates a batch task to export a feature collection to an Earth Engine table asset. Tasks can be started from the Tasks tab.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|----------------------------------------------------------------------------------------------------|---------|\n| `Export.table.toAsset(collection, `*description* `, `*assetId* `, `*maxVertices* `, `*priority*`)` | |\n\n| Argument | Type | Details |\n|---------------|-------------------|--------------------------------------------------------------------------------------------------------------------------------------------------|\n| `collection` | FeatureCollection | The feature collection to export. |\n| `description` | String, optional | A human-readable name of the task. Defaults to \"myExportTableTask\". |\n| `assetId` | String, optional | The destination asset ID. |\n| `maxVertices` | Number, optional | Max number of uncut vertices per geometry; geometries with more vertices will be cut into pieces smaller than this size. |\n| `priority` | Number, optional | The priority of the task within the project. Higher priority tasks are scheduled sooner. Must be an integer between 0 and 9999. Defaults to 100. |"]]