下载ERA5数据



从官网上下载ERA5主要分为三步:

  1. 官网注册账号,获取CDS API key。
  2. 安装python相关的库。
  3. 复制粘贴代码,下载数据。


注册账户获取密钥


点击网址: ERA5注册网址 ,右上角点击注册账户,一般使用教育邮箱


7c24c8ac08c441f69490209d6eef01f4.png


注册完成后登录,然后还是在这个网址: 获取key密钥 ,点击下面图中的红色框,


5b3dc9f3678c441082b0036d2c974460.png


然后,下图红框内就是你的密钥,将其全部复制下来:


e8c3d42a254942b88d660ce6ab0bb0bf.png


如果你是Linux系统,就在你的系统用户目录下创建一个 .cdsapirc 的文件,将刚刚复制的内容粘贴到该文件下:


4a47f24c6d5747578489453ba4e58e86.png

11f29e7b71a747a49a0bb55237ac9ade.png

  • 如果你是windows系统,就在c盘/用户/用户名 这个目录下创建一个 创建一个 .cdsapirc 文件。可以先建立一个txt文件,将内容粘贴进去后再改文件名为 .cdsapirc


安装python的cdsapi库


我这里是在Linux系统下, 直接在你的python环境下使用命令: conda install cdsapi

即可。window下应该同理。


获取ERA5数据


下载地址 在官网上搜索你要下载的数据类型:


496731e7bb584a94b3ebebf1ed1a1b84.png

点击进入后勾选你需要的参数、时间、变量等。

c472f022183046f0b23712ec61147e71.png

然后到最后,选择红框内显示下载代码

1444ed20a6114492943614f86e8148a8.png

97a2970218214a3082d5a09d641692bf.png

将代码复制到你的python脚本中,运行脚本即可下载。


运行 WRF 模式



基于上述方式,我们可以通过下载ERA5数据制作WRF模式的初始场,运行wrf模式。其中,需要下载的ERA5的数据如下所示:


3D数据:


ERA5 monthly averaged data on pressure levels from 1979 to present**:Monthly averaged reanalysis by hour of day**


变量:


  • Geopotential
  • Relative humidity
  • U-component of wind
  • V-component of wind
  • Temperature


压力层

所有


year

2022


month

02


day

17-18


Pressure level data (download.py)



2D数据:


Product type


Monthly averaged reanalysis by hour of day


Variable


  • 10m u-component of wind
  • 10m v-component of wind
  • Mean sea level pressure
  • Sea surface temperature
  • Surface pressure
  • 2m temperature
  • Soil data (temperature and moisture) and soil height

year

2021


month

02


day

17-18


Single level data (down.py)



具体细节的运行可以看这篇博客:

https://blog.csdn.net/weixin_44237337/article/details/123152177?spm=1001.2014.3001.5501

下面只介绍不同的地方


WPS前处理


链接Vtable这里需要进行修改,如下:


cd  /Users/WRF/ERA_practice/
ln -sf ungrib/Variable_Tables/Vtable.ECMWF  Vtable


然后同样是链接你下载的ERA5数据:

./link_grib.csh  ../ERA5_data/ERA5-2022-02_17-18*


ungrid


因为我这个里是三层嵌套,需要修改namelist.wps后,再运行ungrid程序


&share
 wrf_core = 'ARW',
 start_date = '2022-02_17_00:00:00','2022-02_17_00:00:00','2022-02_17_00:00:00',
 end_date = '2022-02_17_06:00:00','2022-02_17_06:00:00','2022-02_17_06:00:00',
 interval_seconds = 10800,
 max_dom = 3,
 io_form_geogrid = 2, 
 opt_output_from_geogrid_path = '/WRF/ERA5_pactice/',
&geogrid
 parent_id         =   1,      1,      2,
 parent_grid_ratio =   1,      3,      3,
 i_parent_start    =   1,     21,    27,
 j_parent_start    =   1,     21,    26,
 e_we                     = 247,      574,    1471,
 e_sn                     = 158,      370,      889,
 geog_data_res     = 'default','default','default',
 dx = 36000,
 dy = 36000,
 map_proj  = 'mercator',
 ref_lat   =  15.00,
 ref_lon   = 0.00,
 truelat1  =  10.0,
 truelat2  =  20.0,
 stand_lon =0.00,
  geog_data_path = '/Software/Models/WRF/WPS_GEOG',
 !!!!!!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT NOTE !!!!!!!!!!!!!!!!!!!!!!!!!!!!
 ! The default datasets used to produce the MAXSNOALB and ALBEDO12M
 ! fields have changed in WPS v4.0. These fields are now interpolated
 ! from MODIS-based datasets.
 ! To match the output given by the default namelist.wps in WPS v3.9.1,
 ! the following setting for geog_data_res may be used:
 ! geog_data_res = 'maxsnowalb_ncep+albedo_ncep+default', 'maxsnowalb_ncep+albedo_ncep+default', 
 !!!!!!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT NOTE !!!!!!!!!!!!!!!!!!!!!!!!!!!!
&ungrib
 out_format = 'WPS',
 prefix = '/WRF/ERA5_pactice/FILE',
&metgrid
 fg_name = 'FILE',
 io_form_metgrid = 2, 
 opt_output_from_metgrid_path = '/WRF/ERA5_pactice/',
/


下面正常运行 ./geogrid.exe ./metgrid.exe


WRF后处理


