爱气象,爱气象家园! 

气象家园

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博登陆

只需一步, 快速开始

搜索
查看: 1545|回复: 1

求era5资料直接画降水空间分布的脚本

[复制链接]

新浪微博达人勋

发表于 2023-6-27 19:29:08 | 显示全部楼层 |阅读模式

登录后查看更多精彩内容~

您需要 登录 才可以下载或查看,没有帐号?立即注册 新浪微博登陆

x
era5直接画降水场
密码修改失败请联系微信:mofangbao

新浪微博达人勋

发表于 2023-6-28 17:22:38 | 显示全部楼层
import  pandas as pd
import xarray as xr
import matplotlib.pyplot as plt
import numpy as np
import cartopy.crs as ccrs
import cartopy.feature as cfeat
from cartopy.io.shapereader import Reader
from cartopy.mpl.ticker import LongitudeFormatter,LatitudeFormatter


f=xr.open_dataset("c:/Users/Yagma/Desktop/ERA5-pr-0606.nc")

tp=f['tp'].loc['2023-06-06-15',50:10,80:140]*1000
lat=f['latitude'].loc[50:10]
lon=f['longitude'].loc[80:140]


fig=plt.figure(figsize=(8,8))
ax=fig.add_subplot(111,projection=ccrs.PlateCarree())
ax.add_feature(cfeat.OCEAN.with_scale('50m'), zorder=0)

ax.xaxis.set_major_formatter(LongitudeFormatter())
ax.yaxis.set_major_formatter(LatitudeFormatter())
ax.set_xticks(np.arange(80,141,20),crs=ccrs.PlateCarree())
ax.set_yticks(np.arange(10,51,20),crs=ccrs.PlateCarree())

ax.set_extent([80,140,10,50],crs=ccrs.PlateCarree())


les=[0.1,1,2,3,4,5,6,7,8]
cn=ax.contourf(lon,lat,tp, transform = ccrs.PlateCarree(),levels=les,cmap=plt.get_cmap('tab20'))

plt.colorbar(cn, cax=fig.add_axes([0.21, 0.05, 0.6, 0.02]),orientation='horizontal')

plt.show()
密码修改失败请联系微信:mofangbao
回复 支持 2 反对 0

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册 新浪微博登陆

本版积分规则

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

快速回复 返回顶部 返回列表