Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Corrected an issue where tags like ":V" after cmp exps were resulting in "ctag" showing up in filenames and labels for some plots
- Due to GRADS variable name character limits, the actual or climatology labels for some plots were being inaccurately overwritten if models names began with the same 8 characters; these variable names now utilize expid numbers instead of model names
- Corrected LWP plot command in portrait.script to only include LWP not CCWP
- Edited gcmpost.script to move up the location of $SOURCE/plot/.quickplotrc to restore missing plots from landscape.list for some users.
Expand Down
7 changes: 7 additions & 0 deletions plots/grads_util/gencmp.gs
Original file line number Diff line number Diff line change
Expand Up @@ -573,10 +573,17 @@ endwhile
* we can compute the Closeness plots to MERRA-2 and any CMPEXP ending with :V
* ---------------------------------------------------------------------------

* Assign ctag and cname for all experiments first
k = 1
while( k <= numexp )
cname.k = oname.k.1
ctag.k = obsnam.k.1
k = k + 1
endwhile

* Now do the closeness loop
k = 1
while( k <= numexp )
say ' '
say 'Looping through experiments, k = 'k' CTAG = 'ctag.k' TYPE = 'type.k
say '--------------------------------------------------------------'
Expand Down