Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
75d832e
Neighborhood filter
ahijevyc Sep 7, 2024
b850bc4
Merge remote-tracking branch 'upstream/main' into neighborhood_filter
ahijevyc Sep 7, 2024
8ec0193
ruff recommendations
ahijevyc Sep 9, 2024
5605949
added Callable to Type checking
ahijevyc Sep 9, 2024
70ba961
Merge branch 'main' into ahijevyc/neighborhood_filter
ahijevyc Sep 9, 2024
0c7bc1e
np.vstack().T faster than np.c
ahijevyc Sep 9, 2024
d6d8a33
Fix some comments
ahijevyc Sep 9, 2024
47b9cda
Merge branch 'main' into ahijevyc/neighborhood_filter
ahijevyc Sep 17, 2024
f75db0d
Merge branch 'main' into ahijevyc/neighborhood_filter
aaronzedwick Oct 1, 2024
bddd2fa
Merge branch 'main' into ahijevyc/neighborhood_filter
ahijevyc Oct 29, 2024
a0b6361
Merge branch 'main' into ahijevyc/neighborhood_filter
ahijevyc Mar 17, 2025
6c59af7
missing imports
ahijevyc Mar 17, 2025
67d0c11
Merge branch 'main' into ahijevyc/neighborhood_filter
philipc2 Mar 18, 2025
8979745
Merge branch 'main' into ahijevyc/neighborhood_filter
ahijevyc Mar 19, 2025
a8875cd
Merge branch 'main' into ahijevyc/neighborhood_filter
ahijevyc May 28, 2025
f4af498
Merge branch 'UXARRAY:main' into ahijevyc/neighborhood_filter
ahijevyc Aug 4, 2025
45407aa
Merge branch 'main' into ahijevyc/neighborhood_filter
erogluorhan Sep 3, 2025
9fa100c
Merge branch 'main' into ahijevyc/neighborhood_filter
ahijevyc Jan 21, 2026
56e7821
Merge branch 'main' into ahijevyc/neighborhood_filter
erogluorhan Feb 26, 2026
14c37b7
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 26, 2026
a37b88f
Update dataset.py to address pre-commit errors
erogluorhan Feb 26, 2026
47662c1
Merge remote-tracking branch 'origin/main' into ahijevyc/neighborhood…
rajeeja Jul 24, 2026
02ca8b7
Address review feedback for neighborhood_filter
rajeeja Jul 24, 2026
42c7872
Merge branch 'main' into ahijevyc/neighborhood_filter
erogluorhan Jul 27, 2026
b47540b
Fix neighborhood_filter dimension assert to not access .dims on ndarray
rajeeja Jul 27, 2026
e50ebbd
Fix neighborhood_filter docstrings: radius is always in degrees, not …
rajeeja Jul 27, 2026
68fd51f
Merge remote-tracking branch 'ahijevyc-fork/ahijevyc/neighborhood_fil…
rajeeja Jul 27, 2026
50cc6c6
Fix neighborhood_filter bugs and address PR review feedback
rajeeja Jul 28, 2026
5995f03
Fix _copy() deep default + optimize neighborhood_filter memory usage
rajeeja Jul 28, 2026
1d896ce
Add docstring Examples/See Also + expand neighborhood-filter notebook
rajeeja Jul 28, 2026
29f1873
Merge branch 'main' into ahijevyc/neighborhood_filter
rajeeja Jul 28, 2026
b37974d
Fix pre-commit: trailing newlines + ruff import sort/format
rajeeja Jul 28, 2026
ed35c01
Merge branch 'UXARRAY:main' into ahijevyc/neighborhood_filter
ahijevyc Jul 29, 2026
a2aff9c
Merge remote-tracking branch 'origin/main' into ahijevyc/neighborhood…
rajeeja Aug 3, 2026
82b3ae2
Correct NaN rationale in neighborhood filter docs and comments
rajeeja Aug 3, 2026
cb364fa
Harden neighborhood filter tree selection and error handling
rajeeja Aug 3, 2026
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
13 changes: 13 additions & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,19 @@ Azimuthal aggregations apply an aggregation (i.e. averaging) along circles of co
UxDataArray.azimuthal_mean


Neighborhood
~~~~~~~~~~~~

Neighborhood filters apply an aggregation (i.e. averaging) to all grid elements within a circular
neighborhood of a specified radius around each grid element.

.. autosummary::
:toctree: generated/

UxDataArray.neighborhood_filter
UxDataset.neighborhood_filter


Zonal Average
~~~~~~~~~~~~~
.. autosummary::
Expand Down
Loading