How to use multiple data sources(srtm_3s+default) to perform geogrid on topography data?

lyg

New member
Hello, WRF Forum!
The problem I encountered is the same as the post ( SRTM_3S), but this problem seems not to have been resolved. Therefore, to facilitate my direct adoption of his statement, I proceeded accordingly.
I have successfully imported the srtm 3s data as static topography data and used it in my setup.
Since the srtm 3s data does not cover the entire model area, when I used namelist.wps and set "geog_data_res = 'srtm_3s+default'", the following occurred:
The output of HGT_M was displayed as 0 in all other places in the model area where the srtm_3s data did not exist. I originally thought that in the case of a single or multiple sources in the geographic grid not covering the entire area, it would fill the remaining area with the "default" source. However, it seems that the geogrid checks whether the specified source has any data in the model area and then only uses that source.

Please refer to the following attached figure:


My WPS version is 4.6.0.

The relevant entries for srtm_3s in my "GEOGRID.TBL" file:
interp_option = srtm_3s:average_gcell(4.0)+four_pt+average_4pt rel_path = srtm_3s:srtm_3s/
rel_path = topo_srtm_3s:topo_srtm_3s/

Please refer to the following namelist.wps:
&share
wrf_core = 'ARW'
max_dom = 3
start_date = '2025-07-26_00:00:00', '2025-07-26_00:00:00', '2025-07-26_00:00:00'
end_date = '2025-07-27_00:00:00', '2025-07-27_00:00:00', '2025-07-27_00:00:00'
interval_seconds = 3600
io_form_geogrid = 2
debug_level = 0
/

&geogrid
parent_id = 1, 1, 2
parent_grid_ratio = 1, 3, 3
i_parent_start = 1, 330, 260
j_parent_start = 1, 125, 520
e_we = 901, 922, 922
e_sn = 601, 982, 982
geog_data_res = 'srtm_3s+default', srtm_3s+default', srtm_3s+default'
dx = 9000
dy = 9000
map_proj = 'lambert'
ref_lat = 35
ref_lon = 115
truelat1 = 30
truelat2 = 60
pole_lat = 90
pole_lon = 0
stand_lon = 115
geog_data_path = '/public/home/gly/wrf/GEOG/WPS_GEOG'
opt_geogrid_tbl_path = './geogrid/'
/

&ungrib
out_format = 'WPS'
prefix = 'PRE'
/

&metgrid
fg_name = 'PRE', 'SUF'
io_form_metgrid = 2
opt_metgrid_tbl_path = './metgrid'
/
 
Back
Top