ב-Earth Engine הוספנו רמות מכסת שימוש לא מסחרי כדי להגן על משאבי מחשוב משותפים ולספק ביצועים מהימנים לכולם. בפרויקטים לא מסחריים נעשה שימוש במסלול Community כברירת מחדל, אבל אפשר לשנות את המסלול של הפרויקט בכל שלב.
Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
ee.ImageCollection.combine
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
יוצרת אוסף חדש שהוא עותק של התמונות ב-primary, ומוסיפה את כל הפסים מהתמונה ב-secondary עם מזהה תואם. אם לא נמצאו מזהים תואמים, האוסף שיתקבל יהיה ריק. זה שווה ל-inner join על מזהה עם מיזוג של הטווחים של התוצאה.
חשוב לזכור שהאלגוריתם הזה מניח שלזוג תואם של נתוני קלט יש אותה טביעת רגל ואותם מטא-נתונים.
שימוש
החזרות
ImageCollection.combine(secondary, overwrite)
ImageCollection
ארגומנט
סוג
פרטים
זה: primary
ImageCollection
האוסף הראשי שאליו רוצים להצטרף.
secondary
ImageCollection
האוסף המשני שאליו רוצים להצטרף.
overwrite
ערך בוליאני, ברירת מחדל: false
אם הערך הוא True, פסים עם אותו שם יוחלפו. אם הערך הוא false, המערכת תשנה את השם של ערוצים עם אותו שם.
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 2026-04-20 (שעון UTC)."],[],["The function combines two `ImageCollections` (`primary` and `secondary`) by performing an inner join based on matching IDs. It copies images from the `primary` collection and adds bands from the `secondary` collection with the corresponding ID. If no matching ID is found, the resulting collection is empty. Band names that are the same can either be renamed or overwritten based on the `overwrite` flag. The function returns a new `ImageCollection`.\n"]]