1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
| import xarray as xr import matplotlib.pyplot as plt import cartopy.crs as ccrs import cartopy.feature as cfeature
f = xr.open_dataset('/home/mw/input/pythonbook9857/data.nc') z = f['hgt'].loc['2005-07-01',500,:,:] t = f['air'].loc['2005-07-01',700,:,:] lat = f['lat'] lon = f['lon']
fig = plt.figure(figsize=(15, 12))
ax1 = fig.add_subplot(2,2,1, projection=ccrs.PlateCarree())
ax1.set_extent([60,180,0,90])
ax1.set_xticks(np.arange(60,210,30), crs=ccrs.PlateCarree()) ax1.set_yticks(np.arange(0,90,30), crs=ccrs.PlateCarree()) ax1.xaxis.set_major_formatter(cticker.LongitudeFormatter()) ax1.yaxis.set_major_formatter(cticker.LatitudeFormatter())
c1 = ax1.pcolor(lon, lat, t,vmin=-20, vmax=20,cmap='bwr',zorder=1,transform=ccrs.PlateCarree())
ax1.set_title('(a) July 2005 500hPa T',loc='center',fontsize=18)
fig.colorbar(c1,ax=ax1,fraction=0.032)
ax2 = fig.add_subplot(2,2,2, projection=ccrs.PlateCarree())
ax2.set_extent([60,180,0,90])
ax2.set_xticks(np.arange(60,210,30), crs=ccrs.PlateCarree()) ax2.set_yticks(np.arange(0,90,30), crs=ccrs.PlateCarree()) ax2.xaxis.set_major_formatter(cticker.LongitudeFormatter()) ax2.yaxis.set_major_formatter(cticker.LatitudeFormatter())
c2 = ax2.pcolor(lon, lat, t, vmin=-20, vmax=20, cmap='bwr', zorder=1, edgecolors='k', transform=ccrs.PlateCarree())
ax2.set_title('(b) July 2005 500hPa T',loc='center',fontsize=18)
fig.colorbar(c2,ax=ax2,fraction=0.032)
t_copy = t.values.copy() t_copy[t_copy>15] = np.nan
ax3 = fig.add_subplot(2,2,3, projection=ccrs.PlateCarree())
ax3.set_extent([60,180,0,90])
ax3.set_xticks(np.arange(60,210,30), crs=ccrs.PlateCarree()) ax3.set_yticks(np.arange(0,90,30), crs=ccrs.PlateCarree()) ax3.xaxis.set_major_formatter(cticker.LongitudeFormatter()) ax3.yaxis.set_major_formatter(cticker.LatitudeFormatter())
c3 = ax3.contourf(lon, lat, t_copy,levels=np.arange(-21,22,1), extend='both', cmap='bwr', zorder=1, transform=ccrs.PlateCarree())
ax3.set_title('(c) July 2005 500hPa T',loc='center',fontsize=18)
fig.colorbar(c3,ax=ax3,fraction=0.032)
ax4 = fig.add_subplot(2,2,4, projection=ccrs.PlateCarree())
ax4.set_extent([60,180,0,90])
ax4.set_xticks(np.arange(60,210,30), crs=ccrs.PlateCarree()) ax4.set_yticks(np.arange(0,90,30), crs=ccrs.PlateCarree()) ax4.xaxis.set_major_formatter(cticker.LongitudeFormatter()) ax4.yaxis.set_major_formatter(cticker.LatitudeFormatter())
c4 = ax4.pcolor(lon, lat, t_copy,vmin=-20, vmax=20,cmap='bwr',zorder=1,edgecolors='k',transform=ccrs.PlateCarree())
ax4.set_title('(d) July 2005 500hPa T',loc='center',fontsize=18)
fig.colorbar(c4,ax=ax4,fraction=0.032) plt.show()
|