إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.Reducer.fixed2DHistogram
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تنشئ هذه الدالة أداة تقليل تحسب مدرجًا تكراريًا ثنائي الأبعاد للمدخلات باستخدام عدد ثابت من الحاويات ذات العرض الثابت. يتم تجاهل القيم خارج النطاق [min, max) على أيّ من المحورَين. الناتج هو مصفوفة ثنائية الأبعاد من الأعداد، ومصفوفتان أحاديتان الأبعاد من الحواف السفلية للحزمة لكل من المحور السيني والمحور الصادي. هذه الدالة المخفِّضة مناسبة للاستخدام لكل بكسل، ولكنها دائمًا غير مرجّحة. الحد الأقصى لعدد أي مجموعة هو 2^31 - 1.
الاستخدام | المرتجعات |
---|
ee.Reducer.fixed2DHistogram(xMin, xMax, xSteps, yMin, yMax, ySteps) | Reducer |
الوسيطة | النوع | التفاصيل |
---|
xMin | عدد عائم | الحد الأدنى (شامل) للمجموعة الأولى على المحور "س". |
xMax | عدد عائم | الحدّ الأعلى (الحصري) للمجموعة الأخيرة على المحور X. |
xSteps | عدد صحيح | عدد المجموعات التي سيتم استخدامها على المحور X. |
yMin | عدد عائم | الحد الأدنى (شامل) للمجموعة الأولى على المحور Y. |
yMax | عدد عائم | الحدّ الأعلى (الحصري) للمجموعة الأخيرة على المحور Y. |
ySteps | عدد صحيح | عدد المجموعات التي سيتم استخدامها على المحور Y. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eCreates a 2D histogram with a fixed number of bins for analyzing data distribution across two dimensions.\u003c/p\u003e\n"],["\u003cp\u003eIgnores values outside the defined range on either axis and limits the maximum count per bucket to 2^31 - 1.\u003c/p\u003e\n"],["\u003cp\u003eOutputs a 2D array of counts, along with 1D arrays for the x and y axis bucket boundaries.\u003c/p\u003e\n"],["\u003cp\u003eSuitable for per-pixel use but doesn't incorporate weighting.\u003c/p\u003e\n"],["\u003cp\u003eRequires specifying the range and number of bins for both x and y axes using the \u003ccode\u003eee.Reducer.fixed2DHistogram\u003c/code\u003e function.\u003c/p\u003e\n"]]],[],null,["# ee.Reducer.fixed2DHistogram\n\nCreates a reducer that will compute a 2D histogram of the inputs using a fixed number of fixed-width bins. Values outside of the \\[min, max) range on either axis are ignored. The output is a 2D array of counts, and 2 1-D arrays of bucket lower edges for the xAxis and the yAxis. This reducer is suitable for use per-pixel, however it is always unweighted. The maximum count for any bucket is 2\\^31 - 1.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------------------------|---------|\n| `ee.Reducer.fixed2DHistogram(xMin, xMax, xSteps, yMin, yMax, ySteps)` | Reducer |\n\n| Argument | Type | Details |\n|----------|---------|----------------------------------------------------------------|\n| `xMin` | Float | The lower (inclusive) bound of the first bucket on the X axis. |\n| `xMax` | Float | The upper (exclusive) bound of the last bucket on the X axis. |\n| `xSteps` | Integer | The number of buckets to use on the X axis. |\n| `yMin` | Float | The lower (inclusive) bound of the first bucket on the Y axis. |\n| `yMax` | Float | The upper (exclusive) bound of the last bucket on the Y axis. |\n| `ySteps` | Integer | The number of buckets to use on the Y axis. |"]]