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

Replace "time" references with self._dim in class TemporalAccessor #312

Merged
merged 1 commit into from
Aug 15, 2022

Conversation

tomvothecoder
Copy link
Collaborator

Description

This PR updates incorrect static references to "time" as the name of the time dimension with the dynamic self._dim dimension name.

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • My changes generate no new warnings
  • Any dependent changes have been merged and published in downstream modules

If applicable:

  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass with my changes (locally and CI/CD build)
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • I have noted that this is a breaking change for a major release (fix or feature that would cause existing functionality to not work as expected)

@codecov-commenter
Copy link

Codecov Report

Merging #312 (d60649b) into main (4c51879) will not change coverage.
The diff coverage is 100.00%.

@@            Coverage Diff            @@
##              main      #312   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           14        14           
  Lines         1170      1170           
=========================================
  Hits          1170      1170           
Impacted Files Coverage Δ
xcdat/temporal.py 100.00% <100.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

@tomvothecoder
Copy link
Collaborator Author

tomvothecoder commented Aug 15, 2022

Related #285, we might need to update how we get the dimension name for a time axis (self._dim) in TemporalAccessor().

Instead of getting the time dimension name from the dataset (which can have multiple time axis):

self._dim = get_axis_coord(self._dataset, "T").name

We can get just the single time axis for the data variable that is being temporally averaged:
self._dim = get_axis_coord(self._data_var, "T").name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: bug Inconsistencies or issues which will cause an issue or problem for users or implementors.
Projects
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[Bug]: Replace static references to "time" for the time dimension name with self._dim in TemporalAccessor
3 participants