-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #176 from UW-Hydro/develop
Update master for 2.1.0 release
- Loading branch information
Showing
13 changed files
with
239 additions
and
33 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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# This is an example of an input file for MetSim | ||
[MetSim] | ||
out_vars = ['temp', 'prec', 'shortwave', 'longwave', 'vapor_pressure', 'rel_humid', 'air_pressure', 'wind'] | ||
|
||
# Time step in minutes | ||
time_step = 60 | ||
|
||
# Forcings begin here (year/month/day:hour) (hour optional) | ||
start = 1949/1/1 | ||
|
||
# Forcings end at this date (year/month/day) | ||
stop = 1949/1/31 | ||
|
||
# Input and output directories | ||
forcing = ./metsim/data/ascii | ||
domain = ./metsim/data/stehekin.nc | ||
state = ./metsim/data/state_vic.nc | ||
forcing_fmt = ascii | ||
out_dir = ./results | ||
out_prefix = forcing_constant_vars | ||
|
||
# How to disaggregate | ||
method = mtclim | ||
|
||
[chunks] | ||
lat = 10 | ||
lon = 10 | ||
|
||
# Variables given | ||
[forcing_vars] | ||
prec = prec | ||
t_max = t_max | ||
t_min = t_min | ||
wind = wind | ||
|
||
[state_vars] | ||
prec = prec | ||
t_max = t_max | ||
t_min = t_min | ||
|
||
[domain_vars] | ||
lat = lat | ||
lon = lon | ||
mask = mask | ||
elev = elev | ||
|
||
[constant_vars] | ||
wind = 2.0 |
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,44 @@ | ||
# This is an example of an input file for MetSim | ||
[MetSim] | ||
out_vars = ['temp', 'prec', 'shortwave', 'longwave', 'vapor_pressure', 'rel_humid', 'air_pressure', 'wind'] | ||
|
||
# Time step in minutes | ||
time_step = 30 | ||
# Forcings begin here (year/month/day:hour) (hour optional) | ||
start = 1949/1/1 | ||
|
||
# Forcings end at this date (year/month/day) | ||
stop = 1953/12/31 | ||
|
||
# Input and output directories | ||
forcing = ./metsim/data/binary | ||
domain = ./metsim/data/stehekin.nc | ||
state = ./metsim/data/state_vic.nc | ||
forcing_fmt = binary | ||
out_dir = ./results | ||
out_prefix = forcing_constant_vars | ||
|
||
[chunks] | ||
lat = 10 | ||
lon = 10 | ||
|
||
# Variables given | ||
[forcing_vars] | ||
prec = 40.0 unsigned | ||
t_max = 100.0 signed | ||
t_min = 100.0 signed | ||
wind = 100.0 signed | ||
|
||
[state_vars] | ||
prec = prec | ||
t_max = t_max | ||
t_min = t_min | ||
|
||
[domain_vars] | ||
lat = lat | ||
lon = lon | ||
mask = mask | ||
elev = elev | ||
|
||
[constant_vars] | ||
wind = 2.0 |
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,52 @@ | ||
# This is an example of an input file for MetSim | ||
[MetSim] | ||
out_vars = ['temp', 'prec', 'shortwave', 'longwave', 'vapor_pressure', 'rel_humid', 'air_pressure', 'wind'] | ||
|
||
# Time step in minutes | ||
time_step = 30 | ||
|
||
# Forcings begin here (year/month/day:hour) (hour optional) | ||
start = 1950/1/1 | ||
|
||
# Forcings end at this date (year/month/day) | ||
stop = 1950/1/31 | ||
|
||
# Input and output directories | ||
forcing = ./metsim/data/test.nc | ||
domain = ./metsim/data/domain.nc | ||
state = ./metsim/data/state_nc.nc | ||
|
||
forcing_fmt = netcdf | ||
in_format = netcdf | ||
|
||
out_dir = ./results | ||
out_prefix = forcing_constant_vars | ||
|
||
prec_type = triangle | ||
utc_offset = True | ||
|
||
[chunks] | ||
lat = 3 | ||
lon = 3 | ||
|
||
[forcing_vars] | ||
prec = Prec | ||
t_max = Tmax | ||
t_min = Tmin | ||
wind = wind | ||
|
||
[state_vars] | ||
prec = prec | ||
t_max = t_max | ||
t_min = t_min | ||
|
||
[domain_vars] | ||
lat = lat | ||
lon = lon | ||
mask = mask | ||
elev = elev | ||
t_pk = t_pk | ||
dur = dur | ||
|
||
[constant_vars] | ||
wind = 2.0 |
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.