forked from insarlab/PyAPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
22 lines (16 loc) · 901 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'''
PyAPS module to compute InSAR phase delay maps from weather models.
Written by Romain Jolivet <rjolivet@gps.caltech.edu> and Piyush Agram <piyush@gps.caltech.edu>. The original Fortran package was written by Romain Jolivet and the Python version including support for different models was written by Piyush Agram.
.. note::
Details of the python module can be obtained `here. <http://code.google.com/p/pyaps>`_
'''
__all__ = ['geocoord','rdrcoord','autoget','objects']
#from .geocoord import PyAPS_geo
#from .rdrcoord import PyAPS_rdr
from .objects import PyAPS
from .autoget import *
############################################################
# Program is part of PyAPS #
# Copyright 2012, by the California Institute of Technology#
# Contact: earthdef@gps.caltech.edu #
############################################################