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.
xxx_S_z105.pro in trunk/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts – NEMO

source: trunk/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/xxx_S_z105.pro @ 2537

Last change on this file since 2537 was 2537, checked in by flavoni, 13 years ago

update IDL scripts, see ticket #724

File size: 1.4 KB
Line 
1pro xxx_S_z105, S1, S2, SLev, sEXP1, sEXP2, start_end, POSTSCRIPT = postscript, _extra = ex
2
3 @common
4 compile_opt idl2, strictarrsubs
5 
6 if KEYWORD_SET(POSTSCRIPT) then begin
7    openps, '013_S_z105_'+sEXP1+'-'+sEXP2+'_y'+start_end+'.ps', portrait = 1
8 endif
9 
10;
11 varunit = S1.unit
12;
13
14 title=sEXP1+' S (PSU) depth=105m / Sal year '+start_end
15 plt, S1.arr, MIN = 33., MAX = 38.2, INTER = .2, STYLE = 'so0so' $
16      , small = [1,2,1], COAST_THICK = 2, TITLE = title, boxzoom = [105., 106.], /NOERASE, _extra = ex
17;
18 if sEXP1 ne sEXP2 then begin
19   
20    title = sEXP1+' - '+sEXP2+' S (PSU) depth=105m / Sal year '+start_end
21    plt, S1.arr[*,*,0] - S2.arr[*,*,0], MIN = -1., MAX = 1., INTER = .1 $
22         , small = [1,2,2], COAST_THICK = 2, TITLE = title, _extra=ex
23   
24 endif else begin
25   
26    title=sEXP1+' - Levitus S (PSU) depth=105m / Sal year '+start_end
27    plt, S1.arr-SLev.arr, MIN = -1., MAX = 1., INTER=0.1, STYLE='so0so' $
28         , small = [1,2,2], COAST_THICK = 2, TITLE = title, boxzoom = [105., 106.], /PORTRAIT, _extra = ex                           
29   
30 endelse
31 
32
33 
34 title = 'Salinity differences at z=105 m with Levitus and '+sEXP2
35 text = [   title, '<img width="80%" src=/Users/sflod/TOOLS/my_IDL/PS/v32colib_v32colib/ps/013_S_z105_'+sEXP1+'-'+sEXP2+'_y'+start_end+'.png  />  ' ]
36 putfile, '/tmp/prova.txt', text ;
37
38
39 if KEYWORD_SET(POSTSCRIPT) then begin
40    closeps
41 endif
42
43 return
44end
Note: See TracBrowser for help on using the repository browser.