修改一下 namelist.input ,与 wps 中的一致:


 &time_control
 run_days                            = 0,
 run_hours                           = 06,
 run_minutes                         = 0,
 run_seconds                         = 0,
 start_year                          = 2022, 2022, 2022,
 start_month                         = 02,   02,   02,
 start_day                           = 17,   17,   17,
 start_hour                          = 00,   00,   00,
 end_year                            = 2022, 2022, 2022,
 end_month                           = 02,   02,   02,
 end_day                             = 17,   17,   17,
 end_hour                            = 06,   06,   06,
 interval_seconds                    = 10800,
 input_from_file                     = .true.,.true.,.true.,
 history_interval                    = 60,  60,   60,
 frames_per_outfile                  = 1000, 1000, 1000,
 restart                             = .false.,
 restart_interval                    = 1440,
 io_form_history                     = 2
 io_form_restart                     = 2
 io_form_input                       = 2
 io_form_boundary                    = 2
 &domains
 time_step                           = 60,
 time_step_fract_num                 = 0,
 time_step_fract_den                 = 1,
 max_dom                             = 3,
 i_parent_start    =   1,     21,    27,
 j_parent_start    =   1,     21,    26,
 e_we                     = 247,      574,    1471,
 e_sn                     = 158,      370,      889,
 e_vert                              = 50,    50,   50,
 p_top_requested                     = 5000,
 num_metgrid_levels                  = 38,
 num_metgrid_soil_levels             = 4,
 dx                                  =  36000,  12000,4000,
 dy                                  =  36000,  12000,4000,
 grid_id                             = 1,     2,     3,
 parent_id         =   1,      1,      2,
 parent_grid_ratio =   1,      3,      3,
 parent_time_step_ratio              = 1,     3,     3,
 feedback                            = 1,
 smooth_option                       = 0,
 &physics
 physics_suite                       = 'CONUS'
 mp_physics                          = -1,    -1,    -1,
 cu_physics                          = -1,    -1,     0,
 ra_lw_physics                       = -1,    -1,    -1,
 ra_sw_physics                       = -1,    -1,    -1,
 bl_pbl_physics                      = -1,    -1,    -1,
 sf_sfclay_physics                   = -1,    -1,    -1,
 sf_surface_physics                  = -1,    -1,    -1,
 radt                                = 30,    30,    30,
 bldt                                = 0,     0,     0,
 cudt                                = 5,     5,     5,
 icloud                              = 1,
 num_land_cat                        = 21,
 sf_urban_physics                    = 0,     0,     0,
 &dynamics
 hybrid_opt                          = 2, 
 w_damping                           = 0,
 diff_opt                            = 1,      1,      1,
 km_opt                              = 4,      4,      4,
 diff_6th_opt                        = 0,      0,      0,
 diff_6th_factor                     = 0.12,   0.12,   0.12,
 base_temp                           = 290.
 damp_opt                            = 3,
 zdamp                               = 5000.,  5000.,  5000.,
 dampcoef                            = 0.2,    0.2,    0.2
 khdif                               = 0,      0,      0,
 kvdif                               = 0,      0,      0,
 non_hydrostatic                     = .true., .true., .true.,
 moist_adv_opt                       = 1,      1,      1,     
 scalar_adv_opt                      = 1,      1,      1,     
 gwd_opt                             = 1,
 &bdy_control
 spec_bdy_width                      = 5,
 specified                           = .true.
 &grib2
 &namelist_quilt
 nio_tasks_per_group = 0,
 nio_groups = 1,
 /


之后正常运行./real.exe、./wrf.exe即可、、、



使用shell在Linux系统下下载cmip6文件出现报错:No ESG Credentials found in /Users/daniele/.esg/credentials.pem python--海温、OLR数据分布做显著性检验,绘制空间分布并打点 python--使用convolve 对二维数据进行平滑 linux下使用.csh脚本自动化下载GFS气象预报数据 无事来学学--Kettle的转换概念和七大特点详细讲解
转换包括一个或多个步骤,步骤之间通过跳(hop)来连接。跳定义了一个单向通道,允许数据从一个步骤流向另一个步骤。在Kettle中,数据的单位是行,数据流就是数据行从一个步骤到另一个步骤的移动。
VS Code 折腾记 - (13) VS Live Share (可提高效率的代码实时协作插件)的使用姿势
这货憋了大半年,终于进入可用状态了,体验了一段时间后,该水文诞生了... 这货是什么,微软自家出的实时协作插件,有用过石墨文档或者腾讯文档的没?差不多那样了.
MD5简介 Message Digest Algorithm MD5(中文名为消息摘要算法第五版)为计算机安全领域广泛使用的一种散列函数,用以提供消息的完整性保护。该算法的文件号为RFC 1321(R.Rivest,MIT Laboratory for Computer Science and RSA Data Security Inc. April 1992)。
[.NET领域驱动设计实战系列]专题五:网上书店规约模式、工作单元模式的引入以及购物车的实现
原文:[.NET领域驱动设计实战系列]专题五:网上书店规约模式、工作单元模式的引入以及购物车的实现   在前面2篇博文中,我分别介绍了规约模式和工作单元模式,有了前面2篇博文的铺垫之后,下面就具体看看如何把这两种模式引入到之前的网上书店案例里。
使用shell在Linux系统下下载cmip6文件出现报错:No ESG Credentials found in /Users/daniele/.esg/credentials.pem python--海温、OLR数据分布做显著性检验,绘制空间分布并打点 python--使用convolve 对二维数据进行平滑 linux下使用.csh脚本自动化下载GFS气象预报数据