注: 以下の翻訳の正確性は検証されていません。AIPを利用して英語版の原文から機械的に翻訳されたものです。
Foundry は ファイルレベルのトランスフォーム を介して、ラスターデータの大規模な処理を可能にします。
地理空間データ のさまざまなタイプについて学ぶ。
Foundry で処理できる一般的なラスターファイル形式には以下があります。
Foundry でラスターデータを処理するために、以下のようないくつかの一般的なオープンソースライブラリが適しています。
Copied!1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
from transforms.api import transform, Input, Output, FileSystem import rasterio import tempfile import shutil import math @transform( output=Output("OUTPUT_DATASET"), my_input=Input("INPUT_DATASET"), ) def my_compute_function(output, my_input): def process_file(file_status): # 一時ファイルを使ってファイルをダウンロードし、Imageが正しく開くようにします with tempfile.NamedTemporaryFile() as tmp: with my_input.filesystem().open(file_status.path, 'rb') as f: shutil.copyfileobj(f, tmp) tmp.flush() # rasterioでファイルを開きます with rasterio.open(tmp.name, driver='GTiff') as dataset: """ rasterioのロジックを記入 """ files = list(my_input.filesystem().ls()) map(process_file, files) return