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

Feature 748 ensemble stat config #775

Merged
merged 57 commits into from
Jan 25, 2021

Conversation

georgemccabe
Copy link
Collaborator

@georgemccabe georgemccabe commented Jan 25, 2021

Pull Request Testing

  • Describe testing already performed for these changes:

Updated use case config files to use the new environment variables.
Verified use cases ran successfully.

  • Recommend testing for the reviewer(s) to perform, including the location of input datasets, and any additional instructions:

Review code changes.

Download the output data from GitHub Actions before and after the changes and verify that the output from the EnsembleStat use cases are the same.

Pull Request Checklist

See the METplus Workflow for details.

  • Complete the PR definition above.
  • Ensure the PR title matches the feature or bugfix branch name.
  • Define the PR metadata, as permissions allow.
    Select: Reviewer(s), Project(s), and Milestone
  • After submitting the PR, select Linked Issues with the original issue number.
  • After the PR is approved, merge your changes. If permissions do not allow this, request that the reviewer do the merge.
  • Close the linked issue and delete your feature or bugfix branch from GitHub.

…tently for all wrappers that use those variables
…s that differ from the default to the appropriate METplus conf file
… tool (TCRMW) does not set it, removed reading of _REGRID_TO_GRID in wrappers since it is handled in one place now
…nary instead of setting it directly as an environment variable so it is more clear what env var is being set, added test
…NS_THRESH to contain ens_thresh = <value>; instead of just the value
…ult value may not be NA, added more tests for set_met_config_* functions
@georgemccabe georgemccabe added this to the METplus-4.0 milestone Jan 25, 2021
@georgemccabe
Copy link
Collaborator Author

On kiowa, I ran 3.1 code on use cases (develop on WOFS case that is not in 3.1 codebase) then ran feature branch on use cases. I then ran the NetCDF diffing utility in ci/utils/netcdf_util.py to compare the NetCDF output files from each run.

Before data:
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-ss
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-basic
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-py
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs

After data:
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-multi
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-ss
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/mtw-basic
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/mtw-py
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-wofs

A few differences in use case results were reconciled with METplus config updates. The WOFS output was different due to a hard-coded random seed value in the MET config file for that use case. I was able to replicate the output by changing this value.

I have not yet compared the stat output.

@georgemccabe
Copy link
Collaborator Author

I modified the comparison scripts to compare files that are not NetCDF with the python filecmp utility. I verified that all of the use cases except the cam-multi output have identical output (For now I skip the log directory and metplus_final.conf file).

The file lists differ because the paths of the files in them are in different directories, which I can add a check for (if file starts with file_list, then replace dir B with dir A for comparison).

The EnsembleStat output files for cam-multi are all empty in the feature branch version, so I will investigate that.

…sts that have different directories in them by replacing dir B with dir A in one of them
@georgemccabe
Copy link
Collaborator Author

cam-multi output was missing because the wrong message_type value was set in the METplus config file. The runs now produce identical output. I also enhanced the directory diffing logic to handle file_lists properly. This PR is ready for review.

@georgemccabe georgemccabe linked an issue Jan 25, 2021 that may be closed by this pull request
21 tasks
@georgemccabe
Copy link
Collaborator Author

For reference, here are the commands I used to run the use cases:

cd /d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748
./METplus.v3.1/ush/master_metplus.py -c ./METplus.v3.1/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.v3.1/ush/master_metplus.py -c ./METplus.v3.1/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRR_fcstOnly_SurrogateSevere.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-ss -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.v3.1/ush/master_metplus.py -c ./METplus.v3.1/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.v3.1/ush/master_metplus.py -c ./METplus.v3.1/parm/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-basic -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.v3.1/ush/master_metplus.py -c ./METplus.v3.1/parm/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat_python_embedding.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-py -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.develop/ush/master_metplus.py -c ./METplus.develop/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs -c dir.MET_INSTALL_DIR=/usr/local/met

./METplus.feature/ush/master_metplus.py -c ./METplus.feature/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrr -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.feature/ush/master_metplus.py -c ./METplus.feature/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRR_fcstOnly_SurrogateSevere.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-ss -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.feature/ush/master_metplus.py -c ./METplus.feature/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-multi -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.feature/ush/master_metplus.py -c ./METplus.feature/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-wofs -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.feature/ush/master_metplus.py -c ./METplus.feature/parm/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/mtw-basic -c dir.MET_INSTALL_DIR=/usr/local/met
./METplus.feature/ush/master_metplus.py -c ./METplus.feature/parm/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat_python_embedding.conf -c dir.INPUT_BASE=/d1/projects/METplus/METplus_Data -c dir.OUTPUT_BASE=/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/mtw-py -c dir.MET_INSTALL_DIR=/usr/local/met

and the logic to perform the diffs

cd /d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/METplus.feature/ci/util
python3
>>> dir_a = '/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-ss'
>>> dir_b = dir_a.replace('out-3.1', 'out-feature')
>>> netcdf_util.compare_dir(dir_a, dir_b, debug=True)
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-ss/convection_allowing_models/surrogate_severe_calc/ensemble_stat_20200206_120000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-ss/convection_allowing_models/surrogate_severe_calc/ensemble_stat_20200206_120000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-ss/convection_allowing_models/surrogate_severe_calc/surrogate_severe_20200205_036V_regrid.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-ss/convection_allowing_models/surrogate_severe_calc/surrogate_severe_20200205_036V_regrid.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-ss/convection_allowing_models/surrogate_severe_calc/20200205/hrrr_ncep_2020020500f036.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-ss/convection_allowing_models/surrogate_severe_calc/20200205/hrrr_ncep_2020020500f036.nc
True

>>> dir_a = '/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-basic'
>>> dir_b = dir_a.replace('out-3.1', 'out-feature')
>>> netcdf_util.compare_dir(dir_a, dir_b, debug=True)
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-basic/ensemble/200912311200/ensemble_stat/ensemble_stat_20100101_120000V_orank.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/mtw-basic/ensemble/200912311200/ensemble_stat/ensemble_stat_20100101_120000V_orank.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-basic/ensemble/200912311200/ensemble_stat/ensemble_stat_20100101_120000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/mtw-basic/ensemble/200912311200/ensemble_stat/ensemble_stat_20100101_120000V_ens.nc
True

>>> dir_a = '/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre'
>>> dir_b = dir_a.replace('out-3.1', 'out-feature')
>>> netcdf_util.compare_dir(dir_a, dir_b, debug=True)
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905200000/ensemble_stat_APCP_03_20190520_030000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905200000/ensemble_stat_APCP_03_20190520_030000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905200000/ensemble_stat_APCP_03_20190520_060000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905200000/ensemble_stat_APCP_03_20190520_060000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905200000/ensemble_stat_APCP_03_20190520_090000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905200000/ensemble_stat_APCP_03_20190520_090000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905200000/ensemble_stat_APCP_03_20190520_120000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905200000/ensemble_stat_APCP_03_20190520_120000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905191200/ensemble_stat_APCP_03_20190519_150000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905191200/ensemble_stat_APCP_03_20190519_150000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905191200/ensemble_stat_APCP_03_20190520_000000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905191200/ensemble_stat_APCP_03_20190520_000000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905191200/ensemble_stat_APCP_03_20190519_180000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905191200/ensemble_stat_APCP_03_20190519_180000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905191200/ensemble_stat_APCP_03_20190519_210000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/precip-hrrre/model_applications/precipitation/EnsembleSTat_fcstHRRRE_FcstOnly_NetCDF/EnsembleStat/201905191200/ensemble_stat_APCP_03_20190519_210000V_ens.nc
True

>>> dir_a = '/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi'
>>> dir_b = dir_a.replace('out-3.1', 'out-feature')
>>> netcdf_util.compare_dir(dir_a, dir_b, debug=True)
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/rap/20180709/2018070914.rap.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/rap/20180709/2018070914.rap.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/rap/20180709/2018070913.rap.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/rap/20180709/2018070913.rap.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/rap/20180709/2018070912.rap.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/rap/20180709/2018070912.rap.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/EnsembleStat/201807091200/ensemble_stat_HRRRE_F001_ADPSFC_20180709_130000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/EnsembleStat/201807091200/ensemble_stat_HRRRE_F001_ADPSFC_20180709_130000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/EnsembleStat/201807091200/ensemble_stat_HRRRE_F002_ADPSFC_20180709_140000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/EnsembleStat/201807091200/ensemble_stat_HRRRE_F002_ADPSFC_20180709_140000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/EnsembleStat/201807091200/ensemble_stat_HRRRE_F000_ADPSFC_20180709_120000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/cam-multi/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField/EnsembleStat/201807091200/ensemble_stat_HRRRE_F000_ADPSFC_20180709_120000V_ens.nc
True

>>> dir_a = '/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-py'
>>> dir_b = dir_a.replace('out-3.1', 'out-feature')
>>> netcdf_util.compare_dir(dir_a, dir_b, debug=True)
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-py/met_tool_wrapper/EnsembleStat/ens_python_embedding/ensemble_stat_PYTHON_20050807_120000V_orank.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/mtw-py/met_tool_wrapper/EnsembleStat/ens_python_embedding/ensemble_stat_PYTHON_20050807_120000V_orank.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-3.1/mtw-py/met_tool_wrapper/EnsembleStat/ens_python_embedding/ensemble_stat_PYTHON_20050807_120000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-feature/mtw-py/met_tool_wrapper/EnsembleStat/ens_python_embedding/ensemble_stat_PYTHON_20050807_120000V_ens.nc
True

>>> dir_a = '/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs'
>>> dir_b = dir_a.replace('out-devlop', 'out-feature')
>>> netcdf_util.compare_dir(dir_a, dir_b, debug=True)
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_06/wofs06_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_06/wofs06_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_12/wofs12_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_12/wofs12_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_15/wofs15_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_15/wofs15_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_16/wofs16_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_16/wofs16_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_05/wofs05_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_05/wofs05_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_02/wofs02_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_02/wofs02_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_09/wofs09_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_09/wofs09_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_07/wofs07_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_07/wofs07_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_10/wofs10_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_10/wofs10_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_11/wofs11_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_11/wofs11_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_14/wofs14_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_14/wofs14_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_01/wofs01_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_01/wofs01_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_08/wofs08_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_08/wofs08_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_03/wofs03_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_03/wofs03_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_17/wofs17_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_17/wofs17_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_13/wofs13_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_13/wofs13_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_04/wofs04_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_04/wofs04_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_18/wofs18_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/pcp_combine/20200615/1700/ENS_MEM_18/wofs18_PCP_20200615_1700_1800_A1.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/ensemble_stat/20200615/1700/ensemble_stat_WOFS_PCP_1700_010000L_A1_20200615_180000V_orank.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/ensemble_stat/20200615/1700/ensemble_stat_WOFS_PCP_1700_010000L_A1_20200615_180000V_orank.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/ensemble_stat/20200615/1700/ensemble_stat_WOFS_PCP_1700_010000L_A1_20200615_180000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/ensemble_stat/20200615/1700/ensemble_stat_WOFS_PCP_1700_010000L_A1_20200615_180000V_ens.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/grid_stat/20200615/1700/grid_stat_WOFS_PCP_1700_A1_000000L_20200615_180000V_pairs.nc
/d1/projects/METplus/METplus_pull_requests/METplus-4.0.0-beta3/feature_748/out-develop/precip-wofs/WOFS/grid_stat/20200615/1700/grid_stat_WOFS_PCP_1700_A1_000000L_20200615_180000V_pairs.nc
True

Copy link
Collaborator

@JohnHalleyGotway JohnHalleyGotway left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed the changes and they look reasonable to me.
Also confirmed that all the GitHub actions passed.

@georgemccabe georgemccabe merged commit 13f469c into develop Jan 25, 2021
@georgemccabe georgemccabe deleted the feature_748_ensemble_stat_config branch January 25, 2021 22:26
@georgemccabe georgemccabe linked an issue Jan 25, 2021 that may be closed by this pull request
21 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants