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_ANT_Icethick_SEPT.pro in branches/dev_r2586_dynamic_mem/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts – NEMO

source: branches/dev_r2586_dynamic_mem/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/xxx_ANT_Icethick_SEPT.pro @ 2713

Last change on this file since 2713 was 2713, checked in by rblod, 13 years ago

Phasing dynamic memory branch with version 2712 off the trunk

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