unity-sds / unity-py

Apache License 2.0
2 stars 4 forks source link

Add item stac json file to list of assets when calling the "to_stac" method #54

Open mike-gangl opened 11 months ago

mike-gangl commented 11 months ago

In order for the stac file to be staged out, it must be added as an asset to the item.json entry.

Currently this has to be done by the application package creator:

    # the future metadata file needs to be added to the STAC as well
    # will eventually be moved into the to_stac() function
    dataset.add_data_file(DataFile("metadata", output_path + '/' + path.name +'.json' ))

this is confusing because we're creating an asset for a file that does not exist, but will once we publish the STAC file. This should be handled by the unity stac libraries.