
- 데이터 세트 사용 가능 기간
- 2020-01-01T00:00:00Z–2021-12-31T23:59:59Z
- 데이터 세트 제공업체
- ESA WorldCereal Consortium
- 태그
설명
유럽우주기구 (ESA) WorldCereal 10m 2021 제품군은 전 세계 규모의 연간 및 계절별 작물 지도와 관련 신뢰도로 구성됩니다. 이러한 데이터는 ESA-WorldCereal 프로젝트의 일부로 생성되었습니다. 이러한 제품의 콘텐츠와 이를 생성하는 데 사용된 방법론에 관한 자세한 내용은 [1]에 설명되어 있습니다.
이 컬렉션에는 각 제품에 대해 최대 106개의 농업 생태 지역 (AEZ) 이미지가 포함되어 있으며, 이 이미지는 모두 자체 지역별 계절성을 고려하여 처리되었으며 독립적인 제품으로 간주해야 합니다. 이러한 시즌은 아래 목록에 설명되어 있으며 프로젝트의 일환으로 [2] 에서 개발되었습니다. WorldCereal에서 설명하는 곡물에는 Triticeae 부족에 속하는 밀, 보리, 호밀이 포함됩니다.
WorldCereal 시즌 설명:
- tc-annual: 마지막으로 고려된 성장 시즌이 끝날 때까지 AEZ에서 정의되는 1년 주기
- tc-wintercereals: AEZ에 정의된 주요 곡물 시즌
- tc-springcereals: 선택적 봄 곡물 시즌, 특정 AEZ에서만 정의됨
- tc-maize-main: AEZ에 정의된 주요 옥수수 시즌
- tc-maize-second: 선택적 두 번째 옥수수 시즌, 특정 AEZ에서만 정의됨
이 컬렉션에서 사용할 수 있는 제품은 다음과 같습니다.
- temporarycrops
- Maize
- wintercereals
- springcereals
- 관개
각 제품 (이미지)에는 이진 분류 (0 또는 100)와 신뢰도(0~100) 범위가 있습니다. 관개 제품을 사용할 수 없는 AEZ는 열 Landsat 데이터를 사용할 수 없어 처리되지 않았습니다.
컬렉션은 다음 이미지 속성 중 하나 이상을 사용하여 필터링해야 합니다.
- 이미지가 속한 AEZ의 ID를 보유하는 aez_id
- 제품으로, 이미지의 WorldCereal 제품 이름을 설명합니다.
- 이미지가 유효한 시즌을 설명합니다.
참조:
WorldCereal 데이터 세트:
대역
픽셀 크기
10미터
대역
이름 | 최소 | 최대 | 픽셀 크기 | 설명 |
---|---|---|---|---|
classification |
0 | 100 | 미터 | 분류: 0 또는 100 |
confidence |
0 | 100 | 미터 | 신뢰도(0~100) |
이미지 속성
이미지 속성
이름 | 유형 | 설명 |
---|---|---|
aez_id | INT | 제품이 속한 농업 생태 지역 (AEZ)의 ID입니다. |
제품 | 문자열 | WorldCereal 제품 이름입니다. |
season | 문자열 | 제품이 유효한 시즌입니다. |
이용약관
이용약관
인용
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. 과학 데이터 토론 [preprint], doi:10.5194/essd-2023-184, in review, 2023.,
DOI
Earth Engine으로 탐색하기
코드 편집기(JavaScript)
var dataset = ee.ImageCollection('ESA/WorldCereal/2021/MODELS/v100') // Set satellite background Map.setOptions('SATELLITE'); // Typically we'd want to mask the "other" class (value 0) // in the images function mask_other(img) { return img.updateMask(img.neq(0)) } // Apply the mask_other function to the collection dataset = dataset.map(mask_other); /*-------------------------------------------------- Basic example for a global mosaic of temporary crops --------------------------------------------------*/ // Get a global mosaic for all agro-ecological zone (AEZ) of temporary crops var temporarycrops = dataset.filter('product == "temporarycrops"').mosaic(); // Visualization specifics var visualization_class = { bands: ["classification"], max: 100, palette: ["ff0000"] }; var visualization_conf = { bands: ['confidence'], min: [0], max: [100], palette: ['be0000','fff816','069711'], }; // Show global classification mosaic Map.centerObject(temporarycrops); Map.addLayer(temporarycrops, visualization_class, 'Temporary crops'); // By default don't show confidence layer Map.addLayer( temporarycrops, visualization_conf, 'Temporary crops confidence', false); /*-------------------------------------------------- Advanced example for tc-maize-main season products in a specific AEZ --------------------------------------------------*/ // Filter on AEZ and season var tc_maize_main_46172 = dataset.filter( ee.Filter.eq('season', 'tc-maize-main') ).filter(ee.Filter.eq('aez_id', 46172)); // Get the different products var maize = tc_maize_main_46172.filter('product == "maize"'); var irrigation = tc_maize_main_46172.filter('product == "irrigation"'); // Visualization specifics var visualization_maize = { bands: ["classification"], max: 100, palette: ["#ebc334"] }; var visualization_irrigation = { bands: ["classification"], max: 100, palette: ["#2d79eb"] }; // Show maize and irrigation classification Map.addLayer(maize, visualization_maize, 'Maize'); Map.addLayer(irrigation, visualization_irrigation, 'Active irrigation'); // Uncomment the line below to zoom to a region // where maize, other crops and active irrigation are visible // Map.setCenter(-0.9911, 43.5017, 12)