Changeset 327 for trunk/SRC/Calendar


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/Calendar
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Calendar/caldat.pro

    r325 r327  
    1010; Calendar 
    1111; 
    12 ; @param JULIAN {in}{required} {type=long integer or double-precision floating-point} 
     12; @param julian {in}{required} {type=long integer or double-precision floating-point} 
    1313; contains the Julian Day Number (which begins at noon) of the 
    1414; specified calendar date. 
    1515; 
    16 ; @param MONTH {out} {type=longword integer} 
     16; @param month {out} {type=longword integer} 
    1717; Number of the desired month (1 = January, ..., 12 = December). 
    1818; 
    19 ; @param DAY {out} {type=longword integer} 
     19; @param day {out} {type=longword integer} 
    2020; Number of day of the month. 
    2121; 
    22 ; @param YEAR {out} {type=longword integer} 
     22; @param year {out} {type=longword integer} 
    2323; Number of the desired year. 
    2424; 
    25 ; @param HOUR {out} {type=longword integer} 
     25; @param hour {out} {type=longword integer} 
    2626; Hour of the day 
    2727; 
    28 ; @param MINUTE {out} {type=longword integer} 
     28; @param minute {out} {type=longword integer} 
    2929; Minute of the day 
    3030; 
    31 ; @param SECOND {out} {type=double-precision floating-point} 
     31; @param second {out} {type=double-precision floating-point} 
    3232; Second (and fractions) of the day. 
    3333; 
     
    6464; 
    6565;- 
    66 PRO caldat, julian, month, day, year, hour, minute, second, NDAYSPM = ndayspm 
     66PRO caldat, julian, month, day, year, hour, minute, second, NDAYSPM=ndayspm 
    6767; 
    6868  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/date2jul.pro

    r325 r327  
    7373; 
    7474;- 
    75 function date2jul, date, GRADS = grads, MONTH = month, DAY = day, YEAR = year $ 
    76                    , HOUR = hour, MINUTE = minute, SECOND = second 
     75FUNCTION date2jul, date, GRADS=grads, MONTH=month, DAY=day, YEAR=year $ 
     76                 , HOUR=hour, MINUTE=minute, SECOND=second 
    7777; 
    7878  compile_opt idl2, strictarrsubs 
    7979; 
    80   usage="res=date2jul, date, GRADS = grads, MONTH = month, DAY = day, YEAR = year , HOUR = hour, MINUTE = minute, SECOND = second" 
     80  usage="res=date2jul, date, GRADS=grads, MONTH=month, DAY=day, YEAR=year , HOUR=hour, MINUTE=minute, SECOND=second" 
    8181; 
    8282; check parameters 
  • trunk/SRC/Calendar/date2string.pro

    r325 r327  
    3333; 
    3434;- 
    35 FUNCTION date2string, yyyymmdd, _EXTRA = ex 
     35FUNCTION date2string, yyyymmdd, _EXTRA=ex 
    3636; 
    3737  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/jul2date.pro

    r325 r327  
    6969; 
    7070;- 
    71 function jul2date, jday, MONTH = month, DAY = day, YEAR = year $ 
    72                    , HOUR = hour, MINUTE = minute, SECOND = second 
     71function jul2date, jday, MONTH=month, DAY=day, YEAR=year $ 
     72                 , HOUR=hour, MINUTE=minute, SECOND=second 
    7373; 
    7474  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/julday.pro

    r325 r327  
    1010; Calendar 
    1111; 
    12 ; @param MONTH {in}{optional} {type=scalar (integer or double) or array of scalars} 
     12; @param month {in}{optional} {type=scalar (integer or double) or array of scalars} 
    1313; Number of the desired month (1 = January, ..., 12 = December). 
    1414; 
    15 ; @param DAY {in}{optional} {type=scalar (integer or double) or array of scalars} 
     15; @param day {in}{optional} {type=scalar (integer or double) or array of scalars} 
    1616; Number of day of the month. 
    1717; 
    18 ; @param YEARin {in}{optional} {type=scalar (integer or double) or array of scalars} 
     18; @param yearin {in}{optional} {type=scalar (integer or double) or array of scalars} 
    1919; Number of the desired year.Year parameters must be valid 
    2020; values from the civil calendar.  Years B.C.E. are represented 
     
    2727; <pro>caldat</pro> so caldat, julday(1,1,0) gives you back Jan 1st of year 0) 
    2828; 
    29 ; @param HOUR {in}{optional} {type=scalar (integer or double) or array of scalars} {default=12} 
     29; @param hour {in}{optional} {type=scalar (integer or double) or array of scalars} {default=12} 
    3030; Number of the hour of the day. 
    3131; 
    32 ; @param MINUTE {in}{optional} {type=scalar (integer or double) or array of scalars} {default=0} 
     32; @param minute {in}{optional} {type=scalar (integer or double) or array of scalars} {default=0} 
    3333; Number of the minute of the hour. 
    3434; 
    35 ; @param SECOND {in}{optional} {type=scalar (integer or double) or array of scalars} {default=0} 
     35; @param second {in}{optional} {type=scalar (integer or double) or array of scalars} {default=0} 
    3636; Number of the second of the minute. 
    3737; 
     
    8181; $Id$ 
    8282;- 
    83 FUNCTION julday, month, day, yearin, hour, minute, second, NDAYSPM = ndayspm 
     83FUNCTION julday, month, day, yearin, hour, minute, second, NDAYSPM=ndayspm 
    8484; 
    8585  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/leapyr.pro

    r325 r327  
    4343; 
    4444;- 
    45 function leapyr, year 
     45FUNCTION leapyr, year 
    4646; 
    4747  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/monthname.pro

    r325 r327  
    3232; 
    3333;- 
    34 FUNCTION monthname, month, _EXTRA = ex 
     34FUNCTION monthname, month, _EXTRA=ex 
    3535; 
    3636  compile_opt idl2, strictarrsubs 
Note: See TracChangeset for help on using the changeset viewer.