Ignore:
Timestamp:
08/29/06 14:59:46 (18 years ago)
Author:
navarro
Message:

header improvements : type of parameters and keywords, default values, spell checking + idldoc assistant (IDL online_help)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Interpolation/get_gridparams.pro

    r157 r163  
    22; 
    33; @file_comments 
    4 ; 1) extract from a NetCDF file the longitude, latidude, and their dimensions 
     4; 1) extract from a NetCDF file the longitude, latitude, and their dimensions 
    55; and make sure it is 1D or 2D arrays 
    66; 
     
    2424; 1) 
    2525; @param in1 {in}{required} 
    26 ; the name of the netcdf file 
     26; Case 1: the name of the netcdf file 
     27; Case 2: 1d or 2D arrays defining longitudes and latitudes. 
     28; Out: the variable that will contain the longitudes 
    2729; 
    2830; @param in2 {in}{required} 
    29 ; the name of the variable that contains the longitude in the NetCDF file 
     31; Case 1: the name of the variable that contains the longitude in the NetCDF file 
     32; Case 2: 1d or 2D arrays defining longitudes and latitudes. 
     33;         Note that these arrays are also outputs and can therefore be modified. 
     34; Out: the variable that will contain the latitudes 
    3035; 
    3136; @param in3 {in}{required} 
    32 ; the name of the variable that contains the latitude in the NetCDF file 
     37; Case 1: the name of the variable that contains the latitude in the NetCDF file 
     38; Case 2: the number of points in the longitudinal direction. 
    3339; 
    3440; @param in4 {out} 
    35 ; the number of points in the longitudinal direction 
     41; Case 1: the number of points in the longitudinal direction 
     42; Case 2: the number of points in the latitudinal direction 
    3643; 
    3744; @param in5 {out} 
    38 ; the number of points in the latitudinal direction 
     45; Case 1: the number of points in the latitudinal direction 
     46; Case 2: 1 or 2 to specify if lon and lat should be 1D (jpi or jpj) 
     47; arrays or 2D arrays (jpi,jpj). Note that of  n_dimensions = 1, then the 
     48; grid must be regular (each longitudes must be the same for all latitudes 
     49; and each latitudes should be the same for all longitudes). 
    3950; 
    4051; @param in6 {out} 
     
    4657; @param in8 {out} 
    4758; 1 or 2 to specify if lon and lat should be 1D (jpi or jpj) 
    48 ; 
    49 ; or 
    50 ; 
    51 ; 2) 
    52 ; @param in1 {in}{required} 
    53 ; 1d or 2D arrays defining longitudes and latitudes. 
    54 ; 
    55 ; @param in2 {in}{required} 
    56 ; 1d or 2D arrays defining longitudes and latitudes. 
    57 ; Note that these arrays are also outputs and can therefore be modified. 
    58 ; 
    59 ; @param in1 {out} 
    60 ; the variable that will contain the longitudes 
    61 ; 
    62 ; @param in2 {out} 
    63 ; the variable that will contain the latitudes 
    64 ; 
    65 ; @param in3 {in} 
    66 ; the number of points in the longitudinal direction 
    67 ; 
    68 ; @param in4 {in} 
    69 ; the number of points in the latitudinal direction 
    70 ; 
    71 ; @param in5 {in} 
    72 ; 1 or 2 to specify if lon and lat should be 1D (jpi or jpj) 
    73 ; arrays or 2D arrays (jpi,jpj). Note that of  n_dimensions = 1, then the 
    74 ; grid must be regular (each longitudes must be the same for all latitudes 
    75 ; and each latitudes should be the sae for all longitudes). 
    7659; 
    7760; @keyword DOUBLE 
Note: See TracChangeset for help on using the changeset viewer.