Replies: 2 comments 14 replies
-
Hello @mkbenneh, Thank you for reaching out with your question regarding how to create a subgrid in the SRW App! In order to assist with debugging your issue, there is some additional information that is required:
Thanks again and I look forward to assisting you with this issue. Mike Lueken |
Beta Was this translation helpful? Give feedback.
-
Hello @mkbenneh, I'm glad that you were able to figure out the issue with the plotting! There shouldn't be any limits imposed on Due to differences in the map projection type (the native that is being used for computational purposes is the extended schmidt gnomonic grid, while the write-component grid is lambert conformal), the grids don't correspond 1-to-1. So, you should ensure that the compute grid ( For more details on suggestions for setting up a custom regional ESG grid, please see this practical guide provided by DTC. |
Beta Was this translation helpful? Give feedback.
-
I made a predefined subgrid over Florida using the settings below; I have also included it in the valid_param_vals.yaml file, however it still doesn't work for me and will like to understand how making a subgrid work.
"
GRID_GEN_METHOD: ESGgrid
ESGgrid_LON_CTR: -80.5.
ESGgrid_LAT_CTR: 26
ESGgrid_DELX: 3000.0
ESGgrid_DELY: 3000.0
ESGgrid_NX: 1820
ESGgrid_NY: 1092
ESGgrid_PAZI: 0.0
ESGgrid_WIDE_HALO_WIDTH: 6
DT_ATMOS: 36
LAYOUT_X: 28
LAYOUT_Y: 28
BLOCKSIZE: 28
QUILTING:
WRTCMP_write_groups: 1
WRTCMP_write_tasks_per_group: 4
WRTCMP_output_grid: lambert_conformal
WRTCMP_cen_lon: '{{ task_make_grid.ESGgrid_LON_CTR }}'
WRTCMP_cen_lat: '{{ task_make_grid.ESGgrid_LAT_CTR }}'
WRTCMP_lon_lwr_left: -81.5
WRTCMP_lat_lwr_left: 25.5
WRTCMP_stdlat1: '{{ task_make_grid.ESGgrid_LAT_CTR }}'
WRTCMP_stdlat2: '{{ task_make_grid.ESGgrid_LAT_CTR }}'
WRTCMP_nx: 198
WRTCMP_ny: 138
WRTCMP_dx: 3000.0
WRTCMP_dy: 3000.0
"
Beta Was this translation helpful? Give feedback.
All reactions