在Python中绘制(lattitude,longitude,value)-tuples列表?
作者:互联网
我有一个(纬度,经度,值)列表 – 我想用Basmap显示的元组.最简单的方法是什么?
data = [(1, 2, 0.12323),
(2, 5, 0.23232),
(4, 52,0.23131)
.
. tenthousand times this.
.
]
解决方法:
我没有使用底图,但看起来你想要的是scatter()方法:
http://matplotlib.github.com/basemap/api/basemap_api.html#mpl_toolkits.basemap.Basemap.scatter
它采用与matplotlib.pyplot.scatter方法相同的参数:
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.scatter
标签:python,matplotlib,geocoding,matplotlib-basemap 来源: https://codeday.me/bug/20190709/1414603.html