إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.Image.reduceResolution
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تتيح إعادة العرض باستخدام أداة التقليل المحدّدة لدمج جميع وحدات البكسل المدخلة التي تتوافق مع كل وحدة بكسل ناتجة. إذا كان المخفّض يتضمّن إدخالاً واحدًا، سيتم تطبيقه بشكل منفصل على كل نطاق من المجموعة، وإلا يجب أن يتضمّن العدد نفسه من المدخلات التي تحتوي عليها صورة الإدخال.
تحدّد أسماء الإخراج في أداة الاختزال أسماء النطاقات الناتجة: ستستخدم أدوات الاختزال التي تتضمّن مدخلات متعددة أسماء الإخراج مباشرةً، وستحتفظ أدوات الاختزال التي تتضمّن مدخلاً واحدًا ومخرجًا واحدًا بأسماء نطاقات الإدخال، وستضيف أدوات الاختزال التي تتضمّن مدخلاً واحدًا ومخرجات متعددة بادئة إلى اسم الإخراج مع اسم نطاق الإدخال (مثلاً ('10_mean' و'10_stdDev' و'20_mean' و'20_stdDev').
ستكون أوزان إدخال أداة تقليل الدقة هي ناتج ضرب قناع الإدخال في جزء بكسل الإخراج الذي يغطيه بكسل الإدخال.
الاستخدام | المرتجعات |
---|
Image.reduceResolution(reducer, bestEffort, maxPixels) | صورة |
الوسيطة | النوع | التفاصيل |
---|
هذا: image | صورة | الصورة المدخَلة |
reducer | Reducer | الدالة المخفِّضة التي سيتم تطبيقها لاستخدامها في دمج وحدات البكسل |
bestEffort | قيمة منطقية، القيمة التلقائية: false | إذا كان استخدام الإدخال بدقته التلقائية سيتطلّب عددًا كبيرًا جدًا من وحدات البكسل، ابدأ بوحدات بكسل الإدخال المخفَّضة مسبقًا من مستوى هرمي يسمح بإتمام العملية بنجاح. |
maxPixels | عدد صحيح، القيمة التلقائية: 64 | الحد الأقصى لعدد وحدات البكسل التي سيتم دمجها لكل وحدة بكسل ناتجة سيؤدي ضبط هذا الحدّ على قيمة كبيرة جدًا إلى حدوث مشاكل في الذاكرة. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eThis operation reprojects images using a reducer to combine input pixels for each output pixel, applying it per band or across bands based on reducer input.\u003c/p\u003e\n"],["\u003cp\u003eOutput band names are determined by the reducer's output names, sometimes preserving, prefixing, or directly using them.\u003c/p\u003e\n"],["\u003cp\u003eInput pixel weights are calculated using input mask and fractional output pixel coverage.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ereduceResolution\u003c/code\u003e method takes an image, reducer, and optional parameters for handling large operations, returning a reprojected image.\u003c/p\u003e\n"],["\u003cp\u003eOptional parameters \u003ccode\u003ebestEffort\u003c/code\u003e and \u003ccode\u003emaxPixels\u003c/code\u003e control memory usage and allow for processing large images by adjusting input resolution and pixel combination limits.\u003c/p\u003e\n"]]],[],null,["# ee.Image.reduceResolution\n\nEnables reprojection using the given reducer to combine all input pixels corresponding to each output pixel. If the reducer has a single input, it will be applied separately to each band of the collection; otherwise it must have the same number of inputs as the input image has bands.\n\n\u003cbr /\u003e\n\nThe reducer output names determine the names of the output bands: reducers with multiple inputs will use the output names directly, reducers with a single input and single output will preserve the input band names, and reducers with a single input and multiple outputs will prefix the output name with the input band name (e.g., '10_mean', '10_stdDev', '20_mean', '20_stdDev').\n\nReducer input weights will be the product of the input mask and the fraction of the output pixel covered by the input pixel.\n\n| Usage | Returns |\n|-------------------------------------------------------------------|---------|\n| Image.reduceResolution`(reducer, `*bestEffort* `, `*maxPixels*`)` | Image |\n\n| Argument | Type | Details |\n|---------------|-------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `image` | Image | The input image. |\n| `reducer` | Reducer | The reducer to apply to be used for combining pixels. |\n| `bestEffort` | Boolean, default: false | If using the input at its default resolution would require too many pixels, start with already-reduced input pixels from a pyramid level that allows the operation to succeed. |\n| `maxPixels` | Integer, default: 64 | The maximum number of input pixels to combine for each output pixel. Setting this too large will cause out-of-memory problems. |"]]