
- זמינות מערך הנתונים
- 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: עונה אופציונלית של גידולי דגנים באביב, מוגדרת רק באזורים מסוימים של AEZ
- tc-maize-main: עונת הגידול העיקרית של תירס שמוגדרת באזור אקולוגי
- tc-maize-second: optional second maize season, only defined in certain 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
עורך הקוד (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)