Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Item properties created and updated do not align with the STAC specification #93

Open
pjhartzell opened this issue Jan 24, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@pjhartzell
Copy link
Contributor

created and updated Item property fields are populated with values that appear to be a data processing date:

        created = datetime.datetime.fromisoformat(
            metadata.find_text_or_throw(
                "ECSDataGranule/ProductionDateTime", missing_element("created")
            )
        )
        updated = datetime.datetime.fromisoformat(
            metadata.find_text_or_throw("LastUpdate", missing_element("updated"))
        )

Per the STAC spec, these datetimes should reflect when the Item was created and updated, not when the data was created/processed/updated.

I think the created and updated fields need to be removed from the Items.

@gadomski gadomski added the bug Something isn't working label Jan 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants