Require Output File Variable Description Documentation #1438
-
Hi, LISF Community! I am running Public testcase walkthrough, each time I followed the steps and generated the result file, I want to see the exact meaning of the variables in it, where can I find the documentation of the description of the variables in the file generated in each step? If such documentation is not available, what tools are available to help understand the meaning of each variable in the generated file? For example, I generated the file cdf_noah36.nc in step4, this file contains 4 variables, where can I find the exact meaning of these four variables? Looking forward to your reply! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @Lise-Li The four variables in this file are:
The codes that calculates these variables are found in (respectively): I don't know any more than that, as I not a data assimilation expert. @LIS-navari , @yyoon4 , @sujayvkumar - Can one of you please help answer this question? |
Beta Was this translation helpful? Give feedback.
Hi @Lise-Li and @dmocko,
The LISF user guide should suffice for new users. However, those keen on understanding all intermediate processes and variables should refer to the subroutines for comprehensive insights into variable meanings. In your case, examining the output file (cdf_noah36.nc) will provide essential information within the NetCDF file, aiding in understanding each variable.
Here are key details from the file:
dimensions:
ngrid = 52597;
ntimes = 12;
nbins = 100;
SoilMoist_levels = 1;
variables:
float SoilMoist_xrange(nbins, SoilMoist_levels, ntimes, ngrid);
float SoilMoist_mu(SoilMoist_levels, ntimes, ngrid);
float SoilMoist_sigma(SoilMoist_levels, ntimes, ngrid);
float SoilMo…