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 @@ -37,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fixed issues keeping zonal mean plots from working when experiments had different levels/times
- Fixed issue with `movestat` which only allowed single-month seasons

### Removed
Expand Down
11 changes: 11 additions & 0 deletions plots/fcst/setup_statd
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ say 'Opening Files for EXP: 'k
* ------------------------------------------------------------
if( ctdim < mtdim )
mtdim = ctdim
tdimfile = cfile
endif

* Find Master Time Frequency (largest) among Experiment Files
Expand All @@ -271,8 +272,17 @@ say ' Current ZDIM: 'czdim' Master ZDIM: 'mzdim
say ' Current TDIM: 'ctdim' Master TDIM: 'mtdim
say ' Current TINC: 'ctinc' Master TINC: 'mtinc
say ' Current FILE: 'cfile' Master TINCFILE: 'tincfile
say ' Current FILE: 'cfile' Master TDIMFILE: 'tdimfile
say ' Current FILE: 'cfile' Master ZMINFILE: 'zminfile

if ( k = 0 )
'run setenv "FILE_CTL" 'cfile
else
'run setenv "FILE_EXP" 'cfile
endif

say 'file 'k' : 'cfile

say ' '
say 'Closing files for Exp: 'k
'closefiles'
Expand Down Expand Up @@ -306,6 +316,7 @@ say ' '
'run setenv "SYSCMP_TDIM" 'mtdim
'run setenv "SYSCMP_TINC" 'mtinc
'run setenv "TINCFILE" 'tincfile
'run setenv "TDIMFILE" 'tdimfile
'run setenv "ZMINFILE" 'zminfile

*******************************************************
Expand Down
8 changes: 4 additions & 4 deletions plots/grads_util/corcmp_plot.gs
Original file line number Diff line number Diff line change
Expand Up @@ -1033,11 +1033,11 @@ endwhile

'!/bin/mkdir -p 'SOURCE'/corcmp'

if( nday = ndaymax )
*if( nday = ndaymax )
'run 'GEOSUTIL'/plots/grads_util/myprint2 -name 'SOURCE'/corcmp/stats_'label'_corcmp_'reg'_'level'_'months' -rotate 90 -density 100x100'
else
'run 'GEOSUTIL'/plots/grads_util/myprint2 -name 'SOURCE'/corcmp/stats_'label'_corcmp_'reg'_'level'_'months'_'nday'DAY -rotate 90 -density 100x100'
endif
*else
* 'run 'GEOSUTIL'/plots/grads_util/myprint2 -name 'SOURCE'/corcmp/stats_'label'_corcmp_'reg'_'level'_'months'_'nday'DAY -rotate 90 -density 100x100'
*endif

if( debug = "TRUE" )
say "Hit ENTER for next plot"
Expand Down
Loading