Changeset 47 for trunk/src


Ignore:
Timestamp:
04/20/11 17:40:26 (13 years ago)
Author:
pinsard
Message:

going on consolidation of paper01 materials using loholt1

Location:
trunk/src/paper01
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/paper01/fig1/fig1_no_obs_map.pro

    r46 r47  
    7373; $Id$ 
    7474; 
     75; - pinsard 2011-04-20T15:08:28Z loholt1.ipsl.polytechnique.fr (Linux) 
     76; 
     77;   * make it work on loholt1 
     78; 
    7579; - fplod 20110420T134821Z aedon.locean-ipsl.upmc.fr (Darwin) 
    7680; 
     
    9195; 
    9296@cm_tropflux 
     97@cm_general 
    9398; 
    9499reinitplt, /z,/invert 
  • trunk/src/paper01/fig14/as_validation_net_1994_95_v10.pro

    r46 r47  
    6565; 
    6666; make it work on cratos : missing data 
     67; 
    6768; coding rules 
    6869; 
  • trunk/src/paper01/fig2/fig2_timeline_diagram.pro

    r46 r47  
    5454; ==== 
    5555; 
    56 ; make it work on cratos :: 
     56; make it work on cratos and loholt1:: 
    5757;    % Error: 
    5858;    % the vector size (7670) is incompatible 
     
    6060;    % [jpi/nx, jpj/ny, jpk/nz, jpt] = [1/1, 1/1, 1/1, 1] 
    6161; 
     62; missing cdf files 
     63; 
    6264; coding rules 
    6365; 
     
    8789 
    8890@cm_tropflux 
     91@cm_general 
    8992 
    9093reinitplt, /z,/invert 
  • trunk/src/paper01/fig2/read_sw.pro

    r46 r47  
    3434; :ref:`tropflux_profile.sh` 
    3535; 
    36 : :func:`time_lec` 
     36; :func:`time_lec` 
    3737; 
    3838; :ref:`fig2_timeline_diagram.pro` 
     
    5555; make it work with a file 
    5656; 
    57 ; 
    5857; EVOLUTIONS 
    5958; ========== 
    6059; 
    6160; $Id$ 
     61; 
     62; - pinsard 2011-04-20T15:15:12Z loholt1.ipsl.polytechnique.fr (Linux) 
     63; 
     64;   * typo 
    6265; 
    6366; - fplod 20110412T093325Z aedon.locean-ipsl.upmc.fr (Darwin) 
  • trunk/src/paper01/fig3/q2m_validation_scatter_2000_2009_v50.pro

    r46 r47  
    8080; complete description 
    8181; 
    82 ; externalize function 
    83 ; 
    8482; handle IO error 
    8583; 
     
    8886; 
    8987; $Id$ 
     88; 
     89; - pinsard 2011-04-20T15:17:57Z loholt1.ipsl.polytechnique.fr (Linux) 
     90; 
     91;   * typo 
     92;   * externalize function 
    9093; 
    9194; - fplod 20110412T104125Z aedon.locean-ipsl.upmc.fr (Darwin) 
     
    128131close,/all 
    129132 
    130 fi_q2m_erai='tropflux_id_env+'q2m_2000_2009_erai_v50.txt' 
     133fi_q2m_erai=tropflux_id_env+'q2m_2000_2009_erai_v50.txt' 
    131134openw,1,fi_q2m_erai 
    132 fi_q2m_trop='tropflux_id_env+'q2m_2000_2009_trop_v50.txt' 
     135fi_q2m_trop=tropflux_id_env+'q2m_2000_2009_trop_v50.txt' 
    133136openw,2,fi_q2m_trop 
    134 fi_q2m_oaflx='tropflux_id_env+'q2m_2000_2009_oaflx_v50.txt' 
     137fi_q2m_oaflx=tropflux_id_env+'q2m_2000_2009_oaflx_v50.txt' 
    135138openw,3,fi_q2m_oaflx 
    136 fi_q2m_ncep='tropflux_id_env+'q2m_2000_2009_ncep_v50.txt' 
     139fi_q2m_ncep=tropflux_id_env+'q2m_2000_2009_ncep_v50.txt' 
    137140openw,4,fi_q2m_ncep 
    138 fi_q2m_ncep1='tropflux_id_env+'q2m_2000_2009_ncep1_v50.txt' 
     141fi_q2m_ncep1=tropflux_id_env+'q2m_2000_2009_ncep1_v50.txt' 
    139142openw,5,fi_q2m_ncep1 
    140143 
     
    169172help, nce 
    170173 
    171 file=tropflux_id_env+''q2m_ncep1_19890101_20091231.nc' 
     174file=tropflux_id_env+'q2m_ncep1_19890101_20091231.nc' 
    172175initncdf, file 
    173176nce1=read_ncdf("q2m", date1, date2, file=file,/nostr) 
     
    384387spawn, 'gv '+fig 
    385388end 
    386  
    387 function x_site_location, site 
    388     n1=strpos(site, 's') 
    389 if (n1 gt -1) then begin 
    390     ns=-1. 
    391     x=strmid(site, 0, n1) 
    392     x=float(x)*ns 
    393 endif else begin 
    394     n1=strpos(site, 'n') 
    395     x=strmid(site, 0, n1) 
    396     ny=1. 
    397     x=float(x)*ny 
    398 endelse 
    399 return, float(x) 
    400 end 
    401 function y_site_location, site 
    402     n1=strpos(site, 'e') 
    403 if (n1 gt -1) then begin 
    404     n=strpos(site, 's') 
    405     if (n gt -1) then begin 
    406         y=strmid(site, n+1, n1-n-1) 
    407     endif else begin 
    408         n=strpos(site, 'n') 
    409         y=strmid(site, n+1, n1-n-1) 
    410     endelse 
    411  
    412 endif else begin 
    413     n1=strpos(site, 'w') 
    414     n=strpos(site, 's') 
    415     if (n gt -1) then begin 
    416         y=strmid(site, n+1, n1-n-1) 
    417         y=180+(180-float(y)) 
    418     endif else begin 
    419         n=strpos(site, 'n') 
    420         y=strmid(site, n+1, n1-n-1) 
    421         y=180+(180-float(y)) 
    422    endelse 
    423 endelse 
    424 return,float(y) 
    425 end 
  • trunk/src/paper01/fig3/sst_validation_scatter_2000_2009_v50.pro

    r46 r47  
    6666; ==== 
    6767; 
    68 ; ++ plus de licences sur cratos 
     68; make it work on cratos : missing data 
    6969; 
    7070; ++ mooring data in graphviz 
  • trunk/src/paper01/fig3/ws_validation_scatter_2000_2009_v50.pro

    r46 r47  
    6565; ==== 
    6666; 
    67 ; ++ plus de licences sur cratos 
     67; make it work on cratos : missing data 
    6868; 
    6969; ++ mooring data in graphviz 
  • trunk/src/paper01/fig4/fig4_met_var_correction_scatter.pro

    r46 r47  
    5050; ==== 
    5151; 
     52; check results 
     53; 
     54; improve plot 
     55; 
    5256; coding rules 
    5357; 
     
    6266; 
    6367; $Id$ 
     68; 
     69; - pinsard 2011-04-20T15:27:24Z loholt1.ipsl.polytechnique.fr (Linux) 
     70; 
     71;   * work on loholt1 
    6472; 
    6573; - fplod 20110420T085113Z aedon.locean-ipsl.upmc.fr (Darwin) 
  • trunk/src/paper01/fig5/fig5_gustiness_scatter.pro

    r46 r47  
    4646; ==== 
    4747; 
     48; check results 
     49; 
     50; improve plot 
     51; 
    4852; coding rules 
    4953; 
     
    5862; 
    5963; $Id$ 
     64; 
     65; - pinsard 2011-04-20T15:29:37Z loholt1.ipsl.polytechnique.fr (Linux) 
     66; 
     67;   * work on loholt1 
    6068; 
    6169; - fplod 20110420T090057Z aedon.locean-ipsl.upmc.fr (Darwin) 
  • trunk/src/paper01/fig6/icoads_q2m_stats_paper.pro

    r46 r47  
    5252; ==== 
    5353; 
    54 ; make it work (missing data) 
     54; make it work (missing data, box definition) 
    5555; 
    5656; coding rules 
  • trunk/src/paper01/fig6/icoads_sst_stats_paper.pro

    r46 r47  
    5353; ==== 
    5454; 
    55 ; make it work (missing data) 
     55; make it work (missing data, box definition) 
    5656; 
    5757; coding rules 
  • trunk/src/paper01/fig6/icoads_t2m_stats_paper.pro

    r46 r47  
    5353; ==== 
    5454; 
    55 ; make it work (missing data) 
     55; make it work (missing data, box definition) 
    5656; 
    5757; coding rules 
  • trunk/src/paper01/fig6/icoads_ws_stats_paper.pro

    r46 r47  
    5454; ==== 
    5555; 
    56 ; make it work (missing data) 
     56; make it work (missing data, box definition) 
    5757; 
    5858; coding rules 
Note: See TracChangeset for help on using the changeset viewer.