@@ -382,6 +382,8 @@ class methods such as drawcoastlines will raise an
382
382
projections.
383
383
lon_0 central meridian (x-axis origin) - used by all
384
384
projections.
385
+ o_lat_p latitude of rotated pole (only used by 'rotpole')
386
+ o_lon_p longitude of rotated pole (only used by 'rotpole')
385
387
boundinglat bounding latitude for pole-centered projections
386
388
(npstere,spstere,nplaea,splaea,npaeqd,spaeqd).
387
389
These projections are square regions centered
@@ -3344,9 +3346,9 @@ def pcolor(self,x,y,data,**kwargs):
3344
3346
3345
3347
Other \**kwargs passed on to matplotlib.pyplot.pcolor (or tricolor if
3346
3348
``tri=True``).
3347
-
3349
+
3348
3350
Note: (taken from matplotlib.pyplot.pcolor documentation)
3349
- Ideally the dimensions of x and y should be one greater than those of data;
3351
+ Ideally the dimensions of x and y should be one greater than those of data;
3350
3352
if the dimensions are the same, then the last row and column of data will be ignored.
3351
3353
"""
3352
3354
ax , plt = self ._ax_plt_from_kw (kwargs )
@@ -3408,7 +3410,7 @@ def pcolormesh(self,x,y,data,**kwargs):
3408
3410
"""
3409
3411
Make a pseudo-color plot over the map
3410
3412
(see matplotlib.pyplot.pcolormesh documentation).
3411
-
3413
+
3412
3414
If ``latlon`` keyword is set to True, x,y are intrepreted as
3413
3415
longitude and latitude in degrees. Data and longitudes are
3414
3416
automatically shifted to match map projection region for cylindrical
@@ -3419,9 +3421,9 @@ def pcolormesh(self,x,y,data,**kwargs):
3419
3421
Extra keyword ``ax`` can be used to override the default axis instance.
3420
3422
3421
3423
Other \**kwargs passed on to matplotlib.pyplot.pcolormesh.
3422
-
3424
+
3423
3425
Note: (taken from matplotlib.pyplot.pcolor documentation)
3424
- Ideally the dimensions of x and y should be one greater than those of data;
3426
+ Ideally the dimensions of x and y should be one greater than those of data;
3425
3427
if the dimensions are the same, then the last row and column of data will be ignored.
3426
3428
"""
3427
3429
ax , plt = self ._ax_plt_from_kw (kwargs )
0 commit comments