ee.ImageCollection.copyProperties
Copies metadata properties from one element to another.
Usage | Returns |
---|
ImageCollection.copyProperties(source, properties, exclude) | Element |
Argument | Type | Details |
---|
this: destination | Element, default: null | The object whose properties to override. |
source | Element, default: null | The object from which to copy the properties. |
properties | List, default: null | The properties to copy. If omitted, all ordinary (i.e. non-system) properties are copied. |
exclude | List, default: null | The list of properties to exclude when copying all properties. Must not be specified if properties is. |
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 2024-07-13 UTC.
[null,null,["Last updated 2024-07-13 UTC."],[[["Copies metadata properties from a source element to a destination element within an ImageCollection."],["Allows for selection of specific properties to copy or exclude using the `properties` and `exclude` parameters, respectively."],["If `properties` and `exclude` are not specified, all non-system properties are copied."],["Returns the modified destination element."]]],["The core functionality copies metadata properties from a source element to a destination element. Users can specify which properties to copy through a list, or copy all ordinary properties. Alternatively, users can specify a list of properties to exclude during the copying process, but only when copying all properties. The destination element is modified based on the source element and user-specified properties or exclusions. This operation returns the modified destination element.\n"]]