הודעה: כל הפרויקטים הלא מסחריים שנרשמו לשימוש ב-Earth Engine לפני 15 באפריל 2025 חייבים לעבור אימות של הזכאות לשימוש לא מסחרי כדי לשמור על הגישה ל-Earth Engine.
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
Creates a Reducer that runs two reducers in parallel. הפלט של ה-reducer המשולב יהיה הפלט של reducer1 ואחריו הפלט של reducer2, כאשר לשמות הפלט של reducer2 יתווסף הקידומת של המחרוזת שצוינה.
אם sharedInputs הוא true, למצמצמים חייב להיות אותו מספר של קלטים, והקלטים של המצמצם המשולב יהיו זהים לקלטים של המצמצמים. אם sharedInputs הוא false, הקלטים של המצמצם המשולב יהיו הקלטים של reducer1 ואחריהם הקלטים של reducer2.
[[["התוכן קל להבנה","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"]],["עדכון אחרון: 2025-07-26 (שעון UTC)."],[[["Creates a combined Reducer by running two reducers (reducer1 and reducer2) concurrently, with the outputs of reducer1 preceding those of reducer2."],["Outputs of reducer2 are prefixed with a specified string to differentiate them from reducer1's outputs."],["Input handling for the combined reducer is configurable: if `sharedInputs` is true, both reducers utilize the same inputs; otherwise, the combined reducer's inputs are those of reducer1 followed by those of reducer2."],["It can be invoked using `Reducer.combine()` method, accepting reducer2, output prefix, and shared input preference as arguments."]]],[]]