Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Carl Schreck
OLR CDR
Commits
4a2cf55b
Commit
4a2cf55b
authored
Dec 13, 2014
by
Carl Schreck
Browse files
Automated Nightly Commit - Sat Dec 13 00:00:55 EST 2014
parent
15a956d5
Changes
6
Hide whitespace changes
Inline
Side-by-side
compare/qsub_draw_series.sh
View file @
4a2cf55b
...
...
@@ -8,6 +8,7 @@ NCL_DIR=`pwd`
mkdir
log
for
PREFIX
in
olr mjo er kelvin low high
#for PREFIX in td
do
for
SERIES_TYPE
in
pct total anom
do
...
...
compare/qsub_write_series.sh
View file @
4a2cf55b
...
...
@@ -7,7 +7,7 @@ echo $JOB_NAME `date`
NCL_DIR
=
`
pwd
`
mkdir
log
for
VAR_NAME
in
high
for
VAR_NAME
in
td
do
for
SENSOR
in
avhrr hirs
do
...
...
compare/sub.draw_series.ncl
View file @
4a2cf55b
...
...
@@ -104,7 +104,7 @@ begin ; draw_series
end do
yData = 100. * yData / totalData
yData@units = "% of
total
variance"
yData@units = "% of
high
variance"
end if
...
...
compare/sub.draw_wk99_trend.ncl
View file @
4a2cf55b
...
...
@@ -61,6 +61,15 @@ begin ; draw_wk99_trend
copy_VarMeta( earlyPower, diffPower )
printMinMax( diffPower, True )
; smooth the difference
; note that we ignore freq(0) because it's the powerful time-mean
do i = 1, 5
diffPower(freq|1:,k|:) = wgt_runave( diffPower(freq|1:,k|:), \\
(/ 0.25, 0.5, 0.25 /), 1 )
diffPower(k|:,freq|1:) = wgt_runave( diffPower(k|:,freq|1:), \\
(/ 0.25, 0.5, 0.25 /), 1 )
end do
retVal = kf_draw( io_wks, diffPower(freq|:,k|:), "None", drawSymCurves, \
drawAntiCurves, i_res )
...
...
compare/time_series.ncl
View file @
4a2cf55b
...
...
@@ -29,6 +29,7 @@ begin ; main
if(.not.isvar("seriesType") )then
seriesType = "anom"
end if
; sensor = (/ "hirs", "avhrr", "claus" /)
sensor = (/ "hirs", "avhrr" /)
plotType = "png"
...
...
compare/wk99_trend.ncl
View file @
4a2cf55b
...
...
@@ -24,7 +24,7 @@ begin ; main
; These are some parameters that could be useful to have up top
if(.not.isvar( "sensor" ) ) then
sensor = "
hirs
"
sensor = "
avhrr
"
end if
plotType = "png"
...
...
@@ -49,7 +49,7 @@ begin ; main
; Customize base plot
res = True
res@cnFillPalette = "CBR_coldhot"
res@cnLevels = ispan( -5, 5, 1 ) * 0.
1
res@cnLevels = ispan( -5, 5, 1 ) * 0.
04
res@cnLinesOn = False
res@cnFillMode = "CellFill"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment