사람이 읽을 수 있는 작업 이름입니다. 문자, 숫자, -, _를 포함할 수 있습니다(공백 없음). 기본값은 'myExportImageTask'입니다.
folder
문자열, 선택사항
내보내기가 저장될 Google Drive 폴더입니다. 참고: (a) 폴더 이름이 어느 수준에든 있으면 출력이 해당 폴더에 작성됩니다. (b) 중복된 폴더 이름이 있으면 가장 최근에 수정된 폴더에 출력이 작성됩니다. (c) 폴더 이름이 없으면 루트에 새 폴더가 생성됩니다. (d) 구분자가 있는 폴더 이름 (예: 'path/to/file')은 시스템 경로가 아닌 리터럴 문자열로 해석됩니다. 기본값은 Drive 루트입니다.
fileNamePrefix
문자열, 선택사항
파일 이름 접두사입니다. 문자, 숫자, -, _를 포함할 수 있습니다(공백 없음). 기본값은 설명입니다.
dimensions
Number|String, 선택사항
내보낸 이미지에 사용할 측정기준입니다. 최대 측정기준으로 단일 양의 정수를 사용하거나 'WIDTHxHEIGHT'를 사용합니다. 여기서 WIDTH와 HEIGHT는 각각 양의 정수입니다.
region
Geometry.LinearRing|Geometry.Polygon|String(선택사항)
내보낼 지역을 나타내는 LinearRing, Polygon 또는 좌표입니다. 이는 문자열로 직렬화된 Geometry 객체 또는 좌표로 지정될 수 있습니다.
scale
숫자, 선택사항
미터당 픽셀 해상도입니다. 기본값은 1000입니다.
crs
문자열, 선택사항
내보낸 이미지에 사용할 CRS입니다.
crsTransform
List<Number>|String(선택사항)
내보낸 이미지에 사용할 어파인 변환입니다. 'crs'가 정의되어야 합니다.
maxPixels
숫자, 선택사항
내보내기에서 픽셀 수를 제한합니다. 기본적으로 내보내기가 1e8픽셀을 초과하면 오류가 표시됩니다. 이 값을 명시적으로 설정하면 이 한도를 높이거나 낮출 수 있습니다.
shardSize
숫자, 선택사항
이 이미지가 계산될 타일의 크기(픽셀)입니다. 기본값은 256입니다.
fileDimensions
List<Number>|Number, optional
이미지가 너무 커서 단일 파일에 맞지 않는 경우 각 이미지 파일의 픽셀 단위 크기입니다. 정사각형 모양을 나타내는 단일 숫자 또는 (너비, 높이)를 나타내는 2차원 배열을 지정할 수 있습니다. 이미지는 전체 이미지 크기로 잘립니다. shardSize의 배수여야 합니다.
skipEmptyTiles
불리언, 선택사항
true인 경우 빈 (즉, 완전히 마스크 처리된) 이미지 타일의 쓰기를 건너뜁니다. 기본값은 false입니다. GeoTIFF 내보내기에서만 지원됩니다.
fileFormat
문자열, 선택사항
이미지가 내보내지는 문자열 파일 형식입니다. 현재 'GeoTIFF' 및 'TFRecord'만 지원되며 기본값은 'GeoTIFF'입니다.
formatOptions
ImageExportFormatConfig(선택사항)
형식별 옵션에 대한 문자열 키의 사전입니다. 'GeoTIFF': 'cloudOptimized'(불리언), 'noData' (부동 소수점) 'TFRecord': https://developers.google.com/earth-engine/guides/tfrecord#formatoptions 참고
priority
숫자, 선택사항
프로젝트 내 작업의 우선순위입니다. 우선순위가 높은 작업은 더 빨리 예약됩니다. 0에서 9999 사이의 정수여야 합니다. 기본값은 100입니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-08(UTC)"],[[["This function exports an Earth Engine image as a raster to your Google Drive."],["You can customize the export by specifying parameters like file name, folder, region, scale, and projection."],["For large exports, you can control the tiling and pixel limits using parameters like `maxPixels`, `shardSize`, and `fileDimensions`."],["GeoTIFF and TFRecord are the supported export file formats with options for compression and NoData values."],["Tasks are initiated from the 'Tasks' tab in the Earth Engine Code Editor and can be monitored for progress and completion."]]],["This creates a batch task to export an image as a raster to Google Drive. Key parameters include the `image`, `description`, `folder`, `fileNamePrefix`, and `region`. Users can define `dimensions`, `scale`, `crs`, or `crsTransform` for output customization; these options are mutually exclusive. Additional settings involve `maxPixels`, `shardSize`, `fileDimensions`, `skipEmptyTiles`, `fileFormat`, `formatOptions`, and `priority`. Tasks can be initiated from the Tasks tab, allowing for control over the exported raster's properties and storage location.\n"]]