SourceForge logo
SourceForge logo
Menu

matplotlib-users — Discussion related to using matplotlib

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
(3)
Jun
Jul
Aug
(12)
Sep
(12)
Oct
(56)
Nov
(65)
Dec
(37)
2004 Jan
(59)
Feb
(78)
Mar
(153)
Apr
(205)
May
(184)
Jun
(123)
Jul
(171)
Aug
(156)
Sep
(190)
Oct
(120)
Nov
(154)
Dec
(223)
2005 Jan
(184)
Feb
(267)
Mar
(214)
Apr
(286)
May
(320)
Jun
(299)
Jul
(348)
Aug
(283)
Sep
(355)
Oct
(293)
Nov
(232)
Dec
(203)
2006 Jan
(352)
Feb
(358)
Mar
(403)
Apr
(313)
May
(165)
Jun
(281)
Jul
(316)
Aug
(228)
Sep
(279)
Oct
(243)
Nov
(315)
Dec
(345)
2007 Jan
(260)
Feb
(323)
Mar
(340)
Apr
(319)
May
(290)
Jun
(296)
Jul
(221)
Aug
(292)
Sep
(242)
Oct
(248)
Nov
(242)
Dec
(332)
2008 Jan
(312)
Feb
(359)
Mar
(454)
Apr
(287)
May
(340)
Jun
(450)
Jul
(403)
Aug
(324)
Sep
(349)
Oct
(385)
Nov
(363)
Dec
(437)
2009 Jan
(500)
Feb
(301)
Mar
(409)
Apr
(486)
May
(545)
Jun
(391)
Jul
(518)
Aug
(497)
Sep
(492)
Oct
(429)
Nov
(357)
Dec
(310)
2010 Jan
(371)
Feb
(657)
Mar
(519)
Apr
(432)
May
(312)
Jun
(416)
Jul
(477)
Aug
(386)
Sep
(419)
Oct
(435)
Nov
(320)
Dec
(202)
2011 Jan
(321)
Feb
(413)
Mar
(299)
Apr
(215)
May
(284)
Jun
(203)
Jul
(207)
Aug
(314)
Sep
(321)
Oct
(259)
Nov
(347)
Dec
(209)
2012 Jan
(322)
Feb
(414)
Mar
(377)
Apr
(179)
May
(173)
Jun
(234)
Jul
(295)
Aug
(239)
Sep
(276)
Oct
(355)
Nov
(144)
Dec
(108)
2013 Jan
(170)
Feb
(89)
Mar
(204)
Apr
(133)
May
(142)
Jun
(89)
Jul
(160)
Aug
(180)
Sep
(69)
Oct
(136)
Nov
(83)
Dec
(32)
2014 Jan
(71)
Feb
(90)
Mar
(161)
Apr
(117)
May
(78)
Jun
(94)
Jul
(60)
Aug
(83)
Sep
(102)
Oct
(132)
Nov
(154)
Dec
(96)
2015 Jan
(45)
Feb
(138)
Mar
(176)
Apr
(132)
May
(119)
Jun
(124)
Jul
(77)
Aug
(31)
Sep
(34)
Oct
(22)
Nov
(23)
Dec
(9)
2016 Jan
(26)
Feb
(17)
Mar
(10)
Apr
(8)
May
(4)
Jun
(8)
Jul
(6)
Aug
(5)
Sep
(9)
Oct
(4)
Nov
Dec
2017 Jan
(5)
Feb
(7)
Mar
(1)
Apr
(5)
May
Jun
(3)
Jul
(6)
Aug
(1)
Sep
Oct
(2)
Nov
(1)
Dec
2018 Jan
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2025 Jan
(1)
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S





1
(4)
2
(4)
3
4
(5)
5
6
(9)
7
(1)
8
(1)
9
(1)
10
11
(2)
12
(6)
13
(5)
14
(3)
15
(1)
16
(1)
17
(2)
18
(7)
19
(1)
20
(4)
21
(8)
22
(3)
23
(3)
24
25
(1)
26
(3)
27
(5)
28
(3)
29
30

Showing 9 results of 9

From: Piet v. O. <pi...@va...> - 2013年11月06日 22:23:48
Paul Hobson wrote:
 > On Wed, Oct 23, 2013 at 9:30 PM, Sourav Chatterjee <sr...@gm...> wrote:
 > 
 > Hello,
 > 
 > I have stereographic projection of the pole. I need to indicate the directions like
 > north,south,east, west, north-east, north-west and so on. Is there any way to do so? 
 > 
 > Thanks
 > Sourav
 > 
 > I am **very far** from a GIS expert, but I believe that the cardinal directions are ambiguous at
 > the poles. In other words, if you're standing on the North Pole, it'd difficult to head in any
 > direction that's not towards the south pole.
 > 
 > Curious to hear if I'm wrong, though.
 > 
Yes, on the North Pole, every direction is South, on the South Pole, every direction is North.
-- 
Piet van Oostrum <pi...@va...>
WWW: http://pietvanoostrum.com/
PGP key: [8DAE142BE17999C4]
From: Joe K. <jof...@gm...> - 2013年11月06日 21:11:15
Sourav - Are you by chance trying to make a stereonet? If so, your
question makes a bit more sense. If that's what you're doing, have a look
at mplstereonet. https://github.com/joferkington/mplstereonet It currently
doesn't support polar stereonets, but that's something I've been meaning to
add for a long time.
If that's not what you're doing, then perhaps you wanted something similar
to this? (The directions don't have much meaning, as others have already
pointed out):
from mpl_toolkits.basemap import Basemap
import numpy as np
import matplotlib.pyplot as plt
m = Basemap(projection='npstere',boundinglat=10,lon_0=270,resolution='l')
m.drawcoastlines()
m.fillcontinents(color='coral',lake_color='aqua')
m.drawmapboundary(fill_color='aqua')
# draw parallels and meridians.
m.drawparallels(np.arange(-80.,80.,20.))
ticks = m.drawmeridians(np.arange(-180.,180.,20.),
 labels=[True, True, True, True])
# Change the meridian label at 0 and 180 to East and West
for value, label in zip([0.0, -180.0], ['East', 'West']):
 ticks[value][1][0].set_text(label)
plt.show()
Hope that helps!
-Joe
On Wed, Nov 6, 2013 at 1:34 PM, Jason Grout <jas...@cr...>wrote:
> On 11/6/13 1:10 PM, Paul Hobson wrote:
> > I am **very far** from a GIS expert, but I believe that the cardinal
> > directions are ambiguous at the poles. In other words, if you're
> > standing on the North Pole, it'd difficult to head in any direction
> > that's not towards the south pole.
> >
> > Curious to hear if I'm wrong, though.
>
> I'm sure I'm even farther from being a GIS expert (and probably farther
> from one as well :), but I think you raise an interesting point. My
> compass would give me directions at the geographic north pole, given
> that the magnetic north pole is different from the geographic north
> pole. I'm curious how valid it would be to use magnetic north to assign
> directions at the geographic north pole. My guess is not very valid,
> but kind of cool nonetheless.
>
> Jason
>
>
>
> ------------------------------------------------------------------------------
> November Webinars for C, C++, Fortran Developers
> Accelerate application performance with scalable programming models.
> Explore
> techniques for threading, error checking, porting, and tuning. Get the most
> from the latest Intel processors and coprocessors. See abstracts and
> register
> http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
From: aperception <per...@gm...> - 2013年11月06日 21:01:50
Easily patched the 1.3.0 version in Enthought distribution by replacing
matplotlib\backends\qt4_editor\figureoptions.py line 33-34 with:
COLORS = {'c': '#00bfbf', 'b': '#0000ff', 'w': '#ffffff', 'g': '#008000',
 'y': '#bfbf00', 'k': '#000000', 'r': '#ff0000', 'm': '#bf00bf'}
Excellent!
--
View this message in context: http://matplotlib.1069221.n5.nabble.com/Qt4Agg-backend-edit-curves-and-axis-parameters-tp10161p42468.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
From: aperception <per...@gm...> - 2013年11月06日 20:45:28
Dear Thomas,
I replaced figureoptions.py in 1.3.1 with the corresponding file in your
commit
<https://github.com/rhoef/matplotlib/blob/2bffa69cf7dc6b571fc5fdea27dba560d55a37de/lib/matplotlib/backends/qt4_editor/figureoptions.py> 
, and can confirm that it has resolved the issue.
Thank you very much! I will start using this patch immediately.
Best Regards,
Tim
--
View this message in context: http://matplotlib.1069221.n5.nabble.com/Qt4Agg-backend-edit-curves-and-axis-parameters-tp10161p42467.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
From: Thomas H. <t....@gm...> - 2013年11月06日 20:00:41
Please check if this PR fixes the problem
https://github.com/matplotlib/matplotlib/pull/2112
Regards
Thomas
On Wed, Nov 6, 2013 at 12:52 PM, aperception <per...@gm...>wrote:
> Unfortunately this issue with the color changing after editing axis
> parameters still doesn't appear to have been resolved as of 1.3.1 or in the
> latest source. Is there an easy fix for it? It's a very useful feature for
> me because my figure is embedded in a QT4 GUI without easy access to the
> command line.
>
>
>
> --
> View this message in context:
> http://matplotlib.1069221.n5.nabble.com/Qt4Agg-backend-edit-curves-and-axis-parameters-tp10161p42461.html
> Sent from the matplotlib - users mailing list archive at Nabble.com.
>
>
> ------------------------------------------------------------------------------
> November Webinars for C, C++, Fortran Developers
> Accelerate application performance with scalable programming models.
> Explore
> techniques for threading, error checking, porting, and tuning. Get the most
> from the latest Intel processors and coprocessors. See abstracts and
> register
> http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
From: Jason G. <jas...@cr...> - 2013年11月06日 19:34:41
On 11/6/13 1:10 PM, Paul Hobson wrote:
> I am **very far** from a GIS expert, but I believe that the cardinal
> directions are ambiguous at the poles. In other words, if you're
> standing on the North Pole, it'd difficult to head in any direction
> that's not towards the south pole.
>
> Curious to hear if I'm wrong, though.
I'm sure I'm even farther from being a GIS expert (and probably farther 
from one as well :), but I think you raise an interesting point. My 
compass would give me directions at the geographic north pole, given 
that the magnetic north pole is different from the geographic north 
pole. I'm curious how valid it would be to use magnetic north to assign 
directions at the geographic north pole. My guess is not very valid, 
but kind of cool nonetheless.
Jason
From: Paul H. <pmh...@gm...> - 2013年11月06日 19:10:28
On Wed, Oct 23, 2013 at 9:30 PM, Sourav Chatterjee <sr...@gm...>wrote:
> Hello,
>
> I have stereographic projection of the pole. I need to indicate the
> directions like north,south,east, west, north-east, north-west and so on.
> Is there any way to do so?
>
> Thanks
> Sourav
>
>
I am **very far** from a GIS expert, but I believe that the cardinal
directions are ambiguous at the poles. In other words, if you're standing
on the North Pole, it'd difficult to head in any direction that's not
towards the south pole.
Curious to hear if I'm wrong, though.
-paul
From: aperception <per...@gm...> - 2013年11月06日 11:52:19
Unfortunately this issue with the color changing after editing axis
parameters still doesn't appear to have been resolved as of 1.3.1 or in the
latest source. Is there an easy fix for it? It's a very useful feature for
me because my figure is embedded in a QT4 GUI without easy access to the
command line.
--
View this message in context: http://matplotlib.1069221.n5.nabble.com/Qt4Agg-backend-edit-curves-and-axis-parameters-tp10161p42461.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
From: Michiel de H. <mjl...@ya...> - 2013年11月06日 01:06:28
Which backend are you using? With the Mac OS X native backend on OS X Mavericks, I have not seen this warning.
Best,
-Michiel.
--------------------------------------------
On Mon, 10/28/13, Bedartha Goswami <go...@pi...> wrote:
 Subject: [Matplotlib-users] OS X Mavericks: CGContextErase warning
 To: mat...@li...
 Date: Monday, October 28, 2013, 7:23 AM
 
 I installed OS X Mavericks a few days
 ago and I am running Mapllotlib Version 1.3.1.
 Everything works fine except that I get a warning every time
 i use the pyplot.show() command.
 
 here is what it looks like:
 ----
 Python[27325] <Error>: The function `CGContextErase'
 is obsolete and will be removed in an upcoming update.
 Unfortunately, this application, or a library it uses, is
 using this obsolete function, and is thereby contributing to
 an overall degradation of system performance.
 ---
 
 I thought I should ask if this is serious and also if
 something can be done about it.
 
 Best,
 Bedartha
 
 
 -----Inline Attachment Follows-----
 
 ------------------------------------------------------------------------------
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application
 performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more.
 Get the most from 
 the latest Intel processors and coprocessors. See abstracts
 and register >
 http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
 -----Inline Attachment Follows-----
 
 _______________________________________________
 Matplotlib-users mailing list
 Mat...@li...
 https://lists.sourceforge.net/lists/listinfo/matplotlib-users
 

Showing 9 results of 9

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /