ESA WorldCereal AEZ v100

ESA/WorldCereal/AEZ/v100
データセットの可用性
2020-01-01T00:00:00Z–2022-01-01T00:00:00Z
データセット プロバイダ
Earth Engine スニペット
FeatureCollection
ee.FeatureCollection("ESA/WorldCereal/AEZ/v100")
FeatureView
ui.Map.FeatureViewLayer("ESA/WorldCereal/AEZ/v100_FeatureView")
タグ
農業 境界 作物 esa グローバル テーブル

説明

欧州宇宙機関(ESA)の WorldCereal 分類システムは、特定の栽培期間の終了後 1 か月以内のプロダクト生成を目標としています。世界各地の生育期は動的に変化するため、プロジェクト [1] で作成された世界の作物カレンダーに基づいて、世界の農業生態ゾーン(AEZ)へのグローバルな階層化が行われました。このデータセットのフィーチャー コレクションには、WorldCereal プロダクトが生成された 106 個の AEZ が含まれています。各 AEZ には独自の作付カレンダーがあり、季節の始まり(SOS)と季節の終わり(EOS)に基づいて説明されています。SOS と EOS は年間通算日(DOY)で指定されます。AEZ の階層化と、その後の WorldCereal プロダクトの生成については、[2] で詳しく説明しています。

AEZ プロパティ:

  • aez_id: 各 AEZ の一意の ID。WorldCereal プロダクトはこの ID に基づいてフィルタできます
  • aez_groupid: グループ ID は、作付カレンダーの類似性に基づいて、複数の固有の AEZ をグループに統合します。
  • tc-annual_sos: tc-annual シーズンの SOS(DOY)
  • tc-annual_eos: tc-annual シーズンの EOS(DOY)
  • tc-wintercereals_sos: tc-wintercereals シーズンの SOS(DOY)
  • tc-wintercereals_eos: tc-wintercereals シーズンの EOS(DOY)
  • tc-springcereals_sos: tc-springcereals シーズンの SOS(DOY)
  • tc-springcereals_eos: tc-springcereals シーズンの終了日(DOY)
  • tc-maize-main_sos: tc-maize-main シーズンの SOS(DOY)
  • tc-maize-main_eos: tc-maize-main シーズンの EOS(DOY)
  • tc-maize-second_sos: tc-maize-second シーズンの SOS(DOY)
  • tc-maize-second_eos: tc-maize-second シーズンの EOS(DOY)

SOS と EOS の欠損値は、特定の AEZ にそれぞれの生育期がないことを示します。

関連資料:

WorldCereal データセット:

テーブル スキーマ

テーブル スキーマ

名前 説明
aez_id INT

AEZ の一意の ID。

aez_groupid INT

グループ ID は、作物のカレンダーの類似性に基づいて、複数の固有の AEZ をグループにまとめます。

tc-annual_sos INT

tc-annual シーズンの SOS(DOY)。

tc-annual_eos INT

tc-annual シーズンの EOS(DOY)。

tc-wintercereals_sos INT

tc-wintercereals シーズンの SOS(DOY)。

tc-wintercereals_eos INT

tc-wintercereals シーズンの EOS(DOY)。

tc-springcereals_sos INT

tc-springcereals シーズンの SOS(DOY)。

tc-springcereals_eos INT

tc-springcereals シーズンの EOS(DOY)。

tc-maize-main_sos INT

tc-maize-main シーズンの SOS(DOY)。

tc-maize-main_eos INT

tc-maize-main シーズンの EOS(DOY)。

tc-maize-second_sos INT

tc-maize-second シーズンの SOS(DOY)。

tc-maize-second_eos INT

tc-maize-second シーズンの EOS(DOY)。

利用規約

利用規約

CC-BY-4.0

引用

引用:
  • Van Tricht, K.、Degerickx, J.、Gilliams, S.、Zanaga, D.、Battude, M.、Grosu, A.、Brombacher, J.、Lesiv, M.、Bayas, J. C. L., Karanam, S.、Fritz, S., Becker-Reshef, I., Franch, B.、Mollà-Bononad, B.、Boogaard, H., Pratihast、A. K.、Szantoi, Z.: WorldCereal: 地球規模の季節的な再現可能な作物と灌漑のマッピングのための動的なオープンソース システム、Earth Syst. Sci. Data Discuss. [preprint], doi:10.5194/essd-2023-184, in review, 2023.,

DOI

Earth Engine で探索する

コードエディタ(JavaScript)

var aez = ee.FeatureCollection('ESA/WorldCereal/AEZ/v100');

// Find the AEZs with multiple growing seasons for maize and cereal.
var twoMaizeAez =
    aez.filter(ee.Filter.notNull(['tc-maize-main_eos', 'tc-maize-second_eos']));
var twoCerealAez = aez.filter(
    ee.Filter.notNull(['tc-wintercereals_eos', 'tc-springcereals_eos']));

Map.addLayer(
    twoMaizeAez.draw('ff0000', 1, 2), {}, 'AEZ with two maize seasons');
Map.addLayer(
    twoCerealAez.draw('0000ff', 1, 2), {}, 'AEZ with two cereal seasons');
コードエディタで開く

FeatureView として可視化する

FeatureView は、FeatureCollection の高速表示専用の表現です。詳細については、 FeatureView ドキュメントをご覧ください。

コードエディタ(JavaScript)

var aezLayer = ui.Map.FeatureViewLayer('ESA/WorldCereal/AEZ/v100_FeatureView');
var visParams = {
  opacity: 0.5,
  lineWidth: 5,
  polygonFillColor: 'red'
};

aezLayer.setVisParams(visParams);
aezLayer.setName('Agro-Ecological Zones');

Map.setCenter(15.5, 35.5, 3);
Map.add(aezLayer);
コードエディタで開く