공지사항:
2025년 4월 15일 전에 Earth Engine 사용을 위해 등록된 모든 비상업용 프로젝트는 Earth Engine 액세스를 유지하기 위해
비상업용 자격 요건을 인증해야 합니다.
Export.table.toBigQuery
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
FeatureCollection을 BigQuery로 내보내는 일괄 작업을 만듭니다. Tasks 탭에서 작업을 시작할 수 있습니다.
이 기능은 미리보기 버전이며 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입니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 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. |"]]