METForcing data datewise or variablewise ? (NGFS same as GDAS metforcing) #1304
hashmifatima
started this conversation in
General
Replies: 1 comment 2 replies
-
Yes, LIS can handle metforcing files separated by variable as well as files with multiple dates within. You would just need to write the metforcing plugin for this dataset such that it opens each file when reading the variable - and that it reads the correct time slice when LIS is at that time. Depending on how you write your metforcing reader, there may be a slowdown of the code as it finds the correct time within such a large file. However, it should still work if you are careful when writing the plugin. Good luck! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I have a reanalysis metforcing data NGFS (25 km, 6 hourly) which is being generated in real time using Global Data Assimilation Forecasting System (GDAFS). Forcing data files are available in the format :
ngfs_reanl_HR_APCP-sfc_2002100100-2002103118.grb2
ngfs_reanl_HR_PRES-sfc_2002100100-2002103118.grb2
ngfs_reanl_HR_SPFH-2m-agl_2002100100-2002103118.grb2
ngfs_reanl_HR_TMP-2m-agl_2002100100-2002103118.grb2
ngfs_reanl_HR_UGRD-10m-agl_2002100100-2002103118.grb2
ngfs_reanl_HR_VGRD-10m-agl_2002100100-2002103118.grb2
This NGFS data is having same resolutionas GDAS data, GDAS data available file format is this:
2002103112.gdas1.sfluxgrbf03.sg
2002103112.gdas1.sfluxgrbf00.sg
2002103106.gdas1.sfluxgrbf09.sg
2002103106.gdas1.sfluxgrbf06.sg
2002103106.gdas1.sfluxgrbf03.sg
2002103106.gdas1.sfluxgrbf00.sg
2002103100.gdas1.sfluxgrbf09.sg
2002103100.gdas1.sfluxgrbf06.sg
2002103100.gdas1.sfluxgrbf03.sg
2002103100.gdas1.sfluxgrbf00.sg
2002103018.gdas1.sfluxgrbf09.sg
2002103018.gdas1.sfluxgrbf06.sg
2002103018.gdas1.sfluxgrbf03.sg
2002103118.gdas1.sfluxgrbf09.sg
2002103118.gdas1.sfluxgrbf06.sg
2002103118.gdas1.sfluxgrbf03.sg
2002103118.gdas1.sfluxgrbf00.sg
2002103112.gdas1.sfluxgrbf09.sg
2002103112.gdas1.sfluxgrbf06.sg
GDAS data file contains all input variables in a single file separated by date/time but NGFS data file is like each variable is having separate file for total time period. will this format of NGFS data is accepted by GDAS metforcing criteria as both are generated from the same source?
Does LIS accept variables wise input files or it takes datewise files as well?
Thanks,
Hashmi
Beta Was this translation helpful? Give feedback.
All reactions