Hello all,
I have following GRIDDESC file (with available 4km and 12km spatial surrogates by CMAS):
! coords --line: name; type, P-alpha, P-beta, P-gamma, xcent, ycent
‘LAM_40N97W’
2, 33.0D0, 45.D0, -97.D0, -97.D0, 40.D0
’ ’ ! end coords. grids: name; xorig,yorig,xcell,ycell,ncols,nrows,nthik
‘12US1_459X299’, ! Continental 12km grid
‘LAM_40N97W’, -2556000, -1728000, 12.D3, 12.D3, 459, 299, 1
‘4MIDFLA1_83X85’, ! 4 km for Central Florida domain
‘LAM_40N97W’, 1380000.0, -1380000.0, 4000.000, 4000.000, 83, 85, 1
’ ’ ! end grids.
I need to generate meteorology data for these 2 domains (12km and 4km) by WRF. I prepared the following namelist.wps geogrid portion:
For 12 km domain:
&geogrid
parent_id = 1, 1,
parent_grid_ratio = 1, 3,
i_parent_start = 1, 31,
j_parent_start = 1, 17,
e_we = 462, 112,
e_sn = 302, 97,
geog_data_res = ‘default’,‘default’,
dx = 12000,
dy = 12000,
map_proj = ‘lambert’,
ref_lat = ?
ref_lon = ?
truelat1 = 33.0,
truelat2 = 45.0,
stand_lon = -97.0,
geog_data_path = ‘/lustre/fs0/home/mhasan/Parallel/wrf/GEOG/WPS_GEOG/’
/
For 4km domain:
&geogrid
parent_id = 1, 1,
parent_grid_ratio = 1, 3,
i_parent_start = 1, 31,
j_parent_start = 1, 17,
e_we = 86, 112,
e_sn = 88, 97,
geog_data_res = ‘default’,‘default’,
dx = 4000,
dy = 4000,
map_proj = ‘lambert’,
ref_lat = ?
ref_lon = ?
truelat1 = 33.0,
truelat2 = 45.0,
stand_lon = -97.0,
geog_data_path = ‘/lustre/fs0/home/mhasan/Parallel/wrf/GEOG/WPS_GEOG/’
/
How can I get the ref_lat and ref_lon for my domains?
Hasibul