basemap
basemap copied to clipboard
Plot on map projections (with coastlines and political boundaries) using matplotlib
Is the indentation wrong here? The current indentation causes polygons and polygon_types to have different number of elements under some circumstances. https://github.com/matplotlib/basemap/blob/master/lib/mpl_toolkits/basemap/__init__.py#L1419
I'm extending basemap to work with magnetic coordinates. Basically, latitude longitude are converted to/from magnetic coordinates during calls to `Basemap.__call__()`. However, I get results like this:  It seems that...
I am plotting gridded satellite data using basemap 1.0.7 (I can't get 1.0.8 via pip yet). The grid is 0.25 degrees resolution, global coverage. For polar views, I use pcolormesh....
This may be related to #168, but might not. If your 'sper' basemap is set up to choose corners using xy values, then the baselayers are not displayed properly. These...
See here: https://gist.github.com/anonymous/9762ac85409254358b8f I'm using basemap 1.0.7 on OSX, via miniconda packages.
Hi I'm trying to plot vectors in the Southern ocean using basemap and matplotlib. To illustrate my problem I've created a zonal jet at 60S. I have U and V...
Hi, I have stumbled over a bug in scatter plot. With latlon=True, it crashes with zero, one or two points. Example code: ``` python import matplotlib.pyplot as plt from mpl_toolkits.basemap...
At the moment basemap seems only to support the plain etopo1 map (in `data/etopo1.jpg`), but other versions exist, i.e. "etopo1 ice surface". @efiring what do you think about moving this...
I am trying to set up Basemap to use a Cylindrical Equal Area projection and to place the origin at a specific lat/lon (this is to match some input x/y...
I installed basemap the following: Download the source from here: ``` http://sourceforge.net/projects/matplotlib/files/matplotlib-toolkits/ ``` Follow the instructions: ``` cd geos-3.3.3 export GEOS_DIR=/usr/local ./configure --prefix=$GEOS_DIR make; make install ``` Then I went...