ee.ImageCollection.remap
Remaps the value of a specific property in a collection. Takes two parallel lists and maps values found in one to values in the other. Any element with a value that is not specified in the first list is dropped from the output collection.
Usage | Returns | ImageCollection.remap(lookupIn, lookupOut, columnName) | FeatureCollection |
Argument | Type | Details | this: collection | FeatureCollection | The collection to be modified. |
lookupIn | List | The input mapping values. Restricted to strings and integers. |
lookupOut | List | The output mapping values. Must be the same size as lookupIn. |
columnName | String | The name of the property to remap. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["Remaps values within a specified property of a FeatureCollection using two corresponding lists, `lookupIn` and `lookupOut`, for input and output values."],["Any feature with a property value not found in the `lookupIn` list is excluded from the resulting FeatureCollection."],["Both `lookupIn` and `lookupOut` lists must have the same length, and `lookupIn` can contain only string or integer values."],["This operation effectively transforms the designated property in the input FeatureCollection based on the provided mapping."]]],[]]