Repository: climate Updated Branches: refs/heads/master a63049bfb -> a3f3eafcc
take out two coming soon items from CLI processing page Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/7b9a3a85 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/7b9a3a85 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/7b9a3a85 Branch: refs/heads/master Commit: 7b9a3a859618460aa2566ea52c93e1fd314f7096 Parents: a63049b Author: Maziyar Boustani <[email protected]> Authored: Thu Sep 3 14:56:43 2015 -0700 Committer: Maziyar Boustani <[email protected]> Committed: Thu Sep 3 14:56:43 2015 -0700 ---------------------------------------------------------------------- ocw-cli/cli_app.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/7b9a3a85/ocw-cli/cli_app.py ---------------------------------------------------------------------- diff --git a/ocw-cli/cli_app.py b/ocw-cli/cli_app.py index 5f622d4..a668b68 100644 --- a/ocw-cli/cli_app.py +++ b/ocw-cli/cli_app.py @@ -1122,13 +1122,13 @@ def settings_screen(header): screen.addstr(11, x/2, "6 - Change Target dataset/s") screen.addstr(12, x/2, "7 - Change Metric") screen.addstr(13, x/2, "8 - Change Working Directory") - screen.addstr(14, x/2, "9 - Change Plot Title [Coming Soon....]") - screen.addstr(15, x/2, "10 - Save the processed data [Coming Soon....]") - screen.addstr(16, x/2, "11 - Show Temporal Boundaries") - screen.addstr(17, x/2, "12 - Show Spatial Boundaries") - screen.addstr(18, x/2, "0 - Return to Main Menu") - screen.addstr(20, x/2, "r - Run Evaluation") - screen.addstr(22, x/2, "Select an option: ") + #screen.addstr(14, x/2, "9 - Change Plot Title [Coming Soon....]") + #screen.addstr(15, x/2, "10 - Save the processed data [Coming Soon....]") + screen.addstr(14, x/2, "9 - Show Temporal Boundaries") + screen.addstr(15, x/2, "10 - Show Spatial Boundaries") + screen.addstr(16, x/2, "0 - Return to Main Menu") + screen.addstr(18, x/2, "r - Run Evaluation") + screen.addstr(20, x/2, "Select an option: ") screen.refresh() option = screen.getstr() @@ -1322,7 +1322,7 @@ def settings_screen(header): # screen.addstr(25, x/2, "Please enter plot title:") # plot_title = screen.getstr() - if option == '11': + if option == '9': models_start_time, models_end_time = get_models_temp_bound() line = 25 for i, model in enumerate(model_datasets): @@ -1340,7 +1340,7 @@ def settings_screen(header): screen.addstr(line, x/2 + 3, "Start:{0} - End:{1}".format(observations_start_time[i], observations_end_time[i])) screen.getstr() - if option == '12': + if option == '10': models_bound = get_models_spatial_bound() line = 25 for i, model in enumerate(model_datasets):
