[[["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-07-13 UTC."],[[["The `Image.translate()` method shifts an image by a specified distance in the x and y directions."],["Translation can be performed using either pixel or meter units, with meters being the default."],["Users can optionally define the projection for the translation, which defaults to the projection of the image's first band."]]],["The core function described is `Image.translate(x, y, units, proj)`, which shifts an image spatially. It takes `x` and `y` values (floats) to define the translation amount in each direction. The `units` parameter specifies whether `x` and `y` are in 'meters' or 'pixels' (default is 'meters'). An optional `proj` argument can be used to define the translation projection, defaulting to the first band's projection. The function returns a translated `Image`.\n"]]