ENV Mac anaconda4.4.0(python3.6)
Library Install GEOS geometry engine https://trac.osgeo.org/geos/
brew install geos
3.6.2(2017/08/XX)
Basemap(matplotlib basemap toolkit)
plotting library of maps
https://github.com/matplotlib/basemap/archive/v1.1.0.tar.gz
after decompressing the file
python setup.py install
https://matplotlib.org/basemap/users/installing.html
pyproj
PROJ.4 library
pip install pyproj
trial Map display
from mpl_toolkits.basemap import Basemap
import matplotlib.pyplot as plt
m = Basemap(projection='mill')
m.drawcoastlines()
m.fillcontinents()
m.drawmapboundary()
plt.show()
Recommended Posts