Skip to content

Commit 805ad9b

Browse files
author
Jeff Whitaker
committed
add some documentation for o_lon_p, o_lat_p keywords.
1 parent 64d4557 commit 805ad9b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

lib/mpl_toolkits/basemap/__init__.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,8 @@ class methods such as drawcoastlines will raise an
382382
projections.
383383
lon_0 central meridian (x-axis origin) - used by all
384384
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')
385387
boundinglat bounding latitude for pole-centered projections
386388
(npstere,spstere,nplaea,splaea,npaeqd,spaeqd).
387389
These projections are square regions centered
@@ -3344,9 +3346,9 @@ def pcolor(self,x,y,data,**kwargs):
33443346
33453347
Other \**kwargs passed on to matplotlib.pyplot.pcolor (or tricolor if
33463348
``tri=True``).
3347-
3349+
33483350
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;
33503352
if the dimensions are the same, then the last row and column of data will be ignored.
33513353
"""
33523354
ax, plt = self._ax_plt_from_kw(kwargs)
@@ -3408,7 +3410,7 @@ def pcolormesh(self,x,y,data,**kwargs):
34083410
"""
34093411
Make a pseudo-color plot over the map
34103412
(see matplotlib.pyplot.pcolormesh documentation).
3411-
3413+
34123414
If ``latlon`` keyword is set to True, x,y are intrepreted as
34133415
longitude and latitude in degrees. Data and longitudes are
34143416
automatically shifted to match map projection region for cylindrical
@@ -3419,9 +3421,9 @@ def pcolormesh(self,x,y,data,**kwargs):
34193421
Extra keyword ``ax`` can be used to override the default axis instance.
34203422
34213423
Other \**kwargs passed on to matplotlib.pyplot.pcolormesh.
3422-
3424+
34233425
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;
34253427
if the dimensions are the same, then the last row and column of data will be ignored.
34263428
"""
34273429
ax, plt = self._ax_plt_from_kw(kwargs)

0 commit comments

Comments
 (0)