- זמינות קבוצת הנתונים
- 2020-01-01T00:00:00Z–2021-12-31T23:59:59Z
- יוצר מערך הנתונים
- ESA WorldCereal Consortium
- תגים
תיאור
חבילת המוצרים WorldCereal 10 m 2021 של סוכנות החלל האירופית (ESA) כוללת מפות שנתיות ועונתיות של גידולים בקנה מידה גלובלי, וכן את רמת הביטחון שקשורה אליהן. הם נוצרו כחלק מפרויקט ESA-WorldCereal. מידע נוסף על התוכן של המוצרים האלה ועל המתודולוגיה שמשמשת ליצירתם מפורט במאמר [1].
האוסף הזה מכיל עד 106 תמונות של אזורים אגרו-אקולוגיים (AEZ) לכל מוצר, שכולן עברו עיבוד בהתאם לעונתיות האזורית שלהן, ויש להתייחס אליהן כמוצרים עצמאיים. העונות האלה מתוארות ברשימה שלמטה, והן פותחו ב[2] כחלק מהפרויקט. שימו לב: דגנים כפי שהם מתוארים ב-WorldCereal כוללים חיטה, שעורה ושיפון, ששייכים לשבט Triticeae.
תיאור העונות של WorldCereal:
- tc-annual: מחזור של שנה אחת שמוגדר ב-AEZ עד סוף עונת הגידול האחרונה שנלקחת בחשבון
- tc-wintercereals: עונת הדגנים העיקרית שמוגדרת באזור אקולוגי
- tc-springcereals: optional springcereals season, only defined in certain AEZ
- tc-maize-main: עונת הגידול העיקרית של תירס שמוגדרת באזור אגרו-אקולוגי
- tc-maize-second: עונת תירס שנייה אופציונלית, מוגדרת רק באזורים מסוימים של AEZ
המוצרים שזמינים באוסף הזה הם:
- temporarycrops
- Maize
- wintercereals
- springcereals
- השקיה
לכל מוצר (תמונה) יש סיווג בינארי (0 או 100) ורמת מהימנות (0-100). שימו לב: אזורים אקולוגיים שאין בהם מוצר השקיה זמין לא עברו עיבוד בגלל חוסר הזמינות של נתוני Landsat תרמיים.
צריך לסנן את הקולקציה באמצעות מאפיין תמונה אחד או יותר מהמאפיינים הבאים:
- aez_id, שמכיל את המזהה של אזור הזמינות שאליו התמונה שייכת
- product, describing the WorldCereal product name of the image
- season, שמתאר את העונה שבה התמונה תקפה.
מקורות מידע:
מערכי נתונים של WorldCereal:
תחום תדרים
גודל הפיקסל
10 מטרים
רצועות
| שם | מינימום | מקסימום | גודל הפיקסל | תיאור |
|---|---|---|---|---|
classification |
0 | 100 | מטרים | סיווג: 0 או 100 |
confidence |
0 | 100 | מטרים | רמת מהימנות, 0 עד 100 |
מאפייני תמונה
מאפייני תמונה
| שם | סוג | תיאור |
|---|---|---|
| aez_id | INT | המזהה של האזור האגרו-אקולוגי (AEZ) שאליו שייך המוצר. |
| product | מחרוזת | שם המוצר של WorldCereal. |
| season | מחרוזת | העונה שבה המוצר תקף. |
תנאים והגבלות
תנאים והגבלות
ציטוטים ביבליוגרפיים
Van Tricht, K., Degerickx, J., Gilliams, S., Zanaga, D., Battude, M., Grosu, A., Brombacher, J., Lesiv, M., Bayas, J. ג. L., Karanam, S., Fritz, S., Becker-Reshef, I., Franch, B., Mollà-Bononad, B., Boogaard, H., Pratihast, A. K., and Szantoi, Z.: WorldCereal: מערכת דינמית בקוד פתוח למיפוי עונתי של גידולים והשקיה בקנה מידה גלובלי, Earth Syst. Sci. Data Discuss. [preprint], doi:10.5194/essd-2023-184, in review, 2023.,
מזהי DOI
סיור עם פלטפורמת Earth Engine
Code Editor (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)