我有一个(纬度,经度,值)列表 - 我想用Basemap显示的元组。最简单的方法是什么?
data = [(1, 2, 0.12323),
(2, 5, 0.23232),
(4, 52,0.23131)
.
. tenthousand times this.
.
]
答案 0 :(得分:1)
我没有使用过底图,但看起来你想要的是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