-
Notifications
You must be signed in to change notification settings - Fork 1
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
Validate append coordinates #52
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #52 +/- ##
=======================================
Coverage 99.82% 99.83%
=======================================
Files 25 25
Lines 1149 1208 +59
=======================================
+ Hits 1147 1206 +59
Misses 2 2 ☔ View full report in Codecov by Sentry. |
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 wrote you some comments.
Co-authored-by: clarasb <[email protected]>
A new configuration setting
append_step
can be used to validate the step sizes between the labels of a coordinate variable associated with the append dimension. Its value can be a number for numerical labels or a time delta value of the form8h
(8 hours) or2D
(two days) for date/time labels. The value can also be negative.The configuration setting
append_step
can take the special values"+"
and"-"
which are used to verify that the labels are monotonically increasing or decreasing.Closes #20
Closes #21