Changeset 50 for trunk/src/paper01/fig6


Ignore:
Timestamp:
04/29/11 11:09:12 (13 years ago)
Author:
pinsard
Message:

replace TROPFLUX by PROJECT

Location:
trunk/src/paper01/fig6
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/paper01/fig6/icoads_q2m_stats_paper.pro

    r47 r50  
    1515;       rankdir="LR", 
    1616;       ] 
    17 ;       sphum [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/sphum_monthly_1960_2010_oafluxgrid.nc"]; 
    18 ;       q2m_tropflux [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/q2m_TropFlux_global_monthly_1989_2009.nc"]; 
    19 ;       q2m_oaflux [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/q2m_OAFlux_global_monthly_1989_2009.nc"]; 
    20 ;       q2m_erai [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/q2m_ERAI_global_monthly_1989_2009.nc"]; 
    21 ;       q2m_ncep2 [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/q2m_NCEP2_global_monthly_1989_2009.nc"]; 
    22 ;       q2m_ncep1 [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/q2m_NCEP1_global_monthly_1989_2009.nc"]; 
    23 ; 
    24 ;       figure [shape=ellipse,fontname=Courier,label="${TROPFLUX_OD}/icoads_q2m_stats_paper.ps"]; 
     17;       sphum [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/sphum_monthly_1960_2010_oafluxgrid.nc"]; 
     18;       q2m_tropflux [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/q2m_TropFlux_global_monthly_1989_2009.nc"]; 
     19;       q2m_oaflux [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/q2m_OAFlux_global_monthly_1989_2009.nc"]; 
     20;       q2m_erai [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/q2m_ERAI_global_monthly_1989_2009.nc"]; 
     21;       q2m_ncep2 [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/q2m_NCEP2_global_monthly_1989_2009.nc"]; 
     22;       q2m_ncep1 [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/q2m_NCEP1_global_monthly_1989_2009.nc"]; 
     23; 
     24;       figure [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/icoads_q2m_stats_paper.ps"]; 
    2525; 
    2626;       icoads_q2m_stats_paper [shape=box, 
     
    3636; ======== 
    3737; 
    38 ; :ref:`tropflux_profile.sh` 
    39 ; :ref:`tropflux_init.pro` 
     38; :ref:`project_profile.sh` 
     39; :ref:`project_init.pro` 
    4040; 
    4141; :ref:`statistics.pro` 
     
    4646; :: 
    4747; 
    48 ;  IDL> @tropflux_init 
    4948;  IDL> icoads_q2m_stats_paper 
    5049; 
     
    7978pro icoads_q2m_stats_paper 
    8079@cm_general 
    81 @cm_tropflux 
     80@cm_project 
    8281reinitplt, /z,/invert 
    8382key_portrait = 1 
     
    9089domdef, box 
    9190 
    92 file=tropflux_id_env+'sphum_monthly_1960_2010_oafluxgrid.nc' 
     91file=project_id_env+'sphum_monthly_1960_2010_oafluxgrid.nc' 
    9392initncdf, file 
    9493icoads=read_ncdf("sphum", st, en , file=file,/nostr, box=box) 
    9594help, icoads 
    9695 
    97 file=tropflux_id_env+'q2m_TropFlux_global_monthly_1989_2009.nc' 
     96file=project_id_env+'q2m_TropFlux_global_monthly_1989_2009.nc' 
    9897initncdf, file 
    9998trop=read_ncdf("q2m", st, en , file=file,/nostr, box=box) 
    10099help, trop 
    101100 
    102 file=tropflux_id_env+"q2m_OAFlux_global_monthly_1989_2009.nc" 
     101file=project_id_env+"q2m_OAFlux_global_monthly_1989_2009.nc" 
    103102initncdf, file 
    104103oaf=read_ncdf("q2m", st, en , file=file,/nostr, box=box) 
    105104help, oaf 
    106105 
    107 file=tropflux_id_env+"q2m_ERAI_global_monthly_1989_2009.nc" 
     106file=project_id_env+"q2m_ERAI_global_monthly_1989_2009.nc" 
    108107initncdf, file 
    109108erai=read_ncdf("q2m", st, en , file=file,/nostr, box=box) 
    110109help, erai 
    111110 
    112 file=tropflux_id_env+"q2m_NCEP2_global_monthly_1989_2009.nc" 
     111file=project_id_env+"q2m_NCEP2_global_monthly_1989_2009.nc" 
    113112initncdf, file 
    114113ncep2=1000*read_ncdf("q2m", st, en , file=file,/nostr, box=box) 
    115114help, ncep2 
    116115 
    117 file=tropflux_id_env+"q2m_NCEP1_global_monthly_1989_2009.nc" 
     116file=project_id_env+"q2m_NCEP1_global_monthly_1989_2009.nc" 
    118117initncdf, file 
    119118ncep1=1000*read_ncdf("q2m", st, en , file=file,/nostr, box=box) 
     
    254253 
    255254closeps 
    256 fig=tropflux_od_env+"icoads_q2m_stats_paper.ps" 
     255fig=project_od_env+"icoads_q2m_stats_paper.ps" 
    257256spawn, 'mv '+psdir+'idl.ps '+fig 
    258257spawn, 'gv '+fig 
  • trunk/src/paper01/fig6/icoads_sst_stats_paper.pro

    r47 r50  
    1515;       rankdir="LR", 
    1616;       ] 
    17 ;       sst [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/sst_monthly_1960_2010_oafluxgrid.nc"]; 
    18 ;       sst_tropflux [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/sst_TropFlux_global_monthly_1989_2009.nc"]; 
    19 ;       sst_oaflux [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/sst_OAFlux_global_monthly_1989_2009.nc"]; 
    20 ;       sst_erai [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/sst_ERAI_global_monthly_1989_2009.nc"]; 
    21 ;       sst_ncep2 [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/sst_NCEP2_global_monthly_1989_2009.nc"]; 
    22 ;       sst_noc [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/nocv2_sst_19890101_20091231_oafluxgrid.nc"]; 
    23 ;       sst_ncep1 [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/sst_NCEP1_global_monthly_1989_2009.nc"]; 
    24 ; 
    25 ;       figure [shape=ellipse,fontname=Courier,label="${TROPFLUX_OD}/icoads_sst_stats_paper.ps"]; 
     17;       sst [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/sst_monthly_1960_2010_oafluxgrid.nc"]; 
     18;       sst_tropflux [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/sst_TropFlux_global_monthly_1989_2009.nc"]; 
     19;       sst_oaflux [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/sst_OAFlux_global_monthly_1989_2009.nc"]; 
     20;       sst_erai [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/sst_ERAI_global_monthly_1989_2009.nc"]; 
     21;       sst_ncep2 [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/sst_NCEP2_global_monthly_1989_2009.nc"]; 
     22;       sst_noc [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/nocv2_sst_19890101_20091231_oafluxgrid.nc"]; 
     23;       sst_ncep1 [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/sst_NCEP1_global_monthly_1989_2009.nc"]; 
     24; 
     25;       figure [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/icoads_sst_stats_paper.ps"]; 
    2626; 
    2727;       icoads_sst_stats_paper [shape=box, 
     
    3737; ======== 
    3838; 
    39 ; :ref:`tropflux_profile.sh` 
    40 ; :ref:`tropflux_init.pro` 
     39; :ref:`project_profile.sh` 
     40; :ref:`project_init.pro` 
    4141; 
    4242; :ref:`statistics.pro` 
     
    4747; :: 
    4848; 
    49 ;  IDL> @tropflux_init 
    5049;  IDL> icoads_sst_stats_paper 
    5150; 
     
    7978;- 
    8079pro icoads_sst_stats_paper 
    81 @cm_tropflux 
     80@cm_project 
    8281reinitplt, /z,/invert 
    8382key_portrait = 1 
     
    9089domdef, box 
    9190 
    92 file=tropflux_id_env+'sst_monthly_1960_2010_oafluxgrid.nc' 
     91file=project_id_env+'sst_monthly_1960_2010_oafluxgrid.nc' 
    9392initncdf, file 
    9493icoads=read_ncdf("sst", st-1, en , file=file,/nostr, box=box) 
    9594help, icoads 
    9695 
    97 file=tropflux_id_env+'sst_TropFlux_global_monthly_1989_2009.nc' 
     96file=project_id_env+'sst_TropFlux_global_monthly_1989_2009.nc' 
    9897initncdf, file 
    9998trop=read_ncdf("sst", st, en , file=file,/nostr, box=box)-273.15 
    10099help, trop 
    101100 
    102 file=tropflux_id_env+"sst_OAFlux_global_monthly_1989_2009.nc" 
     101file=project_id_env+"sst_OAFlux_global_monthly_1989_2009.nc" 
    103102initncdf, file 
    104103oaf=read_ncdf("sst", st, en , file=file,/nostr, box=box) 
    105104help, oaf 
    106105 
    107 file=tropflux_id_env+"sst_ERAI_global_monthly_1989_2009.nc" 
     106file=project_id_env+"sst_ERAI_global_monthly_1989_2009.nc" 
    108107initncdf, file 
    109108erai=read_ncdf("sst", st, en , file=file,/nostr, box=box)-273.15 
    110109help, erai 
    111110 
    112 file=tropflux_id_env+"sst_NCEP2_global_monthly_1989_2009.nc" 
     111file=project_id_env+"sst_NCEP2_global_monthly_1989_2009.nc" 
    113112initncdf, file 
    114113ncep2=read_ncdf("sst", st, en , file=file,/nostr, box=box)-273.15 
    115114help, ncep2 
    116115 
    117 file=tropflux_id_env+'nocv2_sst_19890101_20091231_oafluxgrid.nc' 
     116file=project_id_env+'nocv2_sst_19890101_20091231_oafluxgrid.nc' 
    118117initncdf, file 
    119118noc=read_ncdf("sst", st, en , file=file,/nostr, box=box) 
    120119help, noc 
    121120 
    122 file=tropflux_id_env+"sst_NCEP1_global_monthly_1989_2009.nc" 
     121file=project_id_env+"sst_NCEP1_global_monthly_1989_2009.nc" 
    123122initncdf, file 
    124123ncep1=read_ncdf("sst", st, en , file=file,/nostr, box=box)-273.15 
     
    281280 
    282281closeps 
    283 fig=tropflux_od_env+"icoads_sst_stats_paper.ps" 
     282fig=project_od_env+"icoads_sst_stats_paper.ps" 
    284283spawn, 'mv '+psdir+'idl.ps '+fig 
    285284spawn, 'gv '+fig 
  • trunk/src/paper01/fig6/icoads_t2m_stats_paper.pro

    r47 r50  
    1515;       rankdir="LR", 
    1616;       ] 
    17 ;       airt [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/airt_monthly_1960_2010_oafluxgrid.nc"]; 
    18 ;       t2m_tropflux [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/t2m_TropFlux_global_monthly_1989_2009.nc"]; 
    19 ;       t2m_oaflux [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/t2m_OAFlux_global_monthly_1989_2009.nc"]; 
    20 ;       t2m_erai [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/t2m_ERAI_global_monthly_1989_2009.nc"]; 
    21 ;       t2m_ncep2 [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/t2m_NCEP2_global_monthly_1989_2009.nc"]; 
    22 ;       t2m_ncep1 [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/t2m_NCEP1_global_monthly_1989_2009.nc"]; 
    23 ; 
    24 ;       figure [shape=ellipse,fontname=Courier,label="${TROPFLUX_OD}/icoads_t2m_stats_paper.ps"]; 
     17;       airt [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/airt_monthly_1960_2010_oafluxgrid.nc"]; 
     18;       t2m_tropflux [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/t2m_TropFlux_global_monthly_1989_2009.nc"]; 
     19;       t2m_oaflux [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/t2m_OAFlux_global_monthly_1989_2009.nc"]; 
     20;       t2m_erai [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/t2m_ERAI_global_monthly_1989_2009.nc"]; 
     21;       t2m_ncep2 [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/t2m_NCEP2_global_monthly_1989_2009.nc"]; 
     22;       t2m_ncep1 [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/t2m_NCEP1_global_monthly_1989_2009.nc"]; 
     23; 
     24;       figure [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/icoads_t2m_stats_paper.ps"]; 
    2525; 
    2626;       icoads_t2m_stats_paper [shape=box, 
     
    3636; ======== 
    3737; 
    38 ; :ref:`tropflux_profile.sh` 
    39 ; :ref:`tropflux_init.pro` 
     38; :ref:`project_profile.sh` 
     39; :ref:`project_init.pro` 
    4040; 
    4141; :ref:`statistics.pro` 
     
    4646; :: 
    4747; 
    48 ;  IDL> @tropflux_init 
    4948;  IDL> icoads_t2m_stats_paper 
    5049; 
     
    8079pro icoads_t2m_stats_paper 
    8180@cm_general 
    82 @cm_tropflux 
     81@cm_project 
    8382reinitplt, /z,/invert 
    8483key_portrait = 1 
     
    9190domdef, box 
    9291 
    93 file=tropflux_id_env+'airt_monthly_1960_2010_oafluxgrid.nc' 
     92file=project_id_env+'airt_monthly_1960_2010_oafluxgrid.nc' 
    9493initncdf, file 
    9594icoads=read_ncdf("airt", st-1, en , file=file,/nostr, box=box) 
    9695help, icoads 
    9796 
    98 file=tropflux_id_env+'t2m_TropFlux_global_monthly_1989_2009.nc' 
     97file=project_id_env+'t2m_TropFlux_global_monthly_1989_2009.nc' 
    9998initncdf, file 
    10099trop=read_ncdf("t2m", st, en , file=file,/nostr, box=box)-273.15 
    101100help, trop 
    102101 
    103 file=tropflux_id_env+"t2m_OAFlux_global_monthly_1989_2009.nc" 
     102file=project_id_env+"t2m_OAFlux_global_monthly_1989_2009.nc" 
    104103initncdf, file 
    105104oaf=read_ncdf("t2m", st, en , file=file,/nostr, box=box) 
    106105help, oaf 
    107106 
    108 file=tropflux_id_env+"t2m_ERAI_global_monthly_1989_2009.nc" 
     107file=project_id_env+"t2m_ERAI_global_monthly_1989_2009.nc" 
    109108initncdf, file 
    110109erai=read_ncdf("t2m", st, en , file=file,/nostr, box=box)-273.15 
    111110help, erai 
    112111 
    113 file=tropflux_id_env+"t2m_NCEP2_global_monthly_1989_2009.nc" 
     112file=project_id_env+"t2m_NCEP2_global_monthly_1989_2009.nc" 
    114113initncdf, file 
    115114ncep2=read_ncdf("t2m", st, en , file=file,/nostr, box=box)-273.15 
    116115help, ncep2 
    117116 
    118 file=tropflux_id_env+"t2m_NCEP1_global_monthly_1989_2009.nc" 
     117file=project_id_env+"t2m_NCEP1_global_monthly_1989_2009.nc" 
    119118initncdf, file 
    120119ncep1=read_ncdf("t2m", st, en , file=file,/nostr, box=box)-273.15 
     
    263262 
    264263closeps 
    265 fig=tropflux_od_env+"icoads_t2m_stats_paper.ps" 
     264fig=project_od_env+"icoads_t2m_stats_paper.ps" 
    266265spawn, 'mv '+psdir+'idl.ps '+fig 
    267266spawn, 'gv '+fig 
  • trunk/src/paper01/fig6/icoads_ws_stats_paper.pro

    r47 r50  
    1515;       rankdir="LR", 
    1616;       ] 
    17 ;       ws [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/ws_monthly_1960_2010_oafluxgrid.nc"]; 
    18 ;       ws_tropflux [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/ws_TropFlux_global_monthly_1989_2009.nc"]; 
    19 ;       ws_oaflux [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/ws_OAFlux_global_monthly_1989_2009.nc"]; 
    20 ;       ws_erai [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/ws_ERAI_global_monthly_1989_2009.nc"]; 
    21 ;       ws_ncep2 [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/ws_NCEP2_global_monthly_1989_2009.nc"]; 
    22 ;       ws_ncep1 [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/ws_NCEP1_global_monthly_1989_2009.nc"]; 
    23 ;       ws_noc [shape=ellipse,fontname=Courier,label="${TROPFLUX_ID}/nocv2_ws_19890101_20091231_oafluxgrid.nc"]; 
    24 ; 
    25 ;       figure [shape=ellipse,fontname=Courier,label="${TROPFLUX_OD}/icoads_ws_stats_paper.ps"]; 
     17;       ws [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/ws_monthly_1960_2010_oafluxgrid.nc"]; 
     18;       ws_tropflux [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/ws_TropFlux_global_monthly_1989_2009.nc"]; 
     19;       ws_oaflux [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/ws_OAFlux_global_monthly_1989_2009.nc"]; 
     20;       ws_erai [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/ws_ERAI_global_monthly_1989_2009.nc"]; 
     21;       ws_ncep2 [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/ws_NCEP2_global_monthly_1989_2009.nc"]; 
     22;       ws_ncep1 [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/ws_NCEP1_global_monthly_1989_2009.nc"]; 
     23;       ws_noc [shape=ellipse,fontname=Courier,label="${PROJECT_ID}/nocv2_ws_19890101_20091231_oafluxgrid.nc"]; 
     24; 
     25;       figure [shape=ellipse,fontname=Courier,label="${PROJECT_OD}/icoads_ws_stats_paper.ps"]; 
    2626; 
    2727;       icoads_ws_stats_paper [shape=box, 
     
    3737; ======== 
    3838; 
    39 ; :ref:`tropflux_profile.sh` 
    40 ; :ref:`tropflux_init.pro` 
     39; :ref:`project_profile.sh` 
     40; :ref:`project_init.pro` 
    4141; 
    4242; :ref:`statistics.pro` 
     
    4747; :: 
    4848; 
    49 ;  IDL> @tropflux_init 
    5049;  IDL> icoads_ws_stats_paper 
    5150; 
     
    8180pro icoads_ws_stats_paper 
    8281@cm_general 
    83 @cm_tropflux 
     82@cm_project 
    8483reinitplt, /z,/invert 
    8584key_portrait = 1 
     
    9291domdef, box 
    9392 
    94 file=tropflux_id_env+'ws_monthly_1960_2010_oafluxgrid.nc" 
     93file=project_id_env+'ws_monthly_1960_2010_oafluxgrid.nc" 
    9594initncdf, file 
    9695icoads=read_ncdf("ws", st-1, en , file=file,/nostr, box=box) 
    9796help, icoads 
    9897 
    99 file=tropflux_id_env+"ws_TropFlux_global_monthly_1989_2009.nc" 
     98file=project_id_env+"ws_TropFlux_global_monthly_1989_2009.nc" 
    10099initncdf, file 
    101100trop=read_ncdf("ws", st, en , file=file,/nostr, box=box) 
    102101help, trop 
    103102 
    104 file=tropflux_id_env+"ws_OAFlux_global_monthly_1989_2009.nc" 
     103file=project_id_env+"ws_OAFlux_global_monthly_1989_2009.nc" 
    105104initncdf, file 
    106105oaf=read_ncdf("ws", st, en , file=file,/nostr, box=box) 
    107106help, oaf 
    108107 
    109 file=tropflux_id_env+"ws_ERAI_global_monthly_1989_2009.nc" 
     108file=project_id_env+"ws_ERAI_global_monthly_1989_2009.nc" 
    110109initncdf, file 
    111110erai=read_ncdf("ws", st, en , file=file,/nostr, box=box) 
    112111help, erai 
    113112 
    114 file=tropflux_id_env+"ws_NCEP2_global_monthly_1989_2009.nc" 
     113file=project_id_env+"ws_NCEP2_global_monthly_1989_2009.nc" 
    115114initncdf, file 
    116115ncep2=read_ncdf("wsm", st, en , file=file,/nostr, box=box) 
    117116help, ncep2 
    118117 
    119 file=tropflux_id_env+"ws_NCEP1_global_monthly_1989_2009.nc" 
     118file=project_id_env+"ws_NCEP1_global_monthly_1989_2009.nc" 
    120119initncdf, file 
    121120ncep1=read_ncdf("ws", st, en , file=file,/nostr, box=box) 
    122121help, ncep1 
    123122 
    124 file=tropflux_id_env+'nocv2_ws_19890101_20091231_oafluxgrid.nc' 
     123file=project_id_env+'nocv2_ws_19890101_20091231_oafluxgrid.nc' 
    125124initncdf, file 
    126125noc=read_ncdf("ws", st, en , file=file,/nostr, box=box) 
     
    280279 
    281280closeps 
    282 fig=tropflux_od_env+"icoads_ws_stats_paper.ps" 
     281fig=project_od_env+"icoads_ws_stats_paper.ps" 
    283282spawn, 'mv '+psdir+'idl.ps '+fig 
    284283spawn, 'gv '+fig 
  • trunk/src/paper01/fig6/statistics.pro

    r46 r50  
    1212; ======== 
    1313; 
    14 ; :ref:`tropflux_profile.sh` 
     14; :ref:`project_profile.sh` 
    1515; 
    1616; :ref:`as_validation_net_1994_95_v10.pro` 
     
    3131; :: 
    3232; 
    33 ;  IDL> @tropflux_init 
    3433;  IDL> moor=++ 
    3534;  IDL> ++ 
     
    5857pro statistics, moor, erai, $ 
    5958   cor, bias, std, rmsd 
    60 @cm_tropflux 
     59@cm_project 
    6160;; mean1= mean of mooring variable      std1=std of mooring variable 
    6261;; mean2= mean of erai variable         std2=std of erai variable 
Note: See TracChangeset for help on using the changeset viewer.