[Matplotlib-users] How can I add parallel tick labels for north polar stereographic map?

2015-12-17 Thread Chao YUE
Dear all matplotlib/basemap users,

I have made a plot like below using matplotib and basemap. The problem is
that I wan to add also parallel ticklabels for the circles higher than 40N.
Anybody knows how to achieve this? I checked the yticklabels for the map
axes but find it's not implemented as an original polar plot in matplotlib.
Thanks a lot in advance!


[image: Inline image 1]

-- 
please visit:
http://www.globalcarbonatlas.org/
***
Chao YUE
postdoc at LSCE
CEA-Ormes des Merisiers, F-91191 GIF-SUR-YVETTE CEDEX
Tel: 33 1 69 08 41 87

--
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] Matplotlib vers. 1.5.0 warnings

2015-12-17 Thread Virgil Stokes
I recently upgraded to vers. 1.5.0 and I am now getting some warning messages. 
For example:

D:\Python27\lib\site-packages\matplotlib\backend_managers.py:62: UserWarning: 
Treat the new Tool classes introduced in v1.5 as experimental for now, the API 
will likely change in version 2.1 and perhaps the rcParam as well
   'version 2.1 and perhaps the rcParam as well')
D:\Python27\lib\site-packages\matplotlib\backend_tools.py:78: UserWarning: 
Treat 
the new Tool classes introduced in v1.5 as experimental for now, the API will 
likely change in version 2.1, and some tools might change name
   'version 2.1, and some tools might change name')

How can I keep these messages from being displayed (at least temporarily)?

--V


--
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Matplotlib vers. 1.5.0 warnings

2015-12-17 Thread Joshua Klein
You can use the warnings module from the Python standard Library.

import warnings
warnings.filterwarnings(action='ignore')

This will silence all Python warnings. The signature for
warnings.filterwarnings
 can
also be used to only suppress some warnings.

On Thu, Dec 17, 2015 at 10:40 AM, Virgil Stokes  wrote:

I recently upgraded to vers. 1.5.0 and I am now getting some warning
> messages.
> For example:
>
> D:\Python27\lib\site-packages\matplotlib\backend_managers.py:62:
> UserWarning:
> Treat the new Tool classes introduced in v1.5 as experimental for now, the
> API
> will likely change in version 2.1 and perhaps the rcParam as well
>'version 2.1 and perhaps the rcParam as well')
> D:\Python27\lib\site-packages\matplotlib\backend_tools.py:78: UserWarning:
> Treat
> the new Tool classes introduced in v1.5 as experimental for now, the API
> will
> likely change in version 2.1, and some tools might change name
>'version 2.1, and some tools might change name')
>
> How can I keep these messages from being displayed (at least temporarily)?
>
> --V
>
>
>
> --
> ___
> Matplotlib-users mailing list
> Matplotlib-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
​
--
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users