We have noted some issues in the generated land-sea mask using topo_30s datasets.
We have not seen above given issues in the land-sea mask when we have used the landuse_30s_with_lakes datasets instead of topo_30s datasets for the creation of the land-sea mask. These both datasets are available at /bdd/WRF_Forcing/GEOG/geog/.
After this, we have also done some modification in the land-sea mask. What we have modified in the land-sea mask is given below.
To use, update the process_tile_module.F in …/WPS/geogrid/src and put OCEANPTS.txt in …/WPS/
and after that run the ./geogrid.exe
The files are available here : code by Namendra
I have used the 3 hourly MEDCORDEX-B simulated meteorological datasets as forcing datasets in the current WRF high-resolution simulation. The MEDCORDEX-B dataset was in .NC format and as we know that WRF UNGRIB program only reads the GRIB format datasets and generate the intermediate format meteorological datasets. Therefore, I have used the FORTRAN program to generate the intermediate format meteorological datasets because converting the NC file datasets into a GRIB format datasets for a longer duration would be a time-consuming process. After that, I have used the WRF METGRID program to horizontally interpolates the intermediate format meteorological datasets onto the simulation domains defined by the geogrid program. After that, I provided the interpolated datasets to the WRF real.exe.
In the simple word, I have not used the WRF UNGRIB program to generate the intermediate format meteorological datasets.
The program is written in the following sequence:
For the compile and run I have used the Makefile
make netcdf2wps
./netcdf2wps
The files are available here : code by Namendra