Repository: climate Updated Branches: refs/heads/master dca99e085 -> 6725431fb
CLIMATE-605 - Fix typo in plotter.draw_contour_map docstring - Update plotter.draw_contour_map docstring to specify proper expected data shape. Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/db52b757 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/db52b757 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/db52b757 Branch: refs/heads/master Commit: db52b75755c3281507dcac46387249a174e546dc Parents: a0f0615 Author: Michael Joyce <[email protected]> Authored: Wed Mar 18 08:58:22 2015 -0700 Committer: Michael Joyce <[email protected]> Committed: Wed Mar 18 08:58:22 2015 -0700 ---------------------------------------------------------------------- ocw/plotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/db52b757/ocw/plotter.py ---------------------------------------------------------------------- diff --git a/ocw/plotter.py b/ocw/plotter.py index 337cfd3..a9c0b7f 100644 --- a/ocw/plotter.py +++ b/ocw/plotter.py @@ -494,7 +494,7 @@ def draw_contour_map(dataset, lats, lons, fname, fmt='png', gridshape=(1, 1), extend='neither', aspect=8.5/2.5): ''' Draw a multiple panel contour map plot. - :param dataset: 3D array of data to be plotted with shape (nT, nLon, nLat). + :param dataset: 3D array of data to be plotted with shape (nT, nLat, nLon). :type dataset: :class:`numpy.ndarray` :param lats: Array of latitudes values.
