Stay organized with collections
Save and categorize content based on your preferences.
Creates 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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-19 UTC."],[[["Creates a 2D histogram with a fixed number of bins for analyzing data distribution across two dimensions."],["Ignores values outside the defined range on either axis and limits the maximum count per bucket to 2^31 - 1."],["Outputs a 2D array of counts, along with 1D arrays for the x and y axis bucket boundaries."],["Suitable for per-pixel use but doesn't incorporate weighting."],["Requires specifying the range and number of bins for both x and y axes using the `ee.Reducer.fixed2DHistogram` function."]]],[]]