-
Notifications
You must be signed in to change notification settings - Fork 178
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
Collection: Open intervals for temporal extents #1127
Conversation
@@ -202,12 +202,17 @@ Clients only interested in the overall extent will only need to access the first | |||
It is recommended to only use multiple temporal extents if a union of them would then include a large | |||
uncovered time span (e.g. only having data for the years 2000, 2010 and 2020). | |||
|
|||
Each inner array consists of exactly two dates and times, each in UTC. | |||
Each date and time MUST be formatted according to [RFC 3339, section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6). | |||
Each inner array consists of exactly two elements, either a timestamp or `null`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we use "datetime" most places in the text instead of "timestamp" -- I always think of unix epoch milliseconds when I see timestamp.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With the explanation below it should be clear, right?
Timestamps consist of a date and time in UTC and MUST be formatted according to RFC 3339...
It's a bit strange to write "Datetimes consist of a date and time" below...
Update years in example.
collection-spec/collection-spec.md
Outdated
Open date ranges are supported by setting either the start or the end time to `null`. | ||
Example for data from the beginning of 2019 until now: `[["2009-01-01T00:00:00Z", null]]`. | ||
Open date ranges are supported by setting the start and/or the end time to `null`. | ||
Example for data from the beginning of 2019 until now: `[["2009-01-01T00:00:00Z", null]]`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be:
Example for data from the beginning of 2019 until now:
[["2019-01-01T00:00:00Z", null]]``
Related Issue(s): #1125
Proposed Changes:
PR Checklist:
or a CHANGELOG entry is not required.
and I have opened issue/PR #XXX to track the change.