basemap icon indicating copy to clipboard operation
basemap copied to clipboard

Plot on map projections (with coastlines and political boundaries) using matplotlib

Results 127 basemap issues
Sort by recently updated
recently updated
newest added

This code is from Basemap docs pages, with some changing to focus on my issue at hand. I want to color(in this case, magenta) all lands(Antarctica can be overlooked), and...

I'm looking at https://matplotlib.org/basemap/users/examples.html, specifically, at the example entitled "Pseudo-color plot of SST and sea ice analysis". When I try to run that example, I get an I/O error at...

please see it at https://github.com/matplotlib/matplotlib/issues/23186

I'm using Python 3.8.5 Matplotlib version 3.1.2 and basemap-1.2.2+dev I'm running something like: ``` llon = lons.min() llat = lats.min() ulon = lons.max() ulat = lats.max() fig, ax = plt.subplots()...

Bug report coming to me from off-list: > I am currently trying the wmsimage() after > installing the OWSLib. I have tried a few url services, for example: ``` from...

Many of the basemap examples https://matplotlib.org/basemap/users/examples.html are broken. This is mainly due to the datasets no longer existing at the original locations. Instead of statically linking to the datasets which...

I am trying to draw continental coastlines with basemap. However, the following: ```python from mpl_toolkits.basemap import Basemap m = Basemap(projection='eck4', lon_0=0, resolution='l') m.drawcoastlines() ``` cuts off the Antarctic coastline at...

Could the conda package be upgrade to depend on geos 3.4.x? I find basemap to be the last conda package to depend on the older 3.3.x versions and it creates...

I'm afraid this may be a stupid question, but I have found conflicting information about the latest basemap version and I'd like to know the correct answer. And maybe someone...