New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
std_plot_T100m.pro in trunk/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts – NEMO

source: trunk/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/std_plot_T100m.pro @ 2760

Last change on this file since 2760 was 2760, checked in by smasson, 13 years ago

bugfix in IDL_scripts

File size: 1.5 KB
Line 
1pro std_plot_T100m, T1, T2, TLev, POSTSCRIPT = postscript, _extra = ex
2
3  compile_opt idl2, strictarrsubs
4
5@common 
6@std_common
7
8  cdti3 = string(cnt, format = '(i3.3)')
9  print, cdti3 + ') ' + blabla
10  tmp = min(abs(100 - gdept), ind)
11  sdepref = strtrim(round(gdept[ind]), 1)+'m'
12  filename = cdti3 + '_T'+sdepref+'_'+std_file1_T
13  if std_file1_T NE std_file2_T then filename = filename + '_'+std_file2_T
14  if KEYWORD_SET(postscript) then openps, filename+'.ps', portrait = 1
15;                             
16  title = 'Temperature ('+sdepref+')!C'+std_file1_T
17  plt, T1, MIN = -2., MAX = 32., INTER = 1., FORMAT = '(I2)'  $
18       , small = [1, 2, 1], COAST_THICK = 2, TITLE = title, boxzoom = [floor(gdept[ind]), ceil(gdept[ind])], /portrait, _extra = ex
19;
20  IF std_file1_T NE std_file2_T THEN BEGIN
21    title = title+ ' - '+std_file2_T
22    plt, T1.arr - T2.arr, MIN = -2., MAX = 2., INTER = .2, STYLE = 'so0so', FORMAT = '(f4.1)' $
23         , small = [1, 2, 2], COAST_THICK = 2, TITLE = title, boxzoom = [floor(gdept[ind]), ceil(gdept[ind])], /noerase,  _extra = ex
24  ENDIF ELSE BEGIN
25    title = title+ ' - Levitus'
26    plt, T1.arr - TLev.arr, MIN = -5., MAX = 5., INTER = .5, STYLE = 'so0so', FORMAT = '(I2)'  $
27         , small = [1, 2, 2], COAST_THICK = 2, TITLE = title, boxzoom = [floor(gdept[ind]), ceil(gdept[ind])], /noerase, _extra = ex   
28  ENDELSE
29;
30  htmltxt = [ htmltxt, '<hr>'+blabla, '<br><img width="80%" src='+filename+'.png  />  ' ]
31  if KEYWORD_SET(postscript) then closeps
32
33  return
34end
Note: See TracBrowser for help on using the repository browser.