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

source: trunk/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/xxx_PHCXX_PHCYY_ARC_Icethick.pro @ 2709

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

update idl scripts, see ticket 724

File size: 1.3 KB
Line 
1pro xxx_PHCXX_PHCYY_ARC_Icethick,  I1, I2, sEXP1, sEXP2, start_end, POSTSCRIPT = postscript, _extra = ex
2 
3 @common
4
5 compile_opt idl2, strictarrsubs
6
7 
8 if KEYWORD_SET(POSTSCRIPT) then begin
9    openps, '0003_'+sEXP1+'_'+sEXP2+'_ARC_IceThick_y'+start_end+'.ps', portrait = 1
10 endif
11 
12 domdef,20,380,55,90
13           
14 title=sEXP1+' Arctic Ice Thickness / year '+start_end
15
16 I1.arr = I1.arr < 6.
17 plt, I1.arr - 1.E-04, MIN = 0., MAX = 6., INTER = 0.25 ,/STRICTFILL , CELL_FILL = 2, STYLE = 'so0so'  $
18      , small = [1,2,1], COAST_THICK = 2, TITLE = title $
19      , CHARSIZE = 1.05, GLINETHICK = 2., /ORTHO, MAP = [90,0,0], /PORTRAIT, _extra = ex
20 ;
21 if sEXP1 ne sEXP2 then begin           
22    title = sEXP1+' - '+sEXP2+' Arctic Ice Thickness / year '+start_end
23    plt, I1.arr - I2.arr, MIN = -3., MAX = 3., INTER = .5, /STRICTFILL , STYLE = 'so0so' $
24         , small = [1,2,2], COAST_THICK = 2, TITLE = title $
25         , CHARSIZE = 1.05, GLINETHICK = 2., /ORTHO, MAP = [90,0,0], /NOERASE, _extra = ex
26   
27 endif                          ; end of 2
28 
29 domdef
30
31 title = 'Arctic Sea-ice Thickness'
32 text = [   title, '<img width="80%" src=/Users/sflod/TOOLS/my_IDL/PS/'+sEXP1+'_'+sEXP2+'/ps/0003_'+sEXP1+'_'+sEXP2+'_ARC_IceThick_y'+start_end+'.png  />  ' ]
33 putfile, '/tmp/prova.txt', text
34
35 if KEYWORD_SET(POSTSCRIPT) then begin
36    closeps
37 endif
38
39
40 return
41end
Note: See TracBrowser for help on using the repository browser.