お知らせ :
2025 年 4 月 15 日 より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認 する必要があります。
フィードバックを送信
Export.image.toAsset
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Image をラスターとして Earth Engine アセットにエクスポートするバッチタスクを作成します。タスクは [タスク] タブから開始できます。
用途 戻り値 Export.image.toAsset(image, description , assetId , pyramidingPolicy , dimensions , region , scale , crs , crsTransform , maxPixels , shardSize , priority )
引数 タイプ 詳細 image
画像 エクスポートする画像。 description
文字列、省略可 人が読める形式のタスク名。デフォルトは「myExportImageTask」です。 assetId
文字列、省略可 移行先アセットの ID。 pyramidingPolicy
オブジェクト、省略可 イメージ内の各バンドに適用するピラミッド ポリシー。バンド名でキー設定されます。値は、mean、sample、min、max、mode のいずれかである必要があります。デフォルトは「mean」です。特別なキー「.default」を使用して、すべての帯域のデフォルトを変更できます。 dimensions
数値|文字列、省略可 エクスポートされた画像に使用するディメンション。最大ディメンションとして 1 つの正の整数、または「WIDTHxHEIGHT」(WIDTH と HEIGHT はそれぞれ正の整数)を指定します。 region
Geometry.LinearRing|Geometry.Polygon|String(省略可) エクスポートするリージョンを表す LinearRing、Polygon、または座標。これらは、Geometry オブジェクトまたは文字列としてシリアル化された座標として指定できます。 scale
数値、省略可 解像度(ピクセルあたりのメートル単位)。デフォルトは 1,000 です。 crs
文字列、省略可 エクスポートされたイメージに使用する CRS。 crsTransform
List<Number>|String(省略可) エクスポートされた画像に使用するアフィン変換。「crs」を定義する必要があります。 maxPixels
数値、省略可 エクスポートするピクセル数を制限します。デフォルトでは、エクスポートが 1e8 ピクセルを超えるとエラーが表示されます。この値を明示的に設定すると、この上限を引き上げたり引き下げたりできます。 shardSize
数値、省略可 この画像が計算されるタイルのサイズ(ピクセル単位)。デフォルトは 256 です。 priority
数値、省略可 プロジェクト内のタスクの優先度。優先度の高いタスクは、より早くスケジュールされます。0 ~ 9999 の整数を指定してください。デフォルトは 100 です。
例
コードエディタ(JavaScript)
// A Landsat 8 surface reflectance image.
var image = ee . Image ( 'LANDSAT/LC08/C02/T1_L2/LC08_044034_20210508' )
. select ([ 'SR_B.' ]); // reflectance bands
// A region of interest.
var region = ee . Geometry . BBox ( - 122.24 , 37.13 , - 122.11 , 37.20 );
// Set the export "scale" and "crs" parameters.
Export . image . toAsset ({
image : image ,
description : 'image_export' ,
assetId : 'projects/<project-name>/assets/<asset-name>' , // <> modify these
region : region ,
scale : 30 ,
crs : 'EPSG:5070'
});
// Use the "crsTransform" export parameter instead of "scale" for more control
// over the output grid. Here, "crsTransform" is set to align the output grid
// with the grid of another dataset. To view an image's CRS transform:
// print(image.projection())
Export . image . toAsset ({
image : image ,
description : 'image_export_crstransform' ,
assetId : 'projects/<project-name>/assets/<asset-name>' , // <> modify these
region : region ,
crsTransform : [ 30 , 0 , - 2493045 , 0 , - 30 , 3310005 ],
crs : 'EPSG:5070'
});
// If the export has more than 1e8 pixels, set "maxPixels" higher.
Export . image . toAsset ({
image : image ,
description : 'image_export_maxpixels' ,
assetId : 'projects/<project-name>/assets/<asset-name>' , // <> modify these
region : region ,
scale : 30 ,
crs : 'EPSG:5070' ,
maxPixels : 1e13
});
// The default "pyramidingPolicy" is mean. If data are categorical,
// consider mode.
Export . image . toAsset ({
image : image . select ( 'SR_B5' ),
description : 'image_export_pyramiding' ,
assetId : 'projects/<project-name>/assets/<asset-name>' , // <> modify these
region : region ,
scale : 30 ,
crs : 'EPSG:5070' ,
pyramidingPolicy : { SR_B5 : 'mode' }
});
Python の設定
Python API とインタラクティブな開発での geemap
の使用については、
Python 環境 のページをご覧ください。
import ee
import geemap.core as geemap
Colab(Python)
# A Landsat 8 surface reflectance image.
image = ee . Image (
'LANDSAT/LC08/C02/T1_L2/LC08_044034_20210508'
) . select ([ 'SR_B.' ]) # reflectance bands
# A region of interest.
region = ee . Geometry . BBox ( - 122.24 , 37.13 , - 122.11 , 37.20 )
# Set the export "scale" and "crs" parameters.
task = ee . batch . Export . image . toAsset (
image = image ,
description = 'image_export' ,
assetId = 'projects/<project-name>/assets/<asset-name>' , # <> modify these
region = region ,
scale = 30 ,
crs = 'EPSG:5070'
)
task . start ()
# Use the "crsTransform" export parameter instead of "scale" for more control
# over the output grid. Here, "crsTransform" is set to align the output grid
# with the grid of another dataset. To view an image's CRS transform:
# print(image.projection().getInfo())
task = ee . batch . Export . image . toAsset (
image = image ,
description = 'image_export_crstransform' ,
assetId = 'projects/<project-name>/assets/<asset-name>' , # <> modify these
region = region ,
crsTransform = [ 30 , 0 , - 2493045 , 0 , - 30 , 3310005 ],
crs = 'EPSG:5070'
)
task . start ()
# If the export has more than 1e8 pixels, set "maxPixels" higher.
task = ee . batch . Export . image . toAsset (
image = image ,
description = 'image_export_maxpixels' ,
assetId = 'projects/<project-name>/assets/<asset-name>' , # <> modify these
region = region ,
scale = 30 ,
crs = 'EPSG:5070' ,
maxPixels = 1e13
)
task . start ()
# The default "pyramidingPolicy" is mean. If data are categorical,
# consider mode.
task = ee . batch . Export . image . toAsset (
image = image . select ( 'SR_B5' ),
description = 'image_export_pyramiding' ,
assetId = 'projects/<project-name>/assets/<asset-name>' , # <> modify these
region = region ,
scale = 30 ,
crs = 'EPSG:5070' ,
pyramidingPolicy = { 'SR_B5' : 'mode' }
)
task . start ()
フィードバックを送信
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンス により使用許諾されます。コードサンプルは Apache 2.0 ライセンス により使用許諾されます。詳しくは、Google Developers サイトのポリシー をご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-08 UTC。
ご意見をお聞かせください
[[["わかりやすい","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。"],[[["Creates a batch task to export an Earth Engine image as a raster to an Earth Engine asset."],["You can specify parameters like the region, scale, CRS, and pyramiding policy for the export."],["Tasks are initiated from the Tasks tab and can be monitored for progress and completion."],["For large exports exceeding 1e8 pixels, the `maxPixels` parameter must be increased to prevent errors."],["Exports can be customized to align with specific grids by utilizing the `crsTransform` parameter alongside `crs`."]]],[]]