Skip to content

Commit

Permalink
Incorporate GitHub Issue #12.
Browse files Browse the repository at this point in the history
The user can now indicate the start, end, and increment for times in the
constants_pdef.py param/config file.  Utilize the logic provided in
met_util.py to retrieve these times.
  • Loading branch information
Minna Win committed Dec 19, 2016
1 parent 678902f commit 1e49843
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ush/series_by_lead.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ def analysis_by_lead_time():
extract_out_dir = p.opt["EXTRACT_OUT_DIR"]
filter_opts = p.opt["SERIES_ANALYSIS_FILTER_OPTS"]
series_lead_filtered_out_dir = p.opt["SERIES_LEAD_FILTERED_OUT_DIR"]
init_times = p.opt["INIT_LIST"]
init_times = util.gen_init_list(p.opt["INIT_DATE_BEG"],
p.opt["INIT_DATE_END"],
p.opt["INIT_HOUR_INC"],
p.opt["INIT_HOUR_END"])

series_lead_out_dir = p.opt["SERIES_LEAD_OUT_DIR"]
background_map = p.opt["BACKGROUND_MAP"]

Expand Down

0 comments on commit 1e49843

Please sign in to comment.