Changeset 327 for trunk/SRC/Grid


Ignore:
Timestamp:
12/13/07 17:22:35 (17 years ago)
Author:
pinsard
Message:

modification of headers : mainly blanks around = sign for keywords in declaration of function and pro

Location:
trunk/SRC/Grid
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Grid/changemsk.pro

    r325 r327  
    3030; 
    3131;- 
    32 FUNCTION changemsk,tab, CELLSIZE = cellsize 
     32FUNCTION changemsk,tab, CELLSIZE=cellsize 
    3333; 
    3434  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/computegrid.pro

    r325 r327  
    9393;             the labels 'longitude', 'latitude' in plots). 
    9494;       The resulting value will be stored in the common (cm_4mesh) variable key_onearth 
    95 ;       ONEARTH = 0 forces PERIODIC = 0, SHIFT = 0 and is cancelling GLAMBOUNDARY 
     95;       ONEARTH=0 forces PERIODIC=0, SHIFT=0 and is cancelling GLAMBOUNDARY 
    9696; 
    9797; @keyword PERIODIC {default=computed by using the first line of glamt}{type=scalar: 0 or 1} 
    9898;       Force the manual definition of the grid zonal periodicity. 
    9999;       The resulting value will be stored in the common (cm_4mesh) variable key_periodic 
    100 ;       PERIODIC = 0 forces SHIFT = 0 
     100;       PERIODIC=0 forces SHIFT=0 
    101101; 
    102102; @keyword PLAIN {default=0}{type=scalar: 0 or 1} 
    103 ;       Force YREVERSE = 0, ZREVERSE = 0, PERIODIC = 0, SHIFT = 0, STRIDE = [1, 1, 1] and 
     103;       Force YREVERSE=0, ZREVERSE=0, PERIODIC=0, SHIFT=0, STRIDE=[1, 1, 1] and 
    104104;       suppress the automatic redefinition of the domain in case of x periodicity overlap, 
    105105;       y periodicity overlap (ORCA type only) and mask border to 0. 
     
    108108;       Force the manual definition of the zonal shift that must be apply to the data. 
    109109;       The resulting value will be stored in the common (cm_4mesh) variable key_shift 
    110 ;       Note that if key_periodic=0 then in any case key_shift = 0. 
     110;       Note that if key_periodic=0 then in any case key_shift=0. 
    111111; 
    112112; @keyword STRCALLING {type=string} 
     
    249249;- 
    250250PRO computegrid, startx, starty, stepxin, stepyin, nxin, nyin $ 
    251                  , XAXIS = xaxis, YAXIS = yaxis, ZAXIS = zaxis $ 
    252                  , MASK = mask, GLAMBOUNDARY = glamboundary $ 
    253                  , XMINMESH = xminmesh, XMAXMESH = xmaxmesh $ 
    254                  , YMINMESH = yminmesh, YMAXMESH = ymaxmesh $ 
    255                  , ZMINMESH = zminmesh, ZMAXMESH = zmaxmesh $ 
    256                  , ONEARTH = onearth, PERIODIC = periodic $ 
    257                  , PLAIN = plain, SHIFT = shift, STRIDE = stride $ 
    258                  , YREVERSE = yreverse, ZREVERSE = zreverse  $ 
    259                  , FULLCGRID = fullcgrid, XYINDEX = xyindex $ 
    260                  , UBASE2TBASE = ubase2tbase, VBASE2TBASE = vbase2tbase $ 
    261                  , FBASE2TBASE = fbase2tbase $ 
    262                  , STRCALLING = strcalling, ROMSH = romsh, _EXTRA = ex 
     251                 , XAXIS=xaxis, YAXIS=yaxis, ZAXIS=zaxis $ 
     252                 , MASK=mask, GLAMBOUNDARY=glamboundary $ 
     253                 , XMINMESH=xminmesh, XMAXMESH=xmaxmesh $ 
     254                 , YMINMESH=yminmesh, YMAXMESH=ymaxmesh $ 
     255                 , ZMINMESH=zminmesh, ZMAXMESH=zmaxmesh $ 
     256                 , ONEARTH=onearth, PERIODIC=periodic $ 
     257                 , PLAIN=plain, SHIFT=shift, STRIDE=stride $ 
     258                 , YREVERSE=yreverse, ZREVERSE=zreverse  $ 
     259                 , FULLCGRID=fullcgrid, XYINDEX=xyindex $ 
     260                 , UBASE2TBASE=ubase2tbase, VBASE2TBASE=vbase2tbase $ 
     261                 , FBASE2TBASE=fbase2tbase $ 
     262                 , STRCALLING=strcalling, ROMSH=romsh, _EXTRA=ex 
    263263; 
    264264  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/micromeshmask.pro

    r325 r327  
    5656; 
    5757;- 
    58 PRO micromeshmask, ncfilein, ncfileout, IODIR = iodir 
     58PRO micromeshmask, ncfilein, ncfileout, IODIR=iodir 
    5959; 
    6060  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/ncdf_meshread.pro

    r325 r327  
    3131;          the labels 'longitude', 'latitude' in plots). 
    3232;    The resulting value will be stored in the common (cm_4mesh) variable key_onearth 
    33 ;    ONEARTH = 0 forces PERIODIC = 0, SHIFT = 0 and is cancelling GLAMBOUNDARY 
     33;    ONEARTH=0 forces PERIODIC=0, SHIFT=0 and is cancelling GLAMBOUNDARY 
    3434; 
    3535; @keyword GETDIMENSIONS {default=0}{type=scalar: 0 or 1} 
     
    4141;    Force the manual definition of the grid zonal periodicity. 
    4242;    The resulting value will be stored in the common (cm_4mesh) variable key_periodic 
    43 ;    PERIODIC = 0 forces SHIFT = 0 
     43;    PERIODIC=0 forces SHIFT=0 
    4444; 
    4545; @keyword SHIFT {default=computed according to glamboundary}{type=scalar} 
     
    8181; 
    8282;- 
    83 PRO ncdf_meshread, filename, GLAMBOUNDARY = glamboundary, CHECKDAT = checkdat $ 
    84                   , ONEARTH = onearth, GETDIMENSIONS = getdimensions $ 
    85                   , PERIODIC = periodic, SHIFT = shift, STRIDE = stride $ 
    86                   , STRCALLING = strcalling, _EXTRA = ex 
     83PRO ncdf_meshread, filename, GLAMBOUNDARY=glamboundary, CHECKDAT=checkdat $ 
     84                  , ONEARTH=onearth, GETDIMENSIONS=getdimensions $ 
     85                  , PERIODIC=periodic, SHIFT=shift, STRIDE=stride $ 
     86                  , STRCALLING=strcalling, _EXTRA=ex 
    8787; 
    8888  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/ncdf_meshroms.pro

    r325 r327  
    2828;          the labels 'longitude', 'latitude' in plots). 
    2929;    The resulting value will be stored in the common (cm_4mesh) variable key_onearth 
    30 ;    ONEARTH = 0 forces PERIODIC = 0, SHIFT = 0 and is cancelling GLAMBOUNDARY 
     30;    ONEARTH=0 forces PERIODIC=0, SHIFT=0 and is cancelling GLAMBOUNDARY 
    3131; 
    3232; @keyword GETDIMENSIONS {default=0}{type=scalar: 0 or 1} 
     
    3838;    Force the manual definition of the grid zonal periodicity. 
    3939;    The resulting value will be stored in the common (cm_4mesh) variable key_periodic 
    40 ;    PERIODIC = 0 forces SHIFT = 0 
     40;    PERIODIC=0 forces SHIFT=0 
    4141; 
    4242; @keyword NRHO {default=1}{type=scalar} 
     
    4747;    Force the manual definition of the zonal shift that must be apply to the data. 
    4848;    The resulting value will be stored in the common (cm_4mesh) variable key_shift 
    49 ;    Note that if key_periodic=0 then in any case key_shift = 0. 
     49;    Note that if key_periodic=0 then in any case key_shift=0. 
    5050; 
    5151; @keyword STRCALLING {type=scalar string} 
     
    8787; 
    8888;- 
    89 PRO ncdf_meshroms, filename, NRHO = nrho, GLAMBOUNDARY = glamboundary $ 
    90                   , ONEARTH = onearth, GETDIMENSIONS = getdimensions $ 
    91                   , PERIODIC = periodic, SHIFT = shift, STRIDE = stride $ 
    92                   , STRCALLING = strcalling, _EXTRA = ex 
     89PRO ncdf_meshroms, filename, NRHO=nrho, GLAMBOUNDARY=glamboundary $ 
     90                  , ONEARTH=onearth, GETDIMENSIONS=getdimensions $ 
     91                  , PERIODIC=periodic, SHIFT=shift, STRIDE=stride $ 
     92                  , STRCALLING=strcalling, _EXTRA=ex 
    9393; 
    9494  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/smallmeshmask.pro

    r325 r327  
    6565; 
    6666;- 
    67 PRO smallmeshmask, ncfilein, ncfileout, IODIR = iodir 
     67PRO smallmeshmask, ncfilein, ncfileout, IODIR=iodir 
    6868; 
    6969  compile_opt idl2, strictarrsubs 
Note: See TracChangeset for help on using the changeset viewer.