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

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

fix some svn propset

  • Property svn:keywords set to Id URL
File size: 2.8 KB
RevLine 
[43]1;+
2; .. _swr_isccp_tropflux_correlation_fig10.pro:
3;
4; ========================================
5; swr_isccp_tropflux_correlation_fig10.pro
6; ========================================
7;
8; DESCRIPTION
9; ===========
10;
[97]11; :file:`${PROJECT_OD}/TropFlux_sst_19890101_20091231.nc`
12; containing
13; sst corrected on OAFLUX grid
[100]14; has been produced by
[175]15; :func:`sst_correction_ncdf`.
[85]16;
17; :file:`${PROJECT_OD}/correlation_isccp_olr.idl`
18; containing
19; ++
[100]20; has been produced by
21; :ref:`swr_isccp_tropflux_new_v1.pro`
[85]22;
[46]23; .. graphviz::
24;
25;    digraph swr_isccp_tropflux_correlation_fig10 {
26;
[85]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"];
[50]29;       figure [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/correlation_rmsd_olra_swra_smooth.ps"];
[46]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;
[85]37;       {sst cor_olr} -> {swr_isccp_tropflux_correlation_fig10} -> {figure}
38;
[46]39;    }
40;
[43]41; SEE ALSO
42; ========
43;
[50]44; :ref:`project_profile.sh`
45; :ref:`project_init.pro`
46; :ref:`cm_project.pro`
[43]47;
48; EXAMPLES
49; ========
50;
51; ::
52;
[180]53;  swr_isccp_tropflux_correlation_fig10
[43]54;
[46]55; TODO
56; ====
57;
[97]58; make it work on cratos
59;
[85]60; get rid of restore
[46]61;
[85]62; hard coded 273 ... check unit of input (might change !!)
63;
[46]64; coding rules
65;
66; complete description
67;
68; handle IO error
69;
[43]70; EVOLUTIONS
71; ==========
72;
73; $Id$
74;
[85]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;
[50]83; - fplod 20110422T103945Z aedon.locean-ipsl.upmc.fr (Darwin)
84;
85;   * typo
86;
[46]87; - fplod 20110420T110411Z aedon.locean-ipsl.upmc.fr (Darwin)
88;
89;   * remove hard coding path
90;   * add graphviz
91;
[43]92; - fplod 20110411T142955Z aedon.locean-ipsl.upmc.fr (Darwin)
93;
94;   * minimal header
95;
96;-
[41]97pro swr_isccp_tropflux_correlation_fig10
[85]98;
99@cm_4cal
100@cm_4data
101@cm_4mesh
102@cm_4data
[50]103@cm_project
[85]104;
[41]105reinitplt, /z,/invert
106key_portrait = 1
[97]107;
[85]108openps, FILENAME = project_od_env+'correlation_rmsd_olra_swra_smooth.ps'
[97]109st=19890101
[94]110en=20071231
[97]111;
[85]112restore, project_od_env + "correlation_isccp_olr.idl"
[97]113;
[85]114file=project_od_env+'TropFlux_sst_19890101_20091231.nc'
[41]115initncdf, file
116sst=read_ncdf("sst", 20000101, 20091231, file=file,/nostr)
117help, sst
[97]118;
[41]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
[97]126;
[41]127closeps
[97]128;
[41]129end
Note: See TracBrowser for help on using the repository browser.