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

Last change on this file since 85 was 85, checked in by pinsard, 13 years ago

restart consolidation of paper01 software

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