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

Last change on this file since 7761 was 7758, checked in by hudson, 14 years ago

Added extra file conversion classes to file_conversion.

File size: 631 bytes
Line 
1"""Make directory available as a Python package
2"""
3
4# Add path of package to PYTHONPATH to allow C-extensions to be loaded
5import sys
6sys.path += __path__
7
8
9# commonly used imports
10from anuga.file_conversion.file_conversion import sww2obj, dat2obj, \
11                    timefile2netcdf, tsh2sww, urs2sww, urs2nc
12                   
13from anuga.file_conversion.dem2pts import dem2pts                   
14from anuga.file_conversion.esri2sww import esri2sww   
15from anuga.file_conversion.sww2dem import sww2dem     
16from anuga.file_conversion.asc2dem import asc2dem     
17from anuga.file_conversion.ferret2sww import ferret2sww     
Note: See TracBrowser for help on using the repository browser.