Ignore:
Timestamp:
Mar 11, 2011, 7:23:24 PM (14 years ago)
Author:
wilsonr
Message:

Removed '@brief' comments.

Location:
trunk/anuga_core/source/anuga/file_conversion
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/file_conversion/asc2dem.py

    r7814 r8150  
    5555
    5656
    57 ##
    58 # @brief Convert an ASC file to a DEM file.
    59 # @param basename_in Stem of input filename.
    60 # @param basename_out Stem of output filename.
    61 # @param verbose True if this function is to be verbose.
    6257def _convert_dem_from_ascii2netcdf(name_in, name_out = None,
    6358                                   verbose = False):
  • trunk/anuga_core/source/anuga/file_conversion/dem2pts.py

    r7841 r8150  
    5353
    5454
    55 ##
    56 # @brief
    57 # @param basename_in
    58 # @param basename_out
    59 # @param verbose
    60 # @param easting_min
    61 # @param easting_max
    62 # @param northing_min
    63 # @param northing_max
    6455def _dem2pts(name_in, name_out=None, verbose=False,
    6556            easting_min=None, easting_max=None,
  • trunk/anuga_core/source/anuga/file_conversion/file_conversion.py

    r7866 r8150  
    8686        write_obj(FN, xx, yy, zz)
    8787
    88 ##
    89 # @brief Convert time-series text file to TMS file.
    90 # @param filename
    91 # @param quantity_names
    92 # @param time_as_seconds
    9388def timefile2netcdf(file_text, file_out = None, quantity_names=None, \
    9489                                time_as_seconds=False):
     
    224219   
    225220
    226 ##
    227 # @brief
    228 # @param filename
    229 # @param verbose
    230221def tsh2sww(filename, verbose=False):
    231222    """
     
    266257
    267258
    268 ##
    269 # @brief Return max&min indexes (for slicing) of area specified.
    270 # @param latitudes_ref ??
    271 # @param longitudes_ref ??
    272 # @param minlat Minimum latitude of specified area.
    273 # @param maxlat Maximum latitude of specified area.
    274 # @param minlon Minimum longitude of specified area.
    275 # @param maxlon Maximum longitude of specified area.
    276 # @return Tuple (lat_min_index, lat_max_index, lon_min_index, lon_max_index)
    277259def get_min_max_indices(latitudes_ref, longitudes_ref,
    278260                         minlat=None, maxlat=None,
     
    350332
    351333
    352 ##
    353 # @brief
    354 # @param filename
    355 # @param x
    356 # @param y
    357 # @param z
    358334def write_obj(filename, x, y, z):
    359335    """Store x,y,z vectors into filename (obj format).
  • trunk/anuga_core/source/anuga/file_conversion/sdf2pts.py

    r7814 r8150  
    33from anuga.geospatial_data.geospatial_data import Geospatial_data
    44
    5 ##
    6 # @brief  Return block of surface lines for each cross section
    7 # @param lines Iterble  of text lines to process.
    8 # @note BROKEN?  UNUSED?
    95def _read_hecras_cross_sections(lines):
    106    """Return block of surface lines for each cross section
     
    4339    """Read HEC-RAS Elevation datal from the following ASCII format (.sdf)
    4440
    45 # @brief Convert HECRAS (.sdf) file to PTS file.
    46 # @param basename_in Sterm of input filename.
    47 # @param basename_out Sterm of output filename.
    48 # @param verbose True if this function is to be verbose.
     41    basename_in Sterm of input filename.
     42    basename_out Sterm of output filename.
     43    verbose True if this function is to be verbose.
    4944
    5045    Example:
  • trunk/anuga_core/source/anuga/file_conversion/urs2nc.py

    r7800 r8150  
    6464
    6565
    66 ##
    67 # @brief Convert a quantity URS file to a NetCDF file.
    68 # @param file_in Path to input URS file.
    69 # @param file_out Path to the output file.
    70 # @param quantity Name of the quantity to be written to the output file.
    71 # @return A tuple (lonlatdep, lon, lat, depth).
    7266def _binary_c2nc(file_in, file_out, quantity):
    7367    """Reads in a quantity urs file and writes a quantity nc file.
     
    140134
    141135
    142 ##
    143 # @brief
    144 # @param long_lat_dep
    145 # @return A tuple (long, lat, quantity).
    146 # @note The latitude is the fastest varying dimension - in mux files.
    147136def lon_lat2grid(long_lat_dep):
    148137    """
Note: See TracChangeset for help on using the changeset viewer.