[[["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 2023-10-06 UTC."],[[["Generates a distance kernel based on the Chebyshev distance, which calculates the greatest distance along any dimension between two pixels."],["The kernel can be customized using parameters such as radius, units (pixels or meters), normalization, and magnitude scaling."],["When applied, the kernel assigns weights to neighboring pixels based on their Chebyshev distance from the central pixel, creating a matrix of weights."],["The resulting weights matrix can be used in various image processing operations, such as smoothing or neighborhood analysis."]]],["A Chebyshev distance kernel is generated using `ee.Kernel.chebyshev()` with a specified `radius`. The measurement system can be set to 'pixels' or 'meters' via the `units` argument. The kernel values can be normalized to sum to 1 using `normalize`, and scaled with `magnitude`. The output is a kernel representing the Chebyshev distance, where the greatest distance along any dimension defines the value, and it is presented as a matrix.\n"]]