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

ADD: map_over_sweeps accessor and decorator #203

Merged
merged 33 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
5f0babf
ENH: New function - Apply to sweeps
syedhamidali Aug 31, 2024
f3c28b0
ADD: Added new function for volume operation
syedhamidali Aug 31, 2024
be9111f
ADD: Test apply_to_sweeps
syedhamidali Aug 31, 2024
88ab142
FIX: test_util apply_to_sweeps
syedhamidali Aug 31, 2024
22f4331
FIX: Pytest fix for apply_to_sweeps
syedhamidali Aug 31, 2024
1d717ff
ADD: Added accessor apply
syedhamidali Aug 31, 2024
bf4460b
FIX: Implemented Suggestions raised by Kai
syedhamidali Aug 31, 2024
d11fb81
FIX: DataTree node issue
syedhamidali Sep 1, 2024
3733538
MNT: update history
syedhamidali Sep 1, 2024
71a084f
ADD: apply_to_volume alias for apply_to_sweeps + fix apply_to_sweeps
syedhamidali Sep 1, 2024
c910665
FIX: fix apply_to_volume
syedhamidali Sep 1, 2024
820e399
ADD: added an example in the docstring of function
syedhamidali Sep 1, 2024
0ba03ff
FIX: added an example in the docstring of function apply
syedhamidali Sep 1, 2024
fe725d6
Merge branch 'main' into sweeps_accessor
syedhamidali Sep 19, 2024
98411d1
FIX: util tests and update history
syedhamidali Sep 19, 2024
b9f7680
Merge branch 'main' into sweeps_accessor
syedhamidali Sep 20, 2024
2f8d73f
MNT: Drop unrelated history
syedhamidali Sep 23, 2024
2597498
ADD: Apply Accessor Demo Notebook
syedhamidali Sep 23, 2024
84ad266
FIX: Linting issues
syedhamidali Sep 23, 2024
c75cb73
ADD: Added notebook to the docs/usage.md
syedhamidali Sep 24, 2024
4c38116
FIX: Fix markdown cell in apply accessor nb
syedhamidali Sep 24, 2024
eb3d560
FIX: Fix markdown cell in apply accessor nb trial 2
syedhamidali Sep 24, 2024
4fd8554
FIX: Fix markdown cell in apply accessor nb trial 3
syedhamidali Sep 24, 2024
488f1b0
FIX: Fix markdown cell in apply accessor nb trial 4
syedhamidali Sep 24, 2024
c0e62b3
Resolve Conflicts
syedhamidali Sep 30, 2024
393d0ea
Merge branch 'main' into sweeps_accessor
syedhamidali Sep 30, 2024
fb35f3e
Merge branch 'main' into sweeps_accessor
kmuehlbauer Oct 16, 2024
3d46dbe
ADD: map_over_sweeps function
syedhamidali Oct 17, 2024
a5f2154
Merge branch 'main' into sweeps_accessor
kmuehlbauer Oct 28, 2024
9df87d4
xarray has removed the decorator for map_over_datasets, reimplement f…
kmuehlbauer Oct 28, 2024
e4eefed
xarray has removed the decorator for map_over_datasets, reimplement f…
kmuehlbauer Oct 28, 2024
d8c5cb5
update history.md
kmuehlbauer Oct 28, 2024
d5a1c18
update Mapping_Sweeps.ipynb
kmuehlbauer Oct 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
This is the first version which uses datatree directly from xarray. Thus, xarray is pinned to version >= 2024.10.0.

* Use DataTree from xarray and add xarray nightly run ({pull}`213`, {pull}`214`, {pull}`215`, {pull}`218`) by [@kmuehlbauer](https://github.com/kmuehlbauer).
* ADD: Added new accessor `map_over_sweeps` for volume operations on DataTrees and a matching decorator ({pull}`203`) by [@syedhamidali](https://github.com/syedhamidali).


## 0.7.0 (2024-10-26)

Expand All @@ -25,7 +27,7 @@ This is the last version which uses datatree from xarray-contrib/datatree. Thus,

## 0.6.3 (2024-08-13)

FIX: use rstart in meter for ODIM_H5/V2_4 ({issue}`196`) by [@kmuehlbauer](https://github.com/kmuehlbauer), ({pull}`197`) by [@kmuehlbauer](https://github.com/kmuehlbauer).
* FIX: use rstart in meter for ODIM_H5/V2_4 ({issue}`196`) by [@kmuehlbauer](https://github.com/kmuehlbauer), ({pull}`197`) by [@kmuehlbauer](https://github.com/kmuehlbauer).

## 0.6.2 (2024-08-12)

Expand Down
1 change: 1 addition & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ datamodel
importers
exporters
notebooks/Accessors
notebooks/Mapping_Sweeps
```

```{toctree}
Expand Down
Loading