-
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.
* modify table creation, precalculate propagation, add columns for regulatory structures * build assign table with regulatory data and propagate down * use config file for inputs * optimize imports * remove column name choices from config file and capitalize constants * move drain, gauge, reg table paths to config file * set default process count to 1 * more vocab changes and update the sample script
- Loading branch information
1 parent
84ea81a
commit 23279a7
Showing
12 changed files
with
785 additions
and
704 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,18 @@ | ||
# file paths to input data | ||
workdir: '' | ||
|
||
x_fdc_train: '' | ||
x_fdc_all: '' | ||
|
||
drain_table: '' | ||
gauge_table: '' | ||
regulate_table: '' | ||
|
||
drain_gis: '' | ||
gauge_gis: '' | ||
|
||
gauge_data: '' | ||
hindcast_zarr: '' | ||
|
||
# options for processing data | ||
n_processes: 1 |
This file was deleted.
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
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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
import saber.assign | ||
import saber.bstrap | ||
import saber.calibrate | ||
import saber.cluster | ||
import saber.gis | ||
import saber.io | ||
import saber.bstrap | ||
import saber.table | ||
|
||
__all__ = [ | ||
'io', 'cluster', 'assign', 'gis', 'calibrate', 'bstrap', | ||
'io', 'table', 'cluster', 'assign', 'gis', 'calibrate', 'bstrap', | ||
] | ||
|
||
__author__ = 'Riley C. Hales' | ||
__version__ = '0.7.0' | ||
__version__ = '0.8.0' | ||
__license__ = 'BSD 3 Clause Clear' |
Oops, something went wrong.