底图子图的问题

时间:2013-06-24 01:19:07

标签: python matplotlib

我需要制作一个包含n个底图子图的图。但是当我这样做时,所有的值都绘制在第一个子图上。

我的数据是一组' n'矩阵,存储在data_all

f, map = plt.subplots(n,sharex=True, sharey=True, figsize=(20,17))

plt.subplots_adjust(left=None, bottom=None, right=None, top=None,
                    wspace=None, hspace=0.)

for i in range(n):
    map = Basemap(projection='merc', lat_0=0, lon_0=180,
                  resolution='h', area_thresh=0.1,
                  llcrnrlon=0, llcrnrlat=-45,
                  urcrnrlon=360, urcrnrlat=45)
    map.drawcoastlines(linewidth=0.5)
    map.drawmapboundary()
    map.drawmapboundary()
    nx = data_all.shape[0]
    ny = data_all.shape[1]
    lon, lat = map.makegrid(ny[i], nx[i])
    z,y = map(lon, lat)
    cs = map.contourf(z, y, data_all[i])

2 个答案:

答案 0 :(得分:12)

我目前无法测试它,但基本上,您只需告诉底图使用哪些轴。

例如:

import matplotlib.pyplot as plt
from mpl_toolkits.basemap import Basemap

fig, axes = plt.subplots(nrows=4, ncols=3)
for ax in axes.flat:
    map_ax = Basemap(ax=ax)
    map_ax.drawcoastlines()
plt.show()

enter image description here

答案 1 :(得分:1)

希望这会对你有所帮助。 https://github.com/matplotlib/basemap/blob/master/examples/panelplot.py 它显示了如何制作多面板图。