15 lines
336 B
Python
Executable File
15 lines
336 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
#def SplitRangeSpectrum():
|
|
# from .splitSpectrum import PySplitRangeSpectrum
|
|
# return PySplitRangeSpectrum()
|
|
|
|
|
|
from .GeogridOptical import GeogridOptical
|
|
|
|
try:
|
|
from .Geogrid import Geogrid
|
|
except ImportError:
|
|
# this means ISCE support not available. Don't raise error. Allow standalone use
|
|
pass
|