source: trunk/src/paper01/fig11/swr_isccp_tropflux_correlation_fig10.pro @ 175

Last change on this file since 175 was 175, checked in by pinsard, 12 years ago

an other bunch of new functions

  • Property svn:keywords set to URL
File size: 2.8 KB
Line 
1;+
2; .. _swr_isccp_tropflux_correlation_fig10.pro:
3;
4; ========================================
5; swr_isccp_tropflux_correlation_fig10.pro
6; ========================================
7;
8; DESCRIPTION
9; ===========
10;
11; :file:`${PROJECT_OD}/TropFlux_sst_19890101_20091231.nc`
12; containing
13; sst corrected on OAFLUX grid
14; has been produced by
15; :func:`sst_correction_ncdf`.
16;
17; :file:`${PROJECT_OD}/correlation_isccp_olr.idl`
18; containing
19; ++
20; has been produced by
21; :ref:`swr_isccp_tropflux_new_v1.pro`
22;
23; .. graphviz::
24;
25;    digraph swr_isccp_tropflux_correlation_fig10 {
26;
27;       sst [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/TropFlux_sst_19890101_20091231.nc"];
28;       cor_olr [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/correlation_isccp_olr.idl"];
29;       figure [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/correlation_rmsd_olra_swra_smooth.ps"];
30;
31;       swr_isccp_tropflux_correlation_fig10 [shape=box,
32;       fontname=Courier,
33;       color=blue,
34;       URL="http://forge.ipsl.jussieu.fr/tropflux/broswrer/trunk/src/paper01/fig11/swr_isccp_tropflux_correlation_fig10.pro",
35;       label="${TROPFLUX}/src/paper01/fig11/swr_isccp_tropflux_correlation_fig10.pro"];
36;
37;       {sst cor_olr} -> {swr_isccp_tropflux_correlation_fig10} -> {figure}
38;
39;    }
40;
41; SEE ALSO
42; ========
43;
44; :ref:`project_profile.sh`
45; :ref:`project_init.pro`
46; :ref:`cm_project.pro`
47;
48; EXAMPLES
49; ========
50;
51; ::
52;
53;  IDL> swr_isccp_tropflux_correlation_fig10
54;
55; TODO
56; ====
57;
58; make it work on cratos
59;
60; get rid of restore
61;
62; hard coded 273 ... check unit of input (might change !!)
63;
64; coding rules
65;
66; complete description
67;
68; handle IO error
69;
70; EVOLUTIONS
71; ==========
72;
73; $Id$
74;
75; $URL$
76;
77; - fplod 20110817T093449Z aedon.locean-ipsl.upmc.fr (Darwin)
78;
79;   * complete description (not finish !)
80;   * replace PROJECT_ID by PROJECT_OD
81;   * use PROJECT_OD in restored file
82;
83; - fplod 20110422T103945Z aedon.locean-ipsl.upmc.fr (Darwin)
84;
85;   * typo
86;
87; - fplod 20110420T110411Z aedon.locean-ipsl.upmc.fr (Darwin)
88;
89;   * remove hard coding path
90;   * add graphviz
91;
92; - fplod 20110411T142955Z aedon.locean-ipsl.upmc.fr (Darwin)
93;
94;   * minimal header
95;
96;-
97pro swr_isccp_tropflux_correlation_fig10
98;
99@cm_4cal
100@cm_4data
101@cm_4mesh
102@cm_4data
103@cm_project
104;
105reinitplt, /z,/invert
106key_portrait = 1
107;
108openps, FILENAME = project_od_env+'correlation_rmsd_olra_swra_smooth.ps'
109st=19890101
110en=20071231
111;
112restore, project_od_env + "correlation_isccp_olr.idl"
113;
114file=project_od_env+'TropFlux_sst_19890101_20091231.nc'
115initncdf, file
116sst=read_ncdf("sst", 20000101, 20091231, file=file,/nostr)
117help, sst
118;
119sst=grossemoyenne(sst, "t",/nan)
120lct=64
121plt, cor,0.5,1, lct=lct, $
122     small=[1,3,1],/rempl,/noer,/realcont, $
123     charsize=cs,marge=marge, $
124     subt='',title='a) Correlation (OLRA, SWRA)',xminor=1,yminor=1, $
125     contour=sst-273.15, contmin=24, contmax=29, contint=1.5
126;
127closeps
128;
129end
Note: See TracBrowser for help on using the repository browser.