source: trunk/src/figure14.pro @ 8

Last change on this file since 8 was 8, checked in by pinsard, 15 years ago

add lat and lon parametrization in hovmuller.pro

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1; docformat = 'rst'
2;+
3;
4; plot figure 14 of paper1
5;
6; :Categories:
7;
8; :Uses:
9;  hovmuller.pro_
10;  forout.pro_
11;
12; .. _hovmuller.pro: hovmuller.pro.html
13; .. _forout.pro: forout.pro.html
14;
15; :Restrictions:
16;  - Requires SAXO
17;
18; :Pre:
19;  varamma_profile.sh_
20;
21;  .. _varamma_profile.sh: varamma_profile.sh.html
22;
23;  for AMSU dataset be sure to have *cx*\ ``.an``\ *yyyy*\ ``_climato.nc``
24;  in the directory defined in ${VARAMMA_ID}/
25;
26; :Post:
27;  varamma_profile.sh_
28;
29; :Todo:
30;
31; :Examples:
32;
33; To produce a PNG file :
34; ::
35;
36;   IDL> figure14
37;
38; :History:
39;
40; - fplod 2008-12-23T15:47:59Z aedon.locean-ipsl.upmc.fr (Darwin)
41;
42;   * add ubox keywords required by hovmuller.pro
43;
44; - fplod 2008-08-14T15:24:42Z aedon.locean-ipsl.upmc.fr (Darwin)
45;
46;   * more concrete action ...
47;
48; - fplod 2008-08-11T16:10:05Z aedon.locean-ipsl.upmc.fr (Darwin)
49;
50;   * creation of header not yet ok, just the idea
51;
52;-
53pro figure14, _EXTRA=extra
54;
55compile_opt idl2, strictarrsubs
56;
57ifigure=14
58;
59fullfilename_out=forout('figure' + string(ifigure,format='(I2.2)')+ '.png', _EXTRA=extra)
60IF (fullfilename_out EQ -1) THEN BEGIN
61 RETURN
62ENDIF
63;
64hovmuller, 'AMSU', 'a4', 0000L, DATASETTYPE='varamma_t3', AXE='latitude', ubox=[-30.,+40.,-30.,45.], int = 1.5, small=[2,2,1],/nocolorbar, /nosave
65hovmuller, 'AMSU', 'a5', 0000L, DATASETTYPE='varamma_t3', AXE='latitude', ubox=[-30.,+40.,-30.,45.], int = 1. , small=[2,2,2],/nocolorbar, /nosave,/noerase
66hovmuller, 'AMSU', 'b5', 0000L, DATASETTYPE='varamma_t3', AXE='latitude', ubox=[-30.,+40.,-30.,45.], int = 1.5, small=[2,2,3],/nosave,/noerase
67hovmuller, 'AMSU', 'b3', 0000L, DATASETTYPE='varamma_t3', AXE='latitude', ubox=[-30.,+40.,-30.,45.], int = 2. ,small=[2,2,4],/nosave,/noerase
68;
69saveimage, fullfilename_out,/png
70;
71end
Note: See TracBrowser for help on using the repository browser.