dtcenter / MET

Model Evaluation Tools
https://dtcenter.org/community-code/model-evaluation-tools-met
Apache License 2.0
74 stars 22 forks source link

Update develop-ref after dtcenter/MET#2892 #2900

Closed github-actions[bot] closed 1 month ago

github-actions[bot] commented 1 month ago

Adds TOTAL_DIR column to VL1L2, VAL1L2, and VCNT line types.
Created by @JohnHalleyGotway

I inspected the diffs flagged during the testing workflow GHA run for develop.

I ran the following commands to confirm that all the diffs occur in the VL1L2, VAL1L2, and VCNT line types, as expected:

for TRUTH in `find ./ -name "*TRUTH*"`; do
  OUTPUT=`echo $TRUTH | sed -r 's/TRUTH/OUTPUT/g'`;
  diff -b $TRUTH $OUTPUT | egrep -v "VL1L2|VAL1L2|VCNT|VERSION|---";
done