Changes between Initial Version and Version 1 of Ticket #45
- Timestamp:
- Feb 1, 2006, 9:36:37 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #45 – Description
initial v1 7 7 production/merimbula_2005/prepare.py: from pyvolution.data_manager import xya2pts 8 8 production/merimbula_2005/prepare.py: xya2pts(project.bathymetry_filename, verbose = True) 9 10 11 There 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 13 All interfaces that use points or mesh files should be able to deal with both formats. 14 15 This 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.