Skip to content
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 the "state of ground" to increase the snow depth reports #3093

Draft
wants to merge 9 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Add the obs process script path.
  • Loading branch information
jiaruidong2017 committed Jan 15, 2025
commit cdc08ce9861951acab7b0460422b8c8c89836329
1 change: 1 addition & 0 deletions ush/python/pygfs/task/snow_analysis.py
Original file line number Diff line number Diff line change
@@ -68,6 +68,7 @@ def __init__(self, config: Dict[str, Any]):
'OPREFIX': f"{self.task_config.RUN}.t{self.task_config.cyc:02d}z.",
'APREFIX': f"{self.task_config.RUN}.t{self.task_config.cyc:02d}z.",
'GPREFIX': f"gdas.t{self.task_config.previous_cycle.hour:02d}z.",
'snow_script_path': f"{self.task_config.USHgfs}",
'snow_obsdatain_path': os.path.join(self.task_config.DATA, 'obs'),
'snow_obsdataout_path': os.path.join(self.task_config.DATA, 'diags'),
'snow_bkg_path': os.path.join('.', 'bkg/'),
1 change: 1 addition & 0 deletions ush/python/pygfs/task/snowens_analysis.py
Original file line number Diff line number Diff line change
@@ -69,6 +69,7 @@ def __init__(self, config: Dict[str, Any]):
'OPREFIX': f"{self.task_config.CDUMP}.t{self.task_config.cyc:02d}z.",
'APREFIX': f"{self.task_config.RUN}.t{self.task_config.cyc:02d}z.",
'GPREFIX': f"gdas.t{self.task_config.previous_cycle.hour:02d}z.",
'snow_script_path': f"{self.task_config.USHgfs}",
'snow_obsdatain_path': os.path.join(self.task_config.DATA, 'obs'),
'snow_obsdataout_path': os.path.join(self.task_config.DATA, 'diags'),
'snow_bkg_path': os.path.join('.', 'bkg', 'ensmean/'),