basemap
basemap copied to clipboard
Plot on map projections (with coastlines and political boundaries) using matplotlib
I'm getting nothing from stackoverflow so I post it here. The problem is I can't let `bluemarble` to plot a map showing the Indo-Pacific longitudinal section, covering the longitude band...
Trying to run the [`save_background.py`](https://github.com/matplotlib/basemap/blob/master/examples/save_background.py) example with basemap 1.0.7 and matplotlib 2.0 does not produce the expected two figures with the same background. Instead the second figure only has the...
The pcolormesh docs (as noted in this issue https://github.com/matplotlib/basemap/issues/107) explain that: "Ideally the dimensions of x and y should be one greater than those of data; if the dimensions are...
Hi, This may be a followup of a previous closed issue (https://github.com/matplotlib/basemap/issues/118). I am making polar stereographic projection pcolormesh plots of some sea ice data. It works fine with the...
This might be related to https://github.com/matplotlib/basemap/issues/183 I have a quite simple global 0.1 degree image that I would like to put onto a map. The code for reproducing the problem...
Hi there, Some arcgis images should be transparent. For instance Ocean/World_Ocean_Reference which includes only labels. If user wants to add two arcgis images the second one must be obtained with...
Compare 1.0.8:  with 1.1.0 (slightly cropped top, left, right and bottom):  Both from http://www.lfd.uci.edu/~gohlke/pythonlibs/#basemap
Issue described here: [http://stackoverflow.com/questions/22635144/preserving-axis-annotation-while-interactively-zooming-in-on-a-matplotlib-basema](http://stackoverflow.com/questions/22635144/preserving-axis-annotation-while-interactively-zooming-in-on-a-matplotlib-basema) Axis used in Basemap plots loses the tickmarks when plot is zoomed. I would suggest a boolian operator to allow for readjustment of axis ticks?
`plotparallels()` and `plotmeridians()` only support `xoffset` or `yoffset` not both. `plotparallels()` and `plotmeridians()` do not support `horizontalalignment` or `verticalalignment` via `kwargs` as these are hard coded within Basemap. I found...
I am testing the following eck4 meridian labeling example: ``` def label_bug(celestial=True, lon_0=65): m = Basemap(projection='eck4', lon_0=lon_0, resolution=None, celestial=celestial) m.drawmeridians([lon_0, lon_0 + 60], labels=[0,0,1,0], labelstyle='+/-') m.drawmapboundary() ``` With normal coordinates,...