CLIMATE-640 - Fix missing evaluation variable in time series example
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/653dc73a Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/653dc73a Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/653dc73a Branch: refs/heads/master Commit: 653dc73a2fcfb7dd552bab6a900b0f6c14dbe7f6 Parents: 82dd6b6 Author: Michael Joyce <[email protected]> Authored: Thu Jun 4 14:48:53 2015 -0700 Committer: Michael Joyce <[email protected]> Committed: Thu Jun 4 14:48:53 2015 -0700 ---------------------------------------------------------------------- examples/time_series_with_regions.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/653dc73a/examples/time_series_with_regions.py ---------------------------------------------------------------------- diff --git a/examples/time_series_with_regions.py b/examples/time_series_with_regions.py index b11a807..1d552a8 100644 --- a/examples/time_series_with_regions.py +++ b/examples/time_series_with_regions.py @@ -28,6 +28,8 @@ LON_MAX = 60.0 START = datetime.datetime(2000, 01, 1) END = datetime.datetime(2007, 12, 31) +EVAL_BOUNDS = Bounds(LAT_MIN, LAT_MAX, LON_MIN, LON_MAX, START, END) + varName = 'pr' gridLonStep=0.44 gridLatStep=0.44
