Hi,
> I asked him if he had a solution for plotting standard MODIS hdf products
> available here:
> http://rapidfire.sci.gsfc.nasa.gov/realtime/2009300/
>
> In more general terms, what are people using for a 'MODIS workflow'? I
> can't
> imagine I'm the first to want to plot MODIS images using bas
Hi!
This is probably getting a bit off-topic now, maybe better keep this
converation going on python-gis-sig list? I'm cc'ing there
2009/10/27 John [H2O]
> What I want to do is quite simple (I think). I simply would like to be able
> to:
>
> 1) Download any resolution of the hdf files avail
Hi,
I'm not sure this is entirely on-topic as it relates to the matplotlib
sphinx extension. I hope it's still acceptable!
I am writing some documentation using sphinx, and I would like to refer
plots that are rendered from an external python script. I can do the plot
and it gets imported fine ju
Hi,
2009/11/29 Michael Cohen
> Hi all,
>
> I have a plot that has say 6 black X's, each separate, and 6 blue X's,
> also separate, denoting where x's 1-6 have moved to (from black to blue).
> Currently each point is plotted with a separate plot function.
> I would like to generate a plot where ea
Hi,
2009/12/14 Dr. Phillip M. Feldman
> When I generate a map with a background generated via Basemap.bluemarble(),
> the background is extremely dark. Is there any way to get a
> lighter/brighter version? (I've looked at all of the available parameters,
> but none of them seems to allow for a
Hi!
2009/12/14 jenya56
>
> 1.) How to control the size of each circle on the scatter plot
>
Use the "s" option to scatter (units are points**2)
> 2.) How to add the coast line with lambert projection?
>
You want to use the basemap extension. An example can be found in this blog:
<
http://stev
Jeff,
On Mon, Sep 8, 2008 at 6:48 PM, Jeff Whitaker <[EMAIL PROTECTED]> wrote:
> Note that to plot the data with pcolor/pcolormesh of contourf, you don't
> need to interpolate to a native projection grid. You can just do
>
> lons, lats = np.meshgrid(lons,lats)
> x,y = m(lons,lats)
> im = m.pcolo
Hi!
[I think the message didn't get through the first time I sent it. Resending,
and apologies if you get it twice]
I have a rather complex basemap-derived plot that I want to save as
animation.
In essence, it uses the blumarble() to add a nice background, plots some
stuff on top of that, and als
Jeff, thanks for your comment
2009/3/2 Jeff Whitaker
>
> Jose: I think the key is to only create the basemap instance only once (for
> the main plot and for the inset), then re-use that basemap instance each
> time you create an animation frame.
That helps in memory consumption, and that's som
Jeff,
I've been doing some more tests today.
2009/3/3 Jeff Whitaker
>
>Jose: I think the key is to only create the basemap instance only
>>once (for the main plot and for the inset), then re-use that
>>basemap instance each time you create an animation frame.
>>
>> That helps in mem
Jeff,
Solved, I think!
2009/3/3 Jose Gomez-Dans :
> OK, I wasn't aware of this. However, memory consumption still flies. I am
> aware that it could be other bits of the program that are eating up loads of
> memory, but I don't know how to test where the bottleneck is. In the e
Hi,
I would like to plot a density slice scatter plot (when you have lots of
points superimposed, it's very useful). An example from IDL/envi is here: <
http://www2.geog.ucl.ac.uk/%7Eplewis/geog2021/practical1/scatter3.gif>
My rustic approach to solving this problem has been to bin all my data
poi
Hi,
I'd like to plot some EASE Grid global data (the EASE grid is defined for a
cylindrical equal area projection). In proj4 parlance, it is defined as
+proj=cea +lon_0=0 +lat_ts=30 +x_0=0 +y_0=0 +a=6371228 +b=6371228 +units=m
+no_defs
My data are gridded, and I want to use either pcolormesh or i
On 26 May 2010 17:20, Carlos Grohmann wrote:
> I can interpolate my data using rbf, but only inside a rectangular
> area (mesh). I'm looking into how to interpolate data inside a
> circular area, that is, disregarding anything outside a circle (or a
> polygon, like a convex hull)
>
If you can de
Hi,
On 8 January 2011 18:57, OKB (not okblacke) wrote:
> Is there a simple way to get a
> histogram that does not bin any values together at all, but simply
> creates one bar for each distinct value in the dataset?
You can just use the bins keyword to plt.hist (or np.hist):
plt.hist ( x, bins=np
Tim,
On 1/19/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> how can I read data in that
> x gets the latitude
> y gets the longgitute
> z gets the data which will be shown in different color accoring to their
> values?
Use pylab.load to load the data into an array. Then, the rest of what
yo
Hi,
On 5/16/07, Thorsten Kranz <[EMAIL PROTECTED]> wrote:
> Hi, I have a question about the command "imshow". Is there a way to have
> such a colorplot only limited to a circular area?
>
> I want to have it look like the colorplots in
>
> http://www.uke.uni-hamburg.de/kliniken/neurologie/downloads
Hi,
We are trying to plot a climogram (where you have temperature on the
left hand axis, and precipitation on the RHS). The data need to be
properly scaled as well. We have used twinx() to get the two axes.
However, the precipitation (plotted as bars) goes over the temperature
line, when it should
Hi all,
First, sorry for the crossposting. I have drafted a small document (it
is in Spanish, if there's interest, I'll have a go at translating it)
on how to use OGR from Python access geospatial data, which can be
further analysed or plotted with matplotlib. It is a very brief
introduction, and s
Hi,
I am plotting a number of polygons with different colours (results
from an image clustering or classification algorithm). I'd like to
have a map-like legend, with a square filled with some colour and some
text describing what it is (a quick search in Google comes up with the
following example:
Hi,
I am using Matplotlib to produce colormaps which I use with other
programs. I would like to produce a PNG file with the used colormap
(so that I can overlay). Rather than doing an imshow()
followed by colorbar, is there an easy way I could pass the colorbar
my cmap instance to have it plotted o
Hi,
On 9/5/07, Patrick Bradley <[EMAIL PROTECTED]> wrote:
> lg = legend()
> lg.get_frame().set_facecolor('black')
Does anyone know how to set this background to transparent? I think I
sent a message to the list a few days ago, but I think it never made
it...
Cheers!
Jose
---
Hi Patrick,
Thanks for your message!
On 9/10/07, Patrick Bradley <[EMAIL PROTECTED]> wrote:
> lg = legend()
> lg.get_frame().set_fill(False)
Mmmm, this is OK, let's say I wanted a figure with a transparent
background. I can't find a set_fill() method for this class. I have
tried the facecolor at
Hi Lionel,
On 9/20/07, Lionel Roubeyrie <[EMAIL PROTECTED]> wrote:
> Hi Jeff,
> thanks for the reply. Effectively, I saw the warpimage example, and based on
> that I just want to know if somebody has already used the PCL module to
> retrieve geographical informations (or another module).
With GDA
Hi,
Some colleagues have sent some plots which they generated using IDL
(boo!!! hiss!! :D), and they look quite dissimilar to my matplotlib
ones. I would like to mimic their layout as much as possible, which so
far is a success. The only problem is that I don't know what font to
use. In IDL, I beli
Hi!
I have two datasets with different data coordinates, which I want to plot on
different subplots, all showing the same extent. I want to be able to zoom
into one of the subplots, and have the other follow (through some conversion
of the former's extent).
Initially, I just want one plot to follow
Hi,
On Thu, Feb 28, 2008 at 1:47 PM, John Hunter <[EMAIL PROTECTED]> wrote:
>
> If I understand what you are trying to do, you should be using the
> sharex and sharey settings for ax1
Mmm, I don't think so. The extent of one image and other are in different
units, so I need to transform whatev
Hi,
On Thu, Feb 28, 2008 at 7:45 PM, chombee <[EMAIL PROTECTED]> wrote:
> The problem is that the legend displays only a rectangular block
> indicating the color for each plot. Is there a way to get the marker
> shapes of scatter plots into the legend?
>
I faced a similar problem some time ago,
Hi!I searchd in the documentation, but couldn't find anything useful. I want to be able to plot a couple of yearly time series (so that one can see the difference between some variable in one particular year with respect to another year). Additionally, I would also like to have a plot of the mean (
Hi!I have some unicode strings to insert accents into plot titles, axes and labels. As output, I produce both PNGs and EPS files. I don't select any backend (I guess TKAgg is chosen by default), and run the program on Windows. I use matplotlib
0.87.Anyway, the problem is that in the EPS files, the
Hi!
I am coding a little application that shows a number of subplots (of
the 511, 512...515 type) stacked up. They all have the same x-axis,
and I want them to only have the xticks labels on the downward most
axes. The subplots are defined in a matplotlib.figure.Figure object,
and have been created
Hi!
We are tryint to access time data stored in an SQL The query returns a
date object of type DbiDate. When printed, we get a nicely formatted
text date. If cast into a float or int, you get the number of seconds
elapsed since 1/1/1970. The way we are dealing with the conversion
from this format i
Hi!
I don't know whether it is easy to produce a plot of a shapefile (a
geographical information systems vector file format, with an attached
database) using MPL: An example would be to have the a map with the
mean temperature for every country in the month of august mapped to a
colour. The shapefi
33 matches
Mail list logo