お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
Export.table.toBigQuery
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
FeatureCollection を BigQuery にエクスポートするバッチタスクを作成します。タスクは [タスク] タブから開始できます。
なお、この機能はプレビュー版であり、API と動作は大幅に変更される可能性があります。詳細については、https://developers.google.com/earth-engine/guides/export_to_bigquery をご覧ください。
用途 | 戻り値 |
---|
Export.table.toBigQuery(collection, description, table, overwrite, append, selectors, maxVertices, priority) | |
引数 | タイプ | 詳細 |
---|
collection | FeatureCollection | エクスポートするフィーチャー コレクション。 |
description | 文字列、省略可 | 人が読める形式のタスク名。デフォルトは「myExportTableTask」です。 |
table | 文字列、省略可 | 次の形式の完全修飾 BigQuery 宛先テーブル: "project_id.dataset_id.table_id"。 |
overwrite | ブール値、省略可 | 既存のテーブルをこのエクスポートの結果で上書きするかどうか。デフォルトは false です。`overwrite` パラメータと `append` パラメータを同時に `true` にすることはできません。テーブルがすでに存在し、`overwrite` と `append` の両方が `false` の場合、エクスポートは失敗します。 |
append | ブール値、省略可 | テーブルがすでに存在し、互換性のあるスキーマがある場合に、テーブルデータを追加するかどうか。デフォルトは false です。`overwrite` パラメータと `append` パラメータを同時に `true` にすることはできません。テーブルがすでに存在し、`overwrite` と `append` の両方が `false` の場合、エクスポートは失敗します。 |
selectors | List<String>|String(省略可) | エクスポートに含めるプロパティのリスト。カンマ区切りの名前を含む単一の文字列または文字列のリスト。 |
maxVertices | 数値、省略可 | ジオメトリあたりの未カット頂点の最大数。頂点数がこの数を超えるジオメトリは、このサイズより小さいピースにカットされます。 |
priority | 数値、省略可 | プロジェクト内のタスクの優先度。優先度の高いタスクは、より早くスケジュールされます。0 ~ 9999 の整数を指定してください。デフォルトは 100 です。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eExports a FeatureCollection to a BigQuery table using a batch task, accessible via the Tasks tab.\u003c/p\u003e\n"],["\u003cp\u003eThis feature is currently in Preview, so the API and behavior are subject to change.\u003c/p\u003e\n"],["\u003cp\u003eUsers can customize export options, such as table name, overwriting or appending data, selecting properties, and setting task priority.\u003c/p\u003e\n"],["\u003cp\u003eRefer to the provided link for detailed information and guidance on exporting to BigQuery.\u003c/p\u003e\n"]]],[],null,["# Export.table.toBigQuery\n\n\u003cbr /\u003e\n\nCreates a batch task to export a FeatureCollection to BigQuery. Tasks can be started from the Tasks tab.\n\n\u003cbr /\u003e\n\nNote that this feature is in Preview, and the API and behavior may change significantly. For more information, see https://developers.google.com/earth-engine/guides/export_to_bigquery\n\n| Usage | Returns |\n|--------------------------------------------------------------------------------------------------------------------------------------------------|---------|\n| `Export.table.toBigQuery(collection, `*description* `, `*table* `, `*overwrite* `, `*append* `, `*selectors* `, `*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| `table` | String, optional | The fully-qualifed BigQuery destination table in the following format: \"project_id.dataset_id.table_id\". |\n| `overwrite` | Boolean, optional | Whether the existing table should be overwritten by the result of this export. Defaults to false. The \\`overwrite\\` and \\`append\\` parameters cannot be \\`true\\` simultaneously. The export fails if the table already exists and both \\`overwrite\\` and \\`append\\` are \\`false\\`. |\n| `append` | Boolean, optional | Whether table data should be appended if the table already exists and has a compatible schema. Defaults to false. The \\`overwrite\\` and \\`append\\` parameters cannot be \\`true\\` simultaneously. The export fails if the table already exists and both \\`overwrite\\` and \\`append\\` are \\`false\\`. |\n| `selectors` | List\\\u003cString\\\u003e\\|String, optional | A list of properties to include in the export; either a single string with comma-separated names or a list of strings. |\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. |"]]