ISCE_INSAR/contrib/UnwrapComp/__init__.py

14 lines
354 B
Python
Raw Normal View History

2019-01-16 19:40:08 +00:00
#!/usr/bin/env python3
def createUnwrapComp(name=''):
from .unwrapComponents import unwrapComponents
instance = unwrapComponents(name=name)
return instance
def getFactoriesInfo():
return {'UnwrapComp':
{
'factory':'createUnwrapComp'
}
}