- 积分
- 14
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2021-6-26
- 最后登录
- 1970-1-1
![未绑定新浪微博用户 新浪微博达人勋](source/plugin/sina_login/img/gray.png)
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
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[:, :])
|
|