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