-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use polars and parquet for seaexplorer data file load
* use polars for seaexplorer data file load * correctly name parquet files * test seaexplorer with parquet * use filter to avoid future deprication * correct millisecond time parsing from pld * correctly compare datetimes if us or ns when interpolating * coarsen by mean as originally implemented in pandas * slacken test rtol from 1E7 to 1E5 for small averaging discrepancy * add notes on parquet files to documentation * catch for corrupted files and cast non time cols to float64 * if fileread fails, append to badfiles * added comment on dropna and renamed drop_rogue_1970 * relax test rtol to stop tests failing * refactor to merge_parquet * explain optional coarsening of variables
- Loading branch information
1 parent
4803612
commit 0869839
Showing
9 changed files
with
131 additions
and
103 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
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 |
---|---|---|
|
@@ -13,5 +13,6 @@ dependencies: | |
- scipy | ||
- bitstring | ||
- pooch | ||
- polars | ||
- pip: | ||
- dbdreader |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ dependencies: | |
- pytest | ||
- pooch | ||
- matplotlib | ||
- polars | ||
- pip: | ||
- dbdreader | ||
|
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