Ignore:
Timestamp:
04/20/11 16:45:53 (13 years ago)
Author:
pinsard
Message:

going on consolidation of paper01 materials

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/paper01/fig12/swr_statistics_map_2000_2009_v50.pro

    r43 r46  
    11;+ 
    2 ; .. _swr_statistics_map_2000_2009_v50.pro 
     2; .. _swr_statistics_map_2000_2009_v50.pro: 
    33; 
    44; ==================================== 
     
    99; =========== 
    1010; 
     11; .. graphviz:: 
     12; 
     13;    digraph swr_statistics_map_2000_2009_v50 { 
     14;       graph [ 
     15;       rankdir="LR", 
     16;       ] 
     17;       swr_erai [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/swr_2000_2009_erai_v50.txt"]; 
     18;       swr_trop [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/swr_2000_2009_trop_v50.txt"]; 
     19;       swr_oaflx [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/swr_2000_2009_oaflx_v50.txt"]; 
     20;       swr_olr [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/swr_2000_2009_olr_v50.txt"]; 
     21;       mask [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/longwave_IO_mask.nc"]; 
     22; 
     23;       figure [shape=ellipse,fontname=Courier,label="${TROPFLUX_OD}/swr_statistics_map_2000_2009_v50.ps"]; 
     24; 
     25;       swr_statistics_map_2000_2009_v50 [shape=box, 
     26;       fontname=Courier, 
     27;       color=blue, 
     28;       URL="http://forge.ipsl.jussieu.fr/tropflux/broswrer/trunk/src/paper01/fig12/swr_statistics_map_2000_2009_v50.pro", 
     29;       label="${TROPFLUX}/src/paper01/fig12/swr_statistics_map_2000_2009_v50.pro"]; 
     30; 
     31;       {swr_erai swr_trop swr_oaflx swr_olr mask} -> {swr_statistics_map_2000_2009_v50} -> {figure} 
     32;    } 
     33; 
    1134; SEE ALSO 
    1235; ======== 
    1336; 
    1437; :ref:`tropflux_profile.sh` 
     38; :ref:`tropflux_init.pro` 
     39; :ref:`cm_tropflux.pro` 
    1540; 
    1641; EXAMPLES 
     
    2247;  IDL> swr_statistics_map_2000_2009_v50 
    2348; 
     49; TODO 
     50; ==== 
     51; 
     52; make it work on cratos : missing data 
     53; 
     54; coding rules 
     55; 
     56; get rid of spwan 
     57; 
     58; complete description 
     59; 
     60; handle IO error 
     61; 
    2462; EVOLUTIONS 
    2563; ========== 
     
    2765; $Id$ 
    2866; 
     67; - fplod 20110420T113846Z aedon.locean-ipsl.upmc.fr (Darwin) 
     68; 
     69;   * remove stop 
     70;   * remove hard coding path 
     71;   * add graphviz 
     72; 
    2973; - fplod 20110411T142955Z aedon.locean-ipsl.upmc.fr (Darwin) 
    3074; 
     
    3377;- 
    3478pro swr_statistics_map_2000_2009_v50 
    35 @common 
     79@cm_general 
     80@cm_tropflux 
    3681reinitplt, /z,/invert 
    3782key_portrait = 1 
     
    4489rmsd_mi=10  & rmsd_ma=30 & rmsd_int=1.25 
    4590cor_mi=0.5   & cor_ma=1.  & cor_int=0.02 
    46 fi_swr_erai='/Users/pkb/work/MY_SAXO/flux_automat/swr_2000_2009_erai_v50.txt' 
    47 fi_swr_trop='/Users/pkb/work/MY_SAXO/flux_automat/swr_2000_2009_trop_v50.txt' 
    48 fi_swr_oaflx='/Users/pkb/work/MY_SAXO/flux_automat/swr_2000_2009_oaflx_v50.txt' 
    49 fi_swr_olr='/Users/pkb/work/MY_SAXO/flux_automat/swr_2000_2009_olr_v50.txt' 
     91fi_swr_erai=tropflux_id_env+'swr_2000_2009_erai_v50.txt' 
     92fi_swr_trop=tropflux_id_env+'swr_2000_2009_trop_v50.txt' 
     93fi_swr_oaflx=tropflux_id_env+'swr_2000_2009_oaflx_v50.txt' 
     94fi_swr_olr=tropflux_id_env+'swr_2000_2009_olr_v50.txt' 
    5095 
    5196res=read_ascii(fi_swr_erai,data_start=1) 
     
    92137 
    93138;ind=where(std_olr ge std_ma) & std_olr(ind)=std_ma-0.01 
    94 stop 
    95 file='/Users/pkb/data/heat_budget/OAFLUX/longwave_IO_mask.nc' 
     139file=tropflux_id_env+'longwave_IO_mask.nc' 
    96140initncdf, file 
    97141domdef, 30,390,-30,30 
     
    516560endfor 
    517561closeps 
    518 fig='swr_statistics_map_2000_2009_v50.ps' 
    519 spawn, 'mv '+psdir+'idl.ps '+cpsdir+fig 
    520 spawn, 'gv '+cpsdir+fig 
    521 return 
     562fig=tropflux_od_env+'swr_statistics_map_2000_2009_v50.ps' 
     563spawn, 'mv '+psdir+'idl.ps '+fig 
     564spawn, 'gv '+fig 
    522565end 
Note: See TracChangeset for help on using the changeset viewer.