basemap
basemap copied to clipboard
Plot on map projections (with coastlines and political boundaries) using matplotlib
Hi Using Python 2.7.8 and Basemap 1.0.7 there seems to be a problem plotting points that wrap around longitudinal map boundaries in plot() method of Basemap if the points wrap...
```py /home/naught101/miniconda3/envs/science/lib/python3.6/site-packages/mpl_toolkits/basemap/__init__.py:1708: MatplotlibDeprecationWarning: The axesPatch function was deprecated in version 2.1. Use Axes.patch instead. limb = ax.axesPatch /home/naught101/miniconda3/envs/science/lib/python3.6/site-packages/mpl_toolkits/basemap/__init__.py:1711: MatplotlibDeprecationWarning: The axesPatch function was deprecated in version 2.1. Use Axes.patch instead....
Hi, I ran into a numerical precision issue when using the rotate_vector function with 32bit floats as input data. In this case, the lat/lon increments used to determine the relative...
``` from mpl_toolkits.basemap import Basemap import matplotlib.pyplot as plt map = Basemap(projection='robin', lat_0=0, lon_0=100) map.readshapefile('./Paleo_Sturtian_750Ma', 'Paleo_Sturtian_750Mm') plt.show() ``` The shapefile I'm using can be downloaded from: [my github](https://github.com/avipersin/shapefiles). Using the...
The code below is supposed to colour all the states of Vietnam: ``` import pandas as pd import matplotlib.pyplot as plt from mpl_toolkits.basemap import Basemap fig, ax = plt.subplots(figsize=(10,20)) #...
Dear all, after struggling with the installation of basemap I decided to post here. I have tried a couple of different 'hacks' found in google but none worked. Full error:...
The north pole works fine when setting lat_0=90 but when setting lat_0=-90 it doesn't work. The data shown in the southern projection is nonsense. Related to #347 and #350 but...
Hello! ... I reported the following issue in the Matplotlib repo... and they said to bring it to your attention: The Matplotlib Sample: "Plot Precip With Filled Contours" https://matplotlib.org/basemap/users/examples.html code...
The shapefiles have the wrong state divisions over Brazil. Using the function mpl_toolkits.basemap.drawstates() in any resolution the state lines are wrong.
Basemap documentation states that `ortho` projection can take ll/ur crnr limits. The following code seems like it should work (mpl 1.4.0), but does not: ``` from mpl_toolkits.basemap import Basemap m...