使用Basemap将饼图放在地图上

时间:2014-06-19 13:15:36

标签: python map matplotlib charts matplotlib-basemap

我想使用Basemap和Matplotlib在地图上绘制饼图。

你知道这样做的方法吗?

1 个答案:

答案 0 :(得分:3)

您可以使用inset_axes将轴添加到底图。我修改了第一个示例here以包含饼图。

from mpl_toolkits.basemap import Basemap
from mpl_toolkits.axes_grid1.inset_locator import inset_axes
import matplotlib.pyplot as plt

# setup Lambert Conformal basemap.
fig = plt.figure()
ax = fig.add_subplot(111)
m = Basemap(width=12000000,height=9000000,projection='lcc',
            resolution='c',lat_1=45.,lat_2=55,lat_0=50,lon_0=-107.,ax=ax)
# draw coastlines.
m.drawcoastlines()
# draw a boundary around the map, fill the background.
# this background will end up being the ocean color, since
# the continents will be drawn on top.
m.drawmapboundary(fill_color='aqua')
# fill continents, set lake color same as ocean color.
m.fillcontinents(color='coral',lake_color='aqua')

axin = inset_axes(m.ax,width="30%",height="30%", loc=3)
axin.pie([100,200,3000])
plt.show()

pie chart on a map

相关问题