Repository: climate Updated Branches: refs/heads/master dd2d17a8c -> e5c361e16
Fix typo in toolkit example Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/e5c361e1 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/e5c361e1 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/e5c361e1 Branch: refs/heads/master Commit: e5c361e165162a67ae0570622126e3132ffcd78d Parents: dd2d17a Author: Michael Joyce <[email protected]> Authored: Mon Nov 17 07:05:28 2014 -0800 Committer: Michael Joyce <[email protected]> Committed: Mon Nov 17 07:05:28 2014 -0800 ---------------------------------------------------------------------- examples/knmi_to_cru31_full_bias.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/e5c361e1/examples/knmi_to_cru31_full_bias.py ---------------------------------------------------------------------- diff --git a/examples/knmi_to_cru31_full_bias.py b/examples/knmi_to_cru31_full_bias.py index b90fd4c..c6dac47 100644 --- a/examples/knmi_to_cru31_full_bias.py +++ b/examples/knmi_to_cru31_full_bias.py @@ -122,7 +122,7 @@ print("KNMI_Dataset.values shape: %s" % (knmi_dataset.values.shape,)) print("CRU31_Dataset.values shape: %s \n\n" % (cru31_dataset.values.shape,)) """ Spatially Regrid the Dataset Objects to a 1/2 degree grid """ -# Using the bounds we will create a new set of lats and lons on 1 degree step +# Using the bounds we will create a new set of lats and lons on 0.5 degree step new_lons = np.arange(min_lon, max_lon, 0.5) new_lats = np.arange(min_lat, max_lat, 0.5)
