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

Removed '@brief' comments.

File:
1 edited

Legend:

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

    r7859 r8143  
    1717    EXTREMA = ':extrema'
    1818
    19     ##
    20     # @brief Instantiate this STS writer class.
    2119    def __init__(self):
    2220        pass
    2321
    24     ##
    25     # @brief Write a header to the underlying data file.
    26     # @param outfile Handle to open file to write.
    27     # @param times A list of the time slice times *or* a start time.
    28     # @param number_of_points The number of URS gauge sites.
    29     # @param description Description string to write into the STS file.
    30     # @param sts_precision Format of data to write (netcdf constant ONLY).
    31     # @param verbose True if this function is to be verbose.
    32     # @note If 'times' is a list, the info will be made relative.
    3322    def store_header(self,
    3423                     outfile,
     
    3827                     sts_precision=netcdf_float32,
    3928                     verbose=False):
    40         """
    41         outfile - the name of the file that will be written
    42         times - A list of the time slice times OR a start time
    43         Note, if a list is given the info will be made relative.
    44         number_of_points - the number of urs gauges sites
     29        """Write a header to the underlying data file.
     30
     31        outfile          handle to open file to write
     32        times            list of the time slice times *or* a start time
     33        number_of_points the number of URS gauge sites
     34        description      description string to write into the STS file
     35        sts_precision    format of data to write (netcdf constant ONLY)
     36        verbose          True if this function is to be verbose
     37
     38        If 'times' is a list, the info will be made relative.
    4539        """
    4640
     
    9690        self.write_dynamic_quantities(outfile, Write_sts.sts_quantities, times)
    9791
    98     ##
    99     # @brief
    100     # @param outfile
    101     # @param points_utm
    102     # @param elevation
    103     # @param zone
    104     # @param new_origin
    105     # @param points_georeference
    106     # @param verbose True if this function is to be verbose.
    10792    def store_points(self,
    10893                     outfile,
     
    188173        outfile.variables[q + Write_sts.RANGE][1] = max(elevation)
    189174
    190     ##
    191     # @brief Store quantity data in the underlying file.
    192     # @param outfile
    193     # @param sts_precision
    194     # @param slice_index
    195     # @param time
    196     # @param verboseTrue if this function is to be verbose.
    197     # @param **quant Extra keyword args.
    198175    def store_quantities(self, outfile, sts_precision=num.float32,
    199176                         slice_index=None, time=None,
     
    275252
    276253
    277 ##
    278 # @brief Create a list of points defining a boundary from an STS file.
    279 # @param stsname Stem of path to the STS file to read.
    280 # @return A list of boundary points.
    281254def create_sts_boundary(sts_filename):
    282255    """Create a list of points defining a boundary from an STS file.
Note: See TracChangeset for help on using the changeset viewer.