I need to make a graph with n number of subtasks of the base map. But when I do this, all the values ββare displayed on the first subtitle.
My data is a set of 'n' matrices stored in 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])
source share