24 lines
653 B
Python
24 lines
653 B
Python
# ADCPtool
|
|
#
|
|
__author__ = "Jakob Steidl, Clemens Dorfmann"
|
|
__copyright__ = "Copyright 2012, Graz University of Technology - Institute of Hydraulic Engineering and Water Resources Management"
|
|
__version__ = "1.0"
|
|
__maintainer__ = "Clemens Dorfmann"
|
|
|
|
|
|
import sys
|
|
# sometimes we did import the modules very sloppy, which
|
|
# is the reason for appending '..' to the PATH
|
|
sys.path.append('..')
|
|
|
|
from adcpexport import *
|
|
from adcpimport import *
|
|
from adcpprocess import *
|
|
from averaging import *
|
|
from data import *
|
|
from extrapolation import *
|
|
from interpolation import *
|
|
from logfit import *
|
|
from outliers import *
|
|
from quickviz import *
|
|
from vector import * |