-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add additional GEFS variables needed for AI/ML applications #3221
base: develop
Are you sure you want to change the base?
Add additional GEFS variables needed for AI/ML applications #3221
Conversation
The umax, vmax and wndmax variables have been added to the diag tables. Also maxuw has been recognized as components of a vector variable in exglobal_atmos_products.sh.
ush/forecast_predet.sh
Outdated
memnum=$(echo "${ENSMEM}" | cut -c2-3) | ||
if [[ "${ENSMEM}" == "000" ]]; then | ||
export e1=1 | ||
else | ||
export e1=3 | ||
fi | ||
export e2=${memnum} | ||
export e3=${NMEM_ENS} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should these be wrapped in a GEFS conditional?
Either way, leave a comment here why this is done as it is not obvious.
memnum=$(echo "${ENSMEM}" | cut -c2-3) | |
if [[ "${ENSMEM}" == "000" ]]; then | |
export e1=1 | |
else | |
export e1=3 | |
fi | |
export e2=${memnum} | |
export e3=${NMEM_ENS} | |
if [[ "${ENSMEM}" == "000" ]]; then | |
export e1=1 | |
else | |
export e1=3 | |
fi | |
export e2="${ENSMEM:1:2}" | |
export e3="${NMEM_ENS}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me.
just one comment in the review.
Description
This PR covers a few items that were merged to the
feature/gefs_reforecast
branch and should be brought to thedevelop
branch:With the additional variables, the data size has increased from 7.41GB to 7.96GB for a given member in atmos products.
This PR will be left in draft mode until more testing is completed.
Resolves #3205
Refs #3183
Type of change
Change characteristics
How has this been tested?
Checklist