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 function for rolling windows on irregular data #236

Merged
merged 10 commits into from
Mar 13, 2020
Merged

Commits on Mar 11, 2020

  1. Add function for rolling windows on irregular data

    The `rolling_split` function returns the indices of points falling on
    rolling/moving windows. It works for irregularly sampled data and is a
    nice complement to `xarray.DataArray.rolling`  (which only works on
    grids). Uses a KDTree to select points but is not compatible with
    pykdtree (it's missing the method we need).
    leouieda committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    a8e4a8b View commit details
    Browse the repository at this point in the history
  2. Satisfy the Windows gods

    leouieda committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    0ec8195 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2020

  1. Configuration menu
    Copy the full SHA
    4f1615f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    300a3ec View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    81e9a13 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    de399b2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    aca5cad View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    075fab2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d3d5c2a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9e9eee7 View commit details
    Browse the repository at this point in the history