Dear all,
I would like to project a graphics file of some colour coded geo data
that is already given in lat-lon with corners
specified in lat-lon onto a map. The projection of the result should
be flexible. In the end the resulting
plot shows a section of the earth, either from a satallite
Dear All,
I am not very much into matplotlib, so please bear with me if I am
asking a trivial question.
I put together this small snippet with the help I got on the mailing
list and using the arrow example at
http://bit.ly/cI9dqj .
My problem is (or at least I believe it to be) the fact that I
Hi,
I have a 3d plot that I am trying to plot and I can not get rid of the marker
edge. an example would help
Bryn
--
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(T
On Fri, Oct 15, 2010 at 3:10 AM, Robert Fenwick
wrote:
> I have a 3d plot that I am trying to plot and I can not get rid of the marker
> edge. an example would help
What have you tried -- if line is a Line3D object, the following should work:
line.set_markeredgecolor('None')
Note that 'Non
On Fri, Oct 15, 2010 at 9:33 PM, Lorenzo Isella
wrote:
> arr = Arrow(0, 0, .3, .3, edgecolor='white')
>
> # Get the subplot that we are currently working on
> ax = gca()
>
> # Now add the arrow
> ax.add_patch(arr)
>
>
I recommend you to use the annotate command.
annotate("", xy=(0, 0), xytext=(
On Thu, Oct 14, 2010 at 2:07 PM, Carl Karsten wrote:
> yep - thanks. Not exactly how I remember it from the talk. wonder
> where the story got changed.
Hey Carl -- I added the talk video link on the mpl website
http://carlfk.blip.tv/file/2557425
The dolphins story you were referring to sta
Since you are talking about markers, I assume that you made the plot with
the scatter() function.
The scatter() function creates the appropriate collection of patches
(polygon, circle, etc.) depending on what the marker style was passed to
it. As such, the normal 'marker*' properties do not work
Ugh, if I could only undo an email send 20 seconds after I hit go ;)
If setting 'edgewidths' to 0 doesn't work, try setting 'edgecolors' to
'None' as per JDH's suggestion above, which is the same suggestion as mine
except for the "marker" part of the property is removed.
On Fri, Oct 15, 2010 at 1
Marker types in 3d plots
Hi,
A few problems with marker types in 3D plots. I can use "o" and "^"
and "+". However I can not use "." or "," it seems a bit odd to me
however I get the below error. It should be possible to repeat this
with the following input
Traceback (most recent call last
Right, there is only a subset of marker styles supported in the scatter
function, both 2D and 3D. This is because, behind the scenes, it's drawing
all of the symbols as patches. See
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.scatter
On Fri, Oct 15, 2010 at 10:43 A
On 10/14/10 9:52 PM, Alessio Civ wrote:
> Let' put things this way: if you have to work with many records, it is
> better if you have a database.
pyTables is worth a look, too"
http://www.pytables.org/moin
-Chris
--
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Division
NOAA/N
I want to do something like this:
import matplotlib.pyplot as plt
def onclick(event):
if event.button==1:
plt.close()
fig = plt.gcf()
cid = fig.canvas.mpl_connect('button_press_event', onclick)
plt.show()
I've tried several variations on this theme, but all of them cause
c
On 10/15/10 5:16 PM, Paul Ivanov wrote:
> I want to do something like this:
>
>import matplotlib.pyplot as plt
>def onclick(event):
>if event.button==1:
> plt.close()
>fig = plt.gcf()
>cid = fig.canvas.mpl_connect('button_press_event', onclick)
>plt.show()
>
> I've
Dear Daniel,
to give the corners of an array, some "matplotlib" plotting functions have the
"extent" keyword, e.g. "contour" and "imshow". You can use this to put your
data on the map. However, the functions of the "Basemap" class do not support
this functionality. "Basemap.imshow" overwrites
14 matches
Mail list logo