Changes between Initial Version and Version 1 of Ticket #45


Ignore:
Timestamp:
Feb 1, 2006, 9:36:37 AM (19 years ago)
Author:
duncan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #45 – Description

    initial v1  
    77production/merimbula_2005/prepare.py:    from pyvolution.data_manager import xya2pts
    88production/merimbula_2005/prepare.py:    xya2pts(project.bathymetry_filename, verbose = True)
     9
     10
     11There are some file types that have the same information, but can be written in different formats.  This are points files that can be pts(binary) or xya(ascii) and mesh files, that can be msh(binary) or tsh(ascii).
     12
     13All interfaces that use points or mesh files should be able to deal with both formats.
     14
     15This makes an xya2pts function redundant in most cases.  Maybe it can be used for testing the points interface, to make sure that it can handle both binary or ASCII?  That functionality is tested in the ?import_points_file? function.