-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix xdas.filter. * Typo in docs. * Do not generate output dir. * Speedup .to_netcdf for VirtualStack. * update docs. * Add DataArray.size len(DataArray) * Add dtype checking when combine_by_coords. * Make Collections pickable. * Ensure correct fillvalue for virtual datasets. * Fix virtual writing with dense non-dimensional coordinates. * replace netcdf4 by h5netcdf. * Fix to_xarray for scalar coordinate. * Allow for Ellipsis in DataArray.transpose. * Add DataArray.T * One more concat test. * Fix concatenate for unsorted coords. * Add randn_wavefronts and rename wavelet_wavefronts. * Add MLPicker. * Allow to pass chunk_dim to atoms in process. * Move Sequential * Make Sequential inherit from Atom. * Fix nasty bug. * auto chunk_dim for process. * rename kwargs --> flags. * Rename chunk -> chunk_dim * Put zeros for missing channels. * normalize inplace. * WIP. * Add coords handling. * refactor MLPicker. * Some more refactoring. * Make circular buffers as states. * Fix state initialization. * small refactoring. * Add find_picks. * format. * more formating. * Fix _find_picks_numeric axis handling. * Add chunk processing for find_picks_numeric. * Fix find_picks_numeric for 1d arrays. * test trigger on several chunk ago. * Add tests for find_picks. * Add TODO. * Implement offset argument to get absolute index location for chunks. * remove unused imports * Add trigger on chunks. * Small refactor of atoms.Partial. * Atomize find_picks. * Fix equals for nan. * Add DataFrameWriter. * tupos * Fix parse_dates in DataFrameWriter. * feat: Add find_picks trigger to signal module * Fix virtual writing of collections. * Add Atomic declaration of trigger. * Add some doc and do some refactoring. * chunk_dim flag must be provided or the state is reset. * Allow to pass atoms as input of atomized functions. * Add numba to requirements. * WIP: docs * Improve getting started. * Update Partial docstring. * update atomized docstring. * Remove damned pylance auto import. * Linting corrections. * restore netcdf4 dependency. * Fix ufunc by providing better broadcasting. * Use NDArrayOperatorsMixin for better arithmetics support. * Improve get_discontinuities. * update span -> delta * Add copy to datacollection.py * improves copy for datacollections. * Fix some bugs. * Add --force-reinstall for latest. * CI: initial commit. * CI: fix python verisons. * Pytest: import mode = importlib. * rename action: tests. * Add tests badge. * add coord.get_availabilities() * add plot_availability for DataArray. * Add availability plot for collections. * Update version.
- Loading branch information
1 parent
e4dcd07
commit a884007
Showing
34 changed files
with
2,344 additions
and
607 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: tests | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.10", "3.11", "3.12"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install '.[tests]' | ||
- name: Test with pytest | ||
run: | | ||
pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ | |
.. autosummary:: | ||
:toctree: ../_autosummary | ||
generate | ||
wavelet_wavefronts | ||
randn_wavefronts | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.