source: trunk/anuga_core/source/anuga/file_conversion/__init__.py @ 9551

Last change on this file since 9551 was 9551, checked in by steve, 9 years ago

Cleaning up the imports

File size: 518 bytes
Line 
1""" Modules for performing conversions between file types, or for
2    resampling a given file.
3   
4    In general, the naming convention follows this rule:
5        <file_ext_in>2<file_ext_out>('filename_in', 'filename_out')
6       
7    for example:
8        sww2dem('northbeach.sww', 'outfile.dem')
9       
10    Some formats input and output across multiple files. In that case the
11    convention is so:
12        urs2nc('northbeach', 'outfile')
13    Where an array of 3 input files produce 4 output files.
14"""
15
16pass
17
18
Note: See TracBrowser for help on using the repository browser.