@@ -3336,6 +3336,10 @@ def pcolor(self,x,y,data,**kwargs):
3336
3336
3337
3337
Other \**kwargs passed on to matplotlib.pyplot.pcolor (or tricolor if
3338
3338
``tri=True``).
3339
+
3340
+ Note: (taken from matplotlib.pyplot.pcolor documentation)
3341
+ Ideally the dimensions of x and y should be one greater than those of data;
3342
+ if the dimensions are the same, then the last row and column of data will be ignored.
3339
3343
"""
3340
3344
ax , plt = self ._ax_plt_from_kw (kwargs )
3341
3345
# allow callers to override the hold state by passing hold=True|False
@@ -3396,7 +3400,7 @@ def pcolormesh(self,x,y,data,**kwargs):
3396
3400
"""
3397
3401
Make a pseudo-color plot over the map
3398
3402
(see matplotlib.pyplot.pcolormesh documentation).
3399
-
3403
+
3400
3404
If ``latlon`` keyword is set to True, x,y are intrepreted as
3401
3405
longitude and latitude in degrees. Data and longitudes are
3402
3406
automatically shifted to match map projection region for cylindrical
@@ -3407,6 +3411,10 @@ def pcolormesh(self,x,y,data,**kwargs):
3407
3411
Extra keyword ``ax`` can be used to override the default axis instance.
3408
3412
3409
3413
Other \**kwargs passed on to matplotlib.pyplot.pcolormesh.
3414
+
3415
+ Note: (taken from matplotlib.pyplot.pcolor documentation)
3416
+ Ideally the dimensions of x and y should be one greater than those of data;
3417
+ if the dimensions are the same, then the last row and column of data will be ignored.
3410
3418
"""
3411
3419
ax , plt = self ._ax_plt_from_kw (kwargs )
3412
3420
# allow callers to override the hold state by passing hold=True|False
0 commit comments