You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The method add_source_dataset() supports auto_inherit_properties option, which can pass the properties from source dataset to metadata. When has more than one source datasets, the same property values (e.g. platform) from different datasets will be replaced by each other.
E.g.
source_dataset_1: "platform": "landsat-8"
source_dataset_2: "platform": "landsat-7"
Expected result:
output_dataset: "platform": "landsat-8;landsat-7"
or
output_dataset: "platform": "landsat-8,landsat-7"
Actual result:
output_dataset: "platform": "landsat-7"
Cheers
Sai
The text was updated successfully, but these errors were encountered:
Hi, @jeremyh ,
How are you.
The method add_source_dataset() supports auto_inherit_properties option, which can pass the properties from source dataset to metadata. When has more than one source datasets, the same property values (e.g. platform) from different datasets will be replaced by each other.
E.g.
Expected result:
or
Actual result:
Cheers
Sai
The text was updated successfully, but these errors were encountered: