Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/climate
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/4019acf5 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/4019acf5 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/4019acf5 Branch: refs/heads/master Commit: 4019acf55877b67f55f033ec1ee226af0d5a0ecb Parents: 5943753 77443d7 Author: Lewis John McGibbney <[email protected]> Authored: Thu Sep 3 12:48:49 2015 -0700 Committer: Lewis John McGibbney <[email protected]> Committed: Thu Sep 3 12:48:49 2015 -0700 ---------------------------------------------------------------------- .mailmap | 28 + .pylintrc | 380 +++++ docs/source/conf.py | 5 +- docs/source/config/config_overview.rst | 85 ++ docs/source/config/config_writer.rst | 5 + docs/source/config/dataset_information.rst | 89 ++ docs/source/config/evaluation_settings.rst | 56 + docs/source/config/metrics_information.rst | 12 + docs/source/config/plots_settings.rst | 44 + docs/source/index.rst | 1 + easy-ocw/install-ubuntu.sh | 1 + easy-ocw/ocw-pip-dependencies.txt | 2 + examples/knmi_to_cru31_full_bias.py | 1 - examples/multi_model_evaluation.py | 151 ++ examples/multi_model_taylor_diagram.py | 144 ++ examples/simple_model_to_model_bias.py | 23 +- .../simple_model_to_model_bias_DJF_and_JJA.py | 64 + examples/subregions.py | 53 + examples/subregions_portrait_diagram.py | 139 ++ examples/time_series_with_regions.py | 141 ++ ocw-cli/cli_app.py | 1422 ++++++++++++++++++ ocw-cli/ocw_cli.py | 848 ----------- ocw-config-runner/configuration_parsing.py | 285 ++++ ocw-config-runner/configuration_writer.py | 302 ++++ ocw-config-runner/evaluation_creation.py | 178 +++ ocw-config-runner/example/portrait_diagram.yaml | 30 + .../example/simple_model_to_model_bias.yaml | 35 + ocw-config-runner/example/subregion.yaml | 30 + .../example/taylor_diagram_example.yaml | 36 + .../example/time_series_plot_example.yaml | 31 + ocw-config-runner/ocw_evaluation_from_config.py | 72 + ocw-config-runner/plot_generation.py | 204 +++ ocw-config-runner/tests/test_config_parsing.py | 806 ++++++++++ ocw-config-runner/tests/test_config_writer.py | 768 ++++++++++ .../tests/test_evaluation_creation.py | 49 + ocw-vm/init-ocw-vm.sh | 2 +- ocw/data_source/dap.py | 8 +- ocw/data_source/esgf.py | 24 +- ocw/data_source/local.py | 129 +- ocw/data_source/rcmed.py | 17 +- ocw/dataset.py | 91 +- ocw/dataset_processor.py | 319 +++- ocw/evaluation.py | 114 +- ocw/metrics.py | 173 ++- ocw/plotter.py | 125 +- ocw/statistical_downscaling.py | 111 ++ ocw/tests/test_dap.py | 10 +- ocw/tests/test_dataset.py | 19 +- ocw/tests/test_dataset_processor.py | 21 +- ocw/tests/test_evaluation.py | 78 + ocw/tests/test_local.py | 9 + ocw/tests/test_metrics.py | 77 +- ocw/tests/test_rcmed.py | 16 + ocw/tests/test_utils.py | 22 +- ocw/utils.py | 241 ++- 55 files changed, 7000 insertions(+), 1126 deletions(-) ----------------------------------------------------------------------
