-
Notifications
You must be signed in to change notification settings - Fork 0
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
Stat Analysis Implementation #6
Conversation
…global-workflow into feature/anlstat
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.
Some comments, let's discuss this AM
@@ -1,6 +1,7 @@ | |||
#! /usr/bin/env bash | |||
|
|||
source "${HOMEgfs}/ush/preamble.sh" | |||
export DATA=${DATA:-${DATAROOT}/${RUN}statanl_${cyc}} |
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.
This is only needed if we intend on changing the path for DATA
from the default
parm/config/gfs/config.analstat
Outdated
# Get task specific resources | ||
source "${EXPDIR}/config.resources" anlstat | ||
|
||
echo "END: config.anlstat" |
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.
nearly duplicate file? probably needs removed
@@ -5,7 +5,7 @@ | |||
import os | |||
|
|||
from wxflow import Logger, cast_strdict_as_dtypedict | |||
from pygfs.task.atm_analysis import AtmAnalysis | |||
from pygfs.task.stat_analysis import StatAnalysis |
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.
We should change to using the new Jedi class
sorc/link_workflow.sh
Outdated
@@ -252,7 +252,7 @@ fi | |||
#------------------------------ | |||
if [[ -d "${HOMEgfs}/sorc/gdas.cd" ]]; then | |||
cd "${HOMEgfs}/parm/gdas" || exit 1 | |||
declare -a gdasapp_comps=("aero" "atm" "io" "ioda" "snow" "soca" "jcb-gdas" "jcb-algorithms") | |||
declare -a gdasapp_comps=("aero" "atm" "io" "ioda" "snow" "soca" "stats" "jcb-gdas" "jcb-algorithms") |
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.
thinking about this more, I think we just need snow/stats, soca/stats, aero/stats, atm/stats, rather than a stats dir
logger = getLogger(__name__.split('.')[-1]) | ||
|
||
|
||
class StatAnalysis(Analysis): |
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.
see comment above about that we should migrate to the new Jedi class
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.
See NOAA-EMC#2805
85f8877
to
1563594
Compare
Outdated and replaced by PR #8. Closing.. |
First pass at adding stat analysis script to copy appropriate stat files.