Python basemap安装
Posted tterminator
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python basemap安装相关的知识,希望对你有一定的参考价值。
一、basemap安装
安装参考链接:https://github.com/matplotlib/basemap
pip install --user git+https://github.com/matplotlib/basemap.git
安装过程等待一段时间,因为basemap有100M左右大小,需要时间下载,安装成功界面如下
使用官网安装教程没有成功,请谨慎使用,这里仅贴出官网链接做参考:https://matplotlib.org/basemap/users/installing.html
二、示例
from mpl_toolkits.basemap import Basemap
import matplotlib.pyplot as plt
map = Basemap()
map.drawcoastlines()
plt.show()
结果如下:
以上是关于Python basemap安装的主要内容,如果未能解决你的问题,请参考以下文章
利用python进行数据分析-学习记录python-matplotlib中Basemap插件的安装
Python实用工具速来!!一篇文章十分钟教你如何使用Python第三方库basemap进行地图绘制