| 
 
	积分14贡献 精华在线时间 小时注册时间2021-6-26最后登录1970-1-1 
 | 
 
| 
x
登录后查看更多精彩内容~您需要 登录 才可以下载或查看,没有帐号?立即注册 
  citae1 = np.zeros((73, 144))
 for i in range(0, 73):
 for j in range(0, 144):
 citae1[i, j] = xiangdangweiwen(air1[i, j], tdd1[i, j], 850)+273.16
 # print(citae1)
 
 ##经纬度
 lon = np.arange(0, 360, 2.5)
 lat = np.arange(-90, 92.5, 2.5)
 # 建立画布
 proj = ccrs.PlateCarree()  # 设置投影
 fig, f2_ax1 = plt.subplots(figsize=(35, 25), subplot_kw=dict(projection=proj))
 leftlon, rightlon, lowerlat, upperlat = (-180, 180, -90, 90)
 # 绘制citae1 = f2_ax1.contourf(lon, lat, citae1[:, :])
 
 | 
 |