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

source: trunk/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/xxx_EXP1_S_ARC.pro @ 2557

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

update IDL scripts, see ticket #724

File size: 1.3 KB
Line 
1pro xxx_EXP1_S_ARC, S1, SLev, sEXP1, sEXP2, start_end, POSTSCRIPT = postscript, _extra = ex
2 
3 @common
4 compile_opt idl2, strictarrsubs
5
6
7 if KEYWORD_SET(POSTSCRIPT) then begin
8    openps, '008_S_ARC_'+sEXP1+'_y'+start_end+'.ps', portrait = 1
9 endif
10
11                                ;
12 domdef,20,380,60,90
13                                ;
14 title=sEXP1+' Salinity SSS'
15 plt, S1, MIN = 30.0, MAX = 36., INTER = 0.2, CELL_FILL = 2  $
16      , small = [1,2,1], COAST_THICK = 2, TITLE = title, CHARSIZE = -0.55, GLINETHICK = 2. $
17      , /ORTHO, MAP = [90,0,0], LATDEL = 5, boxzoom = [4., 6.], /PORTRAIT, _extra = ex
18                                ;
19
20 title=sEXP1+' - Levitus Salinity SSS m / year '+start_end
21 plt, S1.arr-SLev.arr, MIN = -4., MAX = 4., INTER = 0.2, CELL_FILL = 2,  STYLE = 'so0so'  $     
22      , small = [1,2,2], COAST_THICK = 2, TITLE = title, CHARSIZE = -0.55, GLINETHICK = 2. $     
23      , /ORTHO, MAP = [90,0,0], LATDEL = 5, boxzoom = [4., 6.], /NOERASE, _extra = ex
24                                ;
25 domdef
26
27 title = 'Artic salinity at SSS meters'
28 text = [   title, '<img width="80%" src=/Users/sflod/TOOLS/my_IDL/PS/v32colib_v32colib/ps/008_S_ARC_'+sEXP1+'_y'+start_end+'.png  />  ' ]
29 putfile, '/tmp/prova.txt', text
30
31
32 if KEYWORD_SET(POSTSCRIPT) then begin
33    closeps
34 endif
35
36 
37 return
38end
Note: See TracBrowser for help on using the repository browser.