How to use summaries and datetimes. #1156
-
Hi, we are looking at adding some timestamps to our collection.json that indicate the dates that the collection was first created and the date that the collection was last updated. We're interested in timestamps for the asset files and also the metadata files. We looked at the timestamps extension which looks like what we want but the examples are only for items. Can someone help with how we should implement this at the collection level? It sounds like we should summarise (min and max) the item values. But not sure how to do that and differentiate between the different types of timestamps. Here's the timestamps we're interested from an item.json example. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @billgeo, summarizing Item Properties works as you have described it. You could add something like the following to the Collection:
Note: this describes/summarizes the Item creation/update timestamps. To add the creation/update time of the collection metadata, just add the To give specific values for Item Assets there's the Item Asset Definition extension: HTH! |
Beta Was this translation helpful? Give feedback.
Hi @billgeo,
summarizing Item Properties works as you have described it. You could add something like the following to the Collection:
Note: this describes/summarizes the Item creation/update timestamps. To add the creation/update time of the collection metadata, just add the
updated
/created
fields to the Collection (top-level).To give specific values for Item Assets there's the Item Asset Definition extension:
https://github.com/stac-extensions/item-assets
Unfortunately, it doesn…