Ignore:
Timestamp:
Mar 10, 2011, 9:26:45 PM (14 years ago)
Author:
wilsonr
Message:

Removed '@brief' comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/file/netcdf.py

    r7859 r8145  
    2323precision = netcdf_float # So if we want to change the precision its done here
    2424
    25 ##
    26 # @brief Clas for a NetCDF data file writer.
    2725class Write_nc:
    2826    """Write an nc file.
     
    3230    """
    3331
    34     ##
    35     # @brief Instantiate a Write_nc instance.
    36     # @param quantity_name
    37     # @param file_name
    38     # @param time_step_count The number of time steps.
    39     # @param time_step The time_step size.
    40     # @param lon
    41     # @param lat
    4232    def __init__(self,
    4333                 quantity_name,
     
    9585        #outfile.close()
    9686
    97     ##
    98     # @brief Write a time-step of quantity data.
    99     # @param quantity_slice The data to be stored for this time-step.
    10087    def store_timestep(self, quantity_slice):
    10188        """Write a time slice of quantity info
     
    121108
    122109
    123 ##
    124 # @brief Write an NC elevation file.
    125 # @param file_out Path to the output file.
    126 # @param lon ??
    127 # @param lat ??
    128 # @param depth_vector The elevation data to write.
    129110def write_elevation_nc(file_out, lon, lat, depth_vector):
    130111    """Write an nc elevation file."""
     
    150131    outfile.close()
    151132
    152 
    153 ##
    154 # @brief Write lat/lon headers to a NetCDF file.
    155 # @param outfile Handle to open file to write to.
    156 # @param lon An iterable of the longitudes.
    157 # @param lat An iterable of the latitudes.
    158 # @note Defines lat/long dimensions and variables. Sets various attributes:
    159 #          .point_spacing  and  .units
    160 #       and writes lat/lon data.
    161133
    162134def nc_lon_lat_header(outfile, lon, lat):
     
    188160
    189161
    190 ##
    191 # @brief Filter data file, selecting timesteps first:step:last.
    192 # @param filename1 Data file to filter.
    193 # @param filename2 File to write filtered timesteps to.
    194 # @param first First timestep.
    195 # @param last Last timestep.
    196 # @param step Timestep stride.
    197162def filter_netcdf(filename1, filename2, first=0, last=None, step=1):
    198163    """Filter data file, selecting timesteps first:step:last.
Note: See TracChangeset for help on using the changeset viewer.