New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 3002 for branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS – NEMO

Ignore:
Timestamp:
2011-10-26T19:26:37+02:00 (13 years ago)
Author:
djlea
Message:

Update documentation for obstools and dataplot. Removal of dataplot code not needed. Addition of headers to some dataplot code. Addition of .exe to command example in obstools.

Location:
branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS
Files:
16 deleted
18 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/colorbar_idl.pro

    r2945 r3002  
    22PRO colorbar_idl, datain, colors, lablevels, datalevels, data=data, $ 
    33   textcolor=textcolor, mincolor=mincolor, position=position 
    4  
     4;-------------------------------------------------------------------- 
    55; datain - gives the range of values which are represented by colors 
    66; colors - color values 
    77; lablevels - label levels 
    8 ; D. J. Lea Nov 2008 
    9 ;- 
    10  
    11 ; remember graphics keywords 
     8; 
     9; Author:  D. J. Lea    Nov 2008 
     10;-------------------------------------------------------------------- 
     11 
     12; keep current graphics keywords 
    1213 
    1314psave=!p 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/dataplot.pro

    r2945 r3002  
    33; IDL widget based plotting routine for plotting observation and background values 
    44; 
    5 ; D. J. Lea     -  Feb 2008 
     5; Author: D. J. Lea     -  Feb 2008 
    66; 
    77;+---------------------------------------------------------------------------------------- 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/dataplot_txttimeseries.pro

    r2945 r3002  
    1 ; plot mean and rms 
    2  
    31pro plotts1, arrsv, title, typestr, minperc=minperc, $ 
    42   juldatemin=juldatemin, juldatemax=juldatemax, $ 
    53        emax=emax, emin=emin 
    6  
    7  
     4;+-------------------------------------------------------- 
     5; plot mean and rms timeseries 
     6; 
     7; Author:  D. J. Lea      Feb 2008 
     8;+-------------------------------------------------------- 
    89 
    910;date_label = LABEL_DATE(DATE_FORMAT = $  
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/nice_contourlevels.pro

    r2945 r3002  
    11function nice_contourlevels, data, nlevels=nlevels 
     2;+---------------------------------------------------------------------------------------- 
     3; nice_contourlevels.pro 
     4; 
     5; Select nice contour levels based on the data input and the number of levels 
     6; 
     7; Author:  D. J. Lea     -  Feb 2008 
     8; 
     9;+---------------------------------------------------------------------------------------- 
    210 
    311if (n_elements(nlevels) eq 0) then nlevels=15 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/pr2.pro

    r2945 r3002  
    2424         file=file,$ 
    2525         destination=destination 
    26 ;+ 
     26;+---------------------------------------------------------- 
    2727; NAME:pr2 
    2828; like pr, but uses nice fonts 
     29; 
     30; Author:  D. J. Lea        Feb 2008 
     31;+---------------------------------------------------------- 
    2932 
    3033COMMON pr2, view_landscape 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/prend2.pro

    r2945 r3002  
    1   PRO PREND2,in_printer,keep=keep,noprint=noprint,double=double,$ 
     1PRO PREND2,in_printer,keep=keep,noprint=noprint,double=double,$ 
    22    view=view,spin_landscape_ps=spin_landscape_ps,$ 
    33    eps_preview=eps_preview,colour_preview=colour_preview,$ 
     
    55;+ 
    66; NAME:prend 
     7;  
     8; Author:  D. J. Lea       Feb 2008 
    79 
    810COMMON pr2, view_landscape 
    911 
    10   if keyword_set(view) then begin 
    11    
     12device,/close           
     13set_plot,'x' 
     14 
     15if keyword_set(view) then begin 
     16 
    1217; get filename of postscript device   
    13    
    14       r = fstat(!D.UNIT) 
    15            filename = r.name 
    16    
    17           if (view_landscape) then begin 
    18         spawn,'gv -landscape -swap '+filename 
    19      endif else begin 
    20              spawn,'gv '+filename  
    21      endelse 
    2218 
    23   endif 
     19   r = fstat(!D.UNIT) 
     20   filename = r.name 
    2421 
    25   set_plot,'x' 
     22   if (view_landscape) then begin 
     23      spawn,'gv -landscape -swap '+filename 
     24   endif else begin 
     25      spawn,'gv '+filename  
     26   endelse 
    2627 
     28endif 
    2729 
    2830!p.font=-1 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/read_cdfobs.pro

    r2945 r3002  
    1010               ProfileNum=ProfileNum, error=error, $ 
    1111               notfussy=notfussy,VarName=VarName   
    12 ;- 
     12;+-------------------------------------------------------------------------- 
     13; Read in observation and feedback files 
     14; detects filetype and calls the appropriate reading routine 
     15; 
     16; Author:  D. J. Lea       Feb 2008 
     17;+-------------------------------------------------------------------------- 
     18 
    1319; Declare error label.  
    1420ON_IOERROR, IOERROR  
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/read_seaice.pro

    r2945 r3002  
    55               nodates=nodates, quiet=quiet 
    66;------------------------------------------------------------ 
    7 ;PVWave program to read in netcdf files of altimeter data. 
     7;IDL program to read in netcdf files of sea ice data. 
     8; 
     9;Author:   D. J. Lea       Feb 2008 
    810; 
    911;------------------------------------------------------------ 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/read_sla.pro

    r2945 r3002  
    77;+----------------------------------------------------------- 
    88;IDL program to read in netcdf files of altimeter data. 
     9; 
     10;Author:  D. J. Lea       - Feb 2008 
    911; 
    1012;------------------------------------------------------------ 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/read_sst.pro

    r2945 r3002  
    55               quiet=quiet 
    66;------------------------------------------------------------ 
    7 ;PVWave program to read in netcdf files of altimeter data. 
     7;IDL program to read in netcdf files of altimeter data. 
     8; 
     9;Author:  D. J. Lea        - Feb 2008 
    810; 
    911;------------------------------------------------------------ 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/dataplot/sec_to_dt.pro

    r2945 r3002  
    7777;    print, 'n_elements(days) ', n_elements(days) 
    7878 
    79     ; get the julian and hen add the days, then back to julian 
     79    ; get the julian and then add the days, then back to julian 
    8080 
    8181;    FOR i=0L, N_ELEMENTS(days)-1 DO BEGIN 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/fbmatchup.F90

    r3000 r3002  
    1111   !!  
    1212   !!   Usage: 
    13    !!     fbmatchup outputfile inputfile1 varname1 inputfile2 varname2 ... 
     13   !!     fbmatchup.exe outputfile inputfile1 varname1 inputfile2 varname2 ... 
    1414   !! 
    1515   !!   Optional:  
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/fbprint.F90

    r3000 r3002  
    1111   !! 
    1212   !!   Usage : 
    13    !!     fbprint [options] inputfile 
     13   !!     fbprint.exe [options] inputfile 
    1414   !!   Options : 
    1515   !!     -b            shorter output 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/fbsel.F90

    r3000 r3002  
    1111   !! 
    1212   !!   Usage: 
    13    !!     fbsel <input filename> <output filename> 
     13   !!     fbsel.exe <input filename> <output filename> 
    1414   !! 
    1515   !!   History : 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/fbstat.F90

    r3000 r3002  
    1212   !! 
    1313   !!   Usage: 
    14    !!     fbstat [-nmlev] <filenames> 
     14   !!     fbstat.exe [-nmlev] <filenames> 
    1515   !!   Optional: 
    1616   !!     namelist = namfbstat.in 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/fbthin.F90

    r3000 r3002  
    1111   !! 
    1212   !!   Usage: 
    13    !!     fbthin inputfile outputfile 
     13   !!     fbthin.exe inputfile outputfile 
    1414   !! 
    1515   !!   Required: 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/sla2fb.F90

    r3000 r3002  
    1111   !! 
    1212   !!   Usage: 
    13    !!     sla2fb [-s type] outputfile inputfile1 inputfile2 ... 
     13   !!     sla2fb.exe [-s type] outputfile inputfile1 inputfile2 ... 
    1414   !!   Option: 
    1515   !!     -s            Select altimeter data_source 
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/vel2fb.F90

    r3000 r3002  
    1111   !! 
    1212   !!   Usage: 
    13    !!     vel2fb outputfile inputfile1 inputfile2 ... 
     13   !!     vel2fb.exe outputfile inputfile1 inputfile2 ... 
    1414   !!  
    1515   !!   History : 
Note: See TracChangeset for help on using the changeset viewer.