uxarray icon indicating copy to clipboard operation
uxarray copied to clipboard

DRAFT: Reductions

Open aaronzedwick opened this issue 1 year ago • 3 comments

Closes #714, #715, #716, #717

Adds 4 new reduction methods to topological_aggregations

Overview

Expected Usage

import uxarray as ux

grid_path = "/path/to/grid.nc"
data_path = "/path/to/data.nc"

uxds = ux.open_dataset(grid_path, data_path)

# this is how you use this function
some_output = uxds.some_function()

# this is another way to use this function
other_output = uxds.some_function(some_param = True)

PR Checklist

General

  • [x] An issue is linked created and linked
  • [x] Add appropriate labels
  • [x] Filled out Overview and Expected Usage (if applicable) sections

Testing

  • [ ] Adequate tests are created if there is new functionality
  • [ ] Tests cover all possible logical paths in your function
  • [ ] Tests are not too basic (such as simply calling a function and nothing else)

Documentation

  • [ ] Docstrings have been added to all new functions
  • [ ] Docstrings have updated with any function changes
  • [ ] Internal functions have a preceding underscore (_) and have been added to docs/internal_api/index.rst
  • [ ] User functions have been added to docs/user_api/index.rst

Examples

  • [x] Any new notebook examples added to docs/examples/ folder
  • [x] Clear the output of all cells before committing
  • [x] New notebook files added to docs/examples.rst toctree
  • [x] New notebook files added to new entry in docs/gallery.yml with appropriate thumbnail photo in docs/_static/thumbnails/

aaronzedwick avatar Nov 13 '24 17:11 aaronzedwick