source: trunk/src/paper01/fig12/swr_statistics_map_2000_2009_v50.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: 13.6 KB
RevLine 
[43]1;+
[46]2; .. _swr_statistics_map_2000_2009_v50.pro:
[43]3;
4; ====================================
5; swr_statistics_map_2000_2009_v50.pro
6; ====================================
7;
8; DESCRIPTION
9; ===========
10;
[46]11; .. graphviz::
12;
13;    digraph swr_statistics_map_2000_2009_v50 {
[85]14;
[50]15;       swr_erai [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/swr_2000_2009_erai_v50.txt"];
16;       swr_trop [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/swr_2000_2009_trop_v50.txt"];
17;       swr_oaflx [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/swr_2000_2009_oaflx_v50.txt"];
18;       swr_olr [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/swr_2000_2009_olr_v50.txt"];
19;       mask [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/longwave_IO_mask.nc"];
[46]20;
[50]21;       figure [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/swr_statistics_map_2000_2009_v50.ps"];
[46]22;
23;       swr_statistics_map_2000_2009_v50 [shape=box,
24;       fontname=Courier,
25;       color=blue,
26;       URL="http://forge.ipsl.jussieu.fr/tropflux/broswrer/trunk/src/paper01/fig12/swr_statistics_map_2000_2009_v50.pro",
27;       label="${TROPFLUX}/src/paper01/fig12/swr_statistics_map_2000_2009_v50.pro"];
28;
29;       {swr_erai swr_trop swr_oaflx swr_olr mask} -> {swr_statistics_map_2000_2009_v50} -> {figure}
30;    }
31;
[43]32; SEE ALSO
33; ========
34;
[50]35; :ref:`project_profile.sh`
36; :ref:`project_init.pro`
37; :ref:`cm_project.pro`
[43]38;
39; EXAMPLES
40; ========
41;
42; ::
43;
[180]44;  swr_statistics_map_2000_2009_v50
[43]45;
[46]46; TODO
47; ====
48;
49; make it work on cratos : missing data
50;
51; coding rules
52;
53; complete description
54;
55; handle IO error
56;
[43]57; EVOLUTIONS
58; ==========
59;
60; $Id$
61;
[85]62; $URL$
63;
[46]64; - fplod 20110420T113846Z aedon.locean-ipsl.upmc.fr (Darwin)
65;
66;   * remove stop
67;   * remove hard coding path
68;   * add graphviz
69;
[43]70; - fplod 20110411T142955Z aedon.locean-ipsl.upmc.fr (Darwin)
71;
72;   * minimal header
73;
74;-
[41]75pro swr_statistics_map_2000_2009_v50
[46]76@cm_general
[50]77@cm_project
[41]78reinitplt, /z,/invert
79key_portrait = 1
80coefpalit=.9
[97]81;
[85]82openps, FILENAME = project_od_env+'swr_statistics_map_2000_2009_v50.ps'
[41]83; partie a changer
[97]84bias_mi=-20
85bias_ma=20
[94]86bias_int=2
[97]87std_mi=0.7
88std_ma=1.31
[94]89std_int=0.05
[97]90rmsd_mi=10
91rmsd_ma=30
[94]92rmsd_int=1.25
[97]93cor_mi=0.5
94cor_ma=1.
[94]95cor_int=0.02
[50]96fi_swr_erai=project_id_env+'swr_2000_2009_erai_v50.txt'
97fi_swr_trop=project_id_env+'swr_2000_2009_trop_v50.txt'
98fi_swr_oaflx=project_id_env+'swr_2000_2009_oaflx_v50.txt'
99fi_swr_olr=project_id_env+'swr_2000_2009_olr_v50.txt'
[97]100;
[41]101res=read_ascii(fi_swr_erai,data_start=1)
102ff=res.field1
103lat=reform(ff(0,*))
104lon=reform(ff(1,*))
105cor_era=reform(ff(2,*))
106bias_era=reform(ff(3,*))
107std_era=reform(ff(4,*))
108rmsd_era=reform(ff(5,*))
[97]109;
110ind=where(bias_era ge bias_ma)
[94]111bias_era(ind)=bias_ma-0.5
[97]112ind=where(rmsd_era ge rmsd_ma)
[94]113rmsd_era(ind)=rmsd_ma-0.5
[97]114;
[41]115res=read_ascii(fi_swr_trop,data_start=1)
116ff=res.field1
117lat=reform(ff(0,*))
118lon=reform(ff(1,*))
119cor_trop=reform(ff(2,*))
120bias_trop=reform(ff(3,*))
121std_trop=reform(ff(4,*))
122rmsd_trop=reform(ff(5,*))
[97]123ind=where(rmsd_trop ge rmsd_ma)
[94]124rmsd_trop(ind)=rmsd_ma-0.5
[97]125;
[41]126res=read_ascii(fi_swr_oaflx,data_start=1)
127ff=res.field1
128lat=reform(ff(0,*))
129lon=reform(ff(1,*))
130cor_oaflx=reform(ff(2,*))
131bias_oaflx=reform(ff(3,*))
132std_oaflx=reform(ff(4,*))
133rmsd_oaflx=reform(ff(5,*))
[97]134ind=where(rmsd_oaflx ge rmsd_ma)
[94]135rmsd_oaflx(ind)=rmsd_ma-0.5
[97]136;
[41]137res=read_ascii(fi_swr_olr,data_start=1)
138ff=res.field1
139lat=reform(ff(0,*))
140lon=reform(ff(1,*))
141cor_olr=reform(ff(2,*))
142bias_olr=reform(ff(3,*))
143std_olr=reform(ff(4,*))
144rmsd_olr=reform(ff(5,*))
[97]145ind=where(rmsd_olr ge rmsd_ma)
[94]146rmsd_olr(ind)=rmsd_ma-0.5
[97]147;
148;ind=where(std_olr ge std_ma)
[94]149;std_olr(ind)=std_ma-0.01
[50]150file=project_id_env+'longwave_IO_mask.nc'
[41]151initncdf, file
152domdef, 30,390,-30,30
153msk=ncdf_lec(file,var='msk')
154;box=[0,290,-30,30]
155marge=[0,0,-0.8,0]
156marge1=[0,0,-5,0]
157plt, .4+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,box=box,lct=64,cor_mi, cor_ma,int=cor_int, $
158   title='1) SWR Correlation - TropFlux', subtitle='', small=[1,4,1],/rempl,/nocolorb, marge=marge
[97]159;
[41]160NN=n_elements(lat)
[97]161;
[41]162usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]163;
[41]164for n=0,NN-1 do begin
165  x=lon(n)
166  y=lat(n)
167  c=cor_trop(n)
[97]168  cmi=cor_mi
169  cma=cor_ma
[94]170  dc=cma-cmi
[41]171  col=((10+244*(c-cmi)/dc) > 10) < 254
172  plots, x,y,psym=8,symsize=1.5,color=col
173endfor
[97]174;
[41]175usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]176;
[41]177for n=0,NN-1 do begin
178  x=lon(n)
[43]179  y=lat(n)
180  c=cor_trop(n)
[97]181;
[41]182  plots, x,y,psym=8,symsize=1.5,color=0
183endfor
184plt, 12+msk,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,cor_mi, cor_ma,int=cor_int,/nocolorb, $
185   title='2) SWR Correlation -  ERAI', subtitle='', small=[1,4,2],/noer,/rempl, marge=marge
[97]186;
[41]187NN=n_elements(lat)
[97]188;
[41]189usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]190;
[41]191for n=0,NN-1 do begin
192  x=lon(n)
193  y=lat(n)
194  c=cor_era(n)
[97]195  cmi=cor_mi
196  cma=cor_ma
[94]197  dc=cma-cmi
[41]198  col=((10+244*(c-cmi)/dc) > 10) < 254
199  plots, x,y,psym=8,symsize=1.5,color=col
200endfor
[97]201;
[41]202usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]203;
[41]204for n=0,NN-1 do begin
205  x=lon(n)
[43]206  y=lat(n)
207  c=cor_era(n)
[97]208;
[41]209  plots, x,y,psym=8,symsize=1.5,color=0
210endfor
211plt, 12+msk,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,cor_mi, cor_ma,int=cor_int,/nocolorb, $
212   title='3) SWR Correlation - OAFlux', subtitle='', small=[1,4,3],/noer,/rempl, marge=marge
[97]213;
[41]214NN=n_elements(lat)
[97]215;
[41]216usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]217;
[41]218for n=0,NN-1 do begin
219  x=lon(n)
220  y=lat(n)
221  c=cor_oaflx(n)
[97]222  cmi=cor_mi
223  cma=cor_ma
[94]224  dc=cma-cmi
[41]225  col=((10+244*(c-cmi)/dc) > 10) < 254
226  plots, x,y,psym=8,symsize=1.5,color=col
227endfor
[97]228;
[41]229usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]230;
[41]231for n=0,NN-1 do begin
232  x=lon(n)
233  y=lat(n)
234  c=cor_oaflx(n)
[97]235;
[41]236  plots, x,y,psym=8,symsize=1.5,color=0
237endfor
238plt, 12+msk,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,cor_mi, cor_ma,int=cor_int, $
239   title='4) SWR Correlation - SWR_olr', subtitle='', small=[1,4,4],/noer,/rempl, marge=marge1
[97]240;
[41]241NN=n_elements(lat)
[97]242;
[41]243usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]244;
[41]245for n=0,NN-1 do begin
246  x=lon(n)
247  y=lat(n)
248  c=cor_olr(n)
[97]249  cmi=cor_mi
250  cma=cor_ma
[94]251  dc=cma-cmi
[41]252  col=((10+244*(c-cmi)/dc) > 10) < 254
253  plots, x,y,psym=8,symsize=1.5,color=col
254endfor
[97]255;
[41]256usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]257;
[41]258for n=0,NN-1 do begin
259  x=lon(n)
260  y=lat(n)
261  c=cor_olr(n)
[97]262;
[41]263  plots, x,y,psym=8,symsize=1.5,color=0
264endfor
[97]265;
[41]266erase
[97]267;
[41]268plt, -5+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,bias_mi, bias_ma, int=bias_int, marge=marge,/nocolorb, $
269   title='1) SWR Mean bias - TropFlux', subtitle='', small=[1,4,1],/rempl,format='(i3)'
[97]270;
[41]271NN=n_elements(lat)
[97]272;
[41]273usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]274;
[41]275for n=0,NN-1 do begin
276  x=lon(n)
277  y=lat(n)
278  c=bias_trop(n)
[97]279  cmi=bias_mi
280  cma=bias_ma
[94]281  dc=cma-cmi
[41]282  col=((10+244*(c-cmi)/dc) > 10) < 254
283  plots, x,y,psym=8,symsize=1.5,color=col
284endfor
[97]285;
[41]286usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]287;
[41]288for n=0,NN-1 do begin
289  x=lon(n)
[43]290  y=lat(n)
291  c=bias_trop(n)
[97]292;
[41]293  plots, x,y,psym=8,symsize=1.5,color=0
294endfor
295plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,bias_mi, bias_ma, int=bias_int,/noer, marge=marge, $
296   title='2) SWR Mean bias - ERAI', subtitle='', small=[1,4,2],/rempl,format='(i3)',/nocolorb
[97]297;
[41]298NN=n_elements(lat)
[97]299;
[41]300usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]301;
[41]302for n=0,NN-1 do begin
303  x=lon(n)
304  y=lat(n)
305  c=bias_era(n)
[97]306  cmi=bias_mi
307  cma=bias_ma
[94]308  dc=cma-cmi
[41]309  col=((10+244*(c-cmi)/dc) > 10) < 254
310  plots, x,y,psym=8,symsize=1.5,color=col
311endfor
[97]312;
[41]313usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]314;
[41]315for n=0,NN-1 do begin
316  x=lon(n)
317  y=lat(n)
318  c=bias_era(n)
[97]319;
[41]320  plots, x,y,psym=8,symsize=1.5,color=0
321endfor
[97]322;
[41]323plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,bias_mi, bias_ma, int=bias_int,/noer, marge=marge, $
324   title='3) SWR Mean bias - OAFlux', subtitle='', small=[1,4,3],/rempl,format='(i3)',/nocolorb
[97]325;
[41]326NN=n_elements(lat)
[97]327;
[41]328usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]329;
[41]330for n=0,NN-1 do begin
331  x=lon(n)
332  y=lat(n)
333  c=bias_oaflx(n)
[97]334  cmi=bias_mi
335  cma=bias_ma
[94]336  dc=cma-cmi
[41]337  col=((10+244*(c-cmi)/dc) > 10) < 254
338  plots, x,y,psym=8,symsize=1.5,color=col
339endfor
[97]340;
[41]341usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]342;
[41]343for n=0,NN-1 do begin
344  x=lon(n)
345  y=lat(n)
346  c=bias_oaflx(n)
[97]347;
[41]348  plots, x,y,psym=8,symsize=1.5,color=0
349endfor
[97]350;
[41]351plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,bias_mi, bias_ma, int=bias_int,/noer, marge=marge1, $
[97]352   title='4) SWR Mean bias - SWR_olr', subtitle='', small=[1,4,4],/rempl ;,format='(i4)'
353;
[41]354NN=n_elements(lat)
[97]355;
[41]356usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]357;
[41]358for n=0,NN-1 do begin
359  x=lon(n)
360  y=lat(n)
361  c=bias_olr(n)
[97]362  cmi=bias_mi
363  cma=bias_ma
[94]364  dc=cma-cmi
[41]365  col=((10+244*(c-cmi)/dc) > 10) < 254
366  plots, x,y,psym=8,symsize=1.5,color=col
367endfor
[97]368;
[41]369usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]370;
[41]371for n=0,NN-1 do begin
372  x=lon(n)
373  y=lat(n)
374  c=bias_olr(n)
[97]375;
[41]376  plots, x,y,psym=8,symsize=1.5,color=0
377endfor
[97]378;
[41]379erase
[97]380;
[41]381plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,rmsd_mi, rmsd_ma, int=rmsd_int,/noer, $
382   title='1) RMSD - TropFlux', subtitle='', small=[1,4,1],/rempl,/nocolorb, marge=marge
[97]383;
[41]384NN=n_elements(lat)
[97]385;
[41]386usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]387;
[41]388for n=0,NN-1 do begin
389  x=lon(n)
390  y=lat(n)
391  c=rmsd_trop(n)
[97]392  cmi=rmsd_mi
393  cma=rmsd_ma
[94]394  dc=cma-cmi
[41]395  col=((10+244*(c-cmi)/dc) > 10) < 254
396  plots, x,y,psym=8,symsize=1.5,color=col
397endfor
[97]398;
[41]399usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]400;
[41]401for n=0,NN-1 do begin
402  x=lon(n)
403  y=lat(n)
404  c=rmsd_trop(n)
[97]405;
[41]406  plots, x,y,psym=8,symsize=1.5,color=0
407endfor
408plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,rmsd_mi, rmsd_ma, int=rmsd_int,/noer, $
409   title='2) RMSD - ERAI', subtitle='', small=[1,4,2],/rempl,/nocolorb, marge=marge
[97]410;
[41]411NN=n_elements(lat)
[97]412;
[41]413usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]414;
[41]415for n=0,NN-1 do begin
416  x=lon(n)
417  y=lat(n)
418  c=rmsd_era(n)
[97]419  cmi=rmsd_mi
420  cma=rmsd_ma
[94]421  dc=cma-cmi
[41]422  col=((10+244*(c-cmi)/dc) > 10) < 254
423  plots, x,y,psym=8,symsize=1.5,color=col
424endfor
[97]425;
[41]426usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]427;
[41]428for n=0,NN-1 do begin
429  x=lon(n)
430  y=lat(n)
431  c=rmsd_era(n)
[97]432;
[41]433  plots, x,y,psym=8,symsize=1.5,color=0
434endfor
435plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,rmsd_mi, rmsd_ma, int=rmsd_int,/noer, $
436   title='3) RMSD - OAFlux', subtitle='', small=[1,4,3],/rempl,/nocolorb, marge=marge
[97]437;
[41]438NN=n_elements(lat)
[97]439;
[41]440usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]441;
[41]442for n=0,NN-1 do begin
443  x=lon(n)
444  y=lat(n)
445  c=rmsd_oaflx(n)
[97]446  cmi=rmsd_mi
447  cma=rmsd_ma
[94]448  dc=cma-cmi
[41]449  col=((10+244*(c-cmi)/dc) > 10) < 254
450  plots, x,y,psym=8,symsize=1.5,color=col
451endfor
[97]452;
[41]453usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]454;
[41]455for n=0,NN-1 do begin
456  x=lon(n)
457  y=lat(n)
458  c=rmsd_oaflx(n)
[97]459;
[41]460  plots, x,y,psym=8,symsize=1.5,color=0
461endfor
[97]462;
[41]463plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,rmsd_mi, rmsd_ma, int=rmsd_int,/noer, $
464   title='4) RMSD - SWR_olr', subtitle='', small=[1,4,4],/rempl, marge=marge1
[97]465;
[41]466NN=n_elements(lat)
[97]467;
[41]468usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]469;
[41]470for n=0,NN-1 do begin
471  x=lon(n)
472  y=lat(n)
473  c=rmsd_olr(n)
[97]474  cmi=rmsd_mi
475  cma=rmsd_ma
[94]476  dc=cma-cmi
[41]477  col=((10+244*(c-cmi)/dc) > 10) < 254
478  plots, x,y,psym=8,symsize=1.5,color=col
479endfor
[97]480;
[41]481usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]482;
[41]483for n=0,NN-1 do begin
484  x=lon(n)
485  y=lat(n)
486  c=rmsd_olr(n)
[97]487;
[41]488  plots, x,y,psym=8,symsize=1.5,color=0
489endfor
490erase
491plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,std_mi, std_ma, int=std_int,/noer, $
492   title='1) STD ratio - TropFlux', subtitle='', small=[1,4,1],/rempl,/nocolorb, marge=marge
[97]493;
[41]494NN=n_elements(lat)
[97]495;
[41]496usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]497;
[41]498for n=0,NN-1 do begin
499  x=lon(n)
500  y=lat(n)
501  c=std_trop(n)
[97]502  cmi=std_mi
503  cma=std_ma
[94]504  dc=cma-cmi
[41]505  col=((10+244*(c-cmi)/dc) > 10) < 254
506  plots, x,y,psym=8,symsize=1.5,color=col
507endfor
[97]508;
[41]509usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]510;
[41]511for n=0,NN-1 do begin
512  x=lon(n)
513  y=lat(n)
514  c=std_trop(n)
[97]515;
[41]516  plots, x,y,psym=8,symsize=1.5,color=0
517endfor
518plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,std_mi, std_ma, int=std_int,/noer, $
519   title='2) STD ratop - ERAI', subtitle='', small=[1,4,2],/rempl,/nocolorb, marge=marge
[97]520;
[41]521NN=n_elements(lat)
[97]522;
[41]523usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]524;
[41]525for n=0,NN-1 do begin
526  x=lon(n)
527  y=lat(n)
528  c=std_era(n)
[97]529  cmi=std_mi
530  cma=std_ma
[94]531  dc=cma-cmi
[41]532  col=((10+244*(c-cmi)/dc) > 10) < 254
533  plots, x,y,psym=8,symsize=1.5,color=col
534endfor
[97]535;
[41]536usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]537;
[41]538for n=0,NN-1 do begin
539  x=lon(n)
540  y=lat(n)
541  c=std_era(n)
[97]542;
[41]543  plots, x,y,psym=8,symsize=1.5,color=0
544endfor
[97]545;
[41]546plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,std_mi, std_ma, int=std_int,/noer, $
547   title='3) STD rato - OAFlux', subtitle='', small=[1,4,3],/rempl,/nocolorb, marge=marge
[97]548;
[41]549NN=n_elements(lat)
[97]550;
[41]551usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]552;
[41]553for n=0,NN-1 do begin
554  x=lon(n)
555  y=lat(n)
556  c=std_oaflx(n)
[97]557  cmi=std_mi
558  cma=std_ma
[94]559  dc=cma-cmi
[41]560  col=((10+244*(c-cmi)/dc) > 10) < 254
561  plots, x,y,psym=8,symsize=1.5,color=col
562endfor
[97]563;
[41]564usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]565;
[41]566for n=0,NN-1 do begin
567  x=lon(n)
568  y=lat(n)
569  c=std_oaflx(n)
[97]570;
[41]571  plots, x,y,psym=8,symsize=1.5,color=0
572endfor
[97]573;
[41]574plt,0.8+msk*1.e-5,realcont=2,/nocont,/nofill,xminor=1,yminor=1,lct=64,std_mi, std_ma, int=std_int,/noer, $
575   title='4) STD rato - SWR_olr', subtitle='', small=[1,4,4],/rempl, marge=marge1
[97]576;
[41]577NN=n_elements(lat)
[97]578;
[41]579usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5],/fill
[97]580;
[41]581for n=0,NN-1 do begin
582  x=lon(n)
583  y=lat(n)
584  c=std_olr(n)
[97]585  cmi=std_mi
586  cma=std_ma
[94]587  dc=cma-cmi
[41]588  col=((10+244*(c-cmi)/dc) > 10) < 254
589  plots, x,y,psym=8,symsize=1.5,color=col
590endfor
[97]591;
[41]592usersym, [-.5,.5,.5,-.5,-.5],[-.5,-.5,.5,.5,-.5]
[97]593;
[41]594for n=0,NN-1 do begin
595  x=lon(n)
596  y=lat(n)
597  c=std_olr(n)
[97]598;
[41]599  plots, x,y,psym=8,symsize=1.5,color=0
600endfor
[97]601;
[41]602closeps
[97]603;
[41]604end
Note: See TracBrowser for help on using the repository browser.