コード例 #1
0
    def spool(self):
        """ Start the spool user interface :class:`~kite.spool.Spool` to inspect
        the scene.
        """
        if self.displacement is None:
            raise SceneError('Can not display an empty scene.')

        from kite.spool import spool
        spool(scene=self)
コード例 #2
0
def main(args=None):
    '''
    Spool app deployed through setuptools
    '''
    if args is None:
        args = sys.argv[1:]

    epilog = '''Spool is part of the kite InSAR framework.

Author: Marius Paul Isken ([email protected])
Documentation: https://pyrocko.org'''
    desc = 'InSAR deformation inspector, quadtree and covariance'

    parser = ap.ArgumentParser(prog='spool',
                               epilog=epilog,
                               description=desc,
                               parents=[],
                               formatter_class=ap.RawTextHelpFormatter,
                               prefix_chars='-',
                               fromfile_prefix_chars=None,
                               argument_default=ap.SUPPRESS,
                               conflict_handler='resolve',
                               add_help=True)
    parser.add_argument('file',
                        type=str,
                        help='Load native kite container (.npz & .yml)',
                        default=None,
                        nargs='?')
    parser.add_argument('--load',
                        metavar='file',
                        type=str,
                        default=None,
                        help='''Import file or directory
Supported formats are:
 - Matlab   *.mat
 - GAMMA    * binary and *.par file
 - GMTSAR   *.grd binary and *.los.* file
 - ISCE     *.unw.geo with *.unw.geo.xml and; *.rdr.geo for LOS data
 - ROI_PAC  * binary and *.rsc file
 - SARSCAPE *los_ll.grd and *.los.enu file
 - SNAP     *.rsc and *.Abstracted_Metadata.txt file (GAMMA Export)
 - ARIA     Extracted layers: unwrappedPhase, lookAngle, incidenceAngle,
             connectedComponents
 - LiCSAR   *.unw.tif and LOS data, see client.download_licsar

 For more informatio see the online documentation at https://pyrocko.org''')
    parser.add_argument('--synthetic',
                        type=str,
                        default=None,
                        choices=['fractal', 'sine', 'gauss'],
                        help='''Synthetic Tests
Available Synthetic Displacement:
 * fractal (Atmospheric model; after Hanssen, 2001)
 * sine
 * gauss
''')

    parser.add_argument('--verbose',
                        '-v',
                        action='count',
                        default=1,
                        help='Verbosity, add mutliple to increase verbosity.')

    ns = parser.parse_args(args)

    log_level = logging.WARNING - ns.verbose * 10
    log_level = log_level if log_level > logging.DEBUG else logging.DEBUG
    logging.basicConfig(level=log_level if log_level > 0 else 0)

    if ns.load is None and ns.synthetic is None and ns.file is None:
        parser.print_help()
        sys.exit(0)

    sc = None
    if ns.synthetic is not None:
        if ns.synthetic == 'fractal':
            sc = TestScene.createFractal()
        elif ns.synthetic == 'sine':
            sc = TestScene.createSine()
        elif ns.synthetic == 'gauss':
            sc = TestScene.createFractal()
        else:
            parser.print_help()
            sys.exit(0)

    elif ns.file is not None:
        sc = Scene.load(ns.file)

    if sc:
        spool(scene=sc)
    elif ns.load is not None:
        spool(import_file=ns.load)
コード例 #3
0
ファイル: __main__.py プロジェクト: sheecegardezi/kite
def main(args=None):
    '''
    Spool app deployed through setuptools
    '''
    if args is None:
        args = sys.argv[1:]

    epilog = '''Spool is part of the kite InSAR framework.

Author: Marius Isken ([email protected])
Documentation: https://pyrocko.org'''
    desc = 'InSAR deformation inspector, quadtree and covariance'

    parser = ap.ArgumentParser(prog='spool',
                               epilog=epilog,
                               description=desc,
                               parents=[],
                               formatter_class=ap.RawTextHelpFormatter,
                               prefix_chars='-',
                               fromfile_prefix_chars=None,
                               argument_default=ap.SUPPRESS,
                               conflict_handler='resolve',
                               add_help=True)
    parser.add_argument('file',
                        type=str,
                        help='Load native kite container (.npz & .yml)',
                        default=None,
                        nargs='?')
    parser.add_argument('--load',
                        metavar='file',
                        type=str,
                        default=None,
                        help='''Import file or directory
Supported formats are:
 * Matlab  (*.mat)
 * GAMMA   (* binary and *.par file)
 * GMTSAR  (*.grd binary and *.los.* file)
 * ISCE    (*.unw.geo with *.unw.geo.xml and; *.rdr.geo for LOS data)
 * ROI_PAC (* binary and *.rsc file''')
    parser.add_argument('--synthetic',
                        type=str,
                        default=None,
                        choices=['fractal', 'sine', 'gauss'],
                        help='''Synthetic Tests
Available Synthetic Displacement:
 * fractal (Atmospheric model; after Hanssen, 2001)
 * sine
 * gauss
''')

    parser.add_argument('--verbose',
                        '-v',
                        action='count',
                        default=1,
                        help='Verbosity, add mutliple to increase verbosity.')

    ns = parser.parse_args(args)

    log_level = logging.WARNING - ns.verbose * 10

    logging.basicConfig()
    stream_handler = logging.root.handlers[0]
    stream_handler.setLevel(level=log_level if log_level > 0 else 0)

    if ns.load is None and ns.synthetic is None and ns.file is None:
        parser.print_help()
        sys.exit(0)

    sc = None
    if ns.synthetic is not None:
        from kite import TestScene
        if ns.synthetic == 'fractal':
            sc = TestScene.createFractal()
        elif ns.synthetic == 'sine':
            sc = TestScene.createSine()
        elif ns.synthetic == 'gauss':
            sc = TestScene.createFractal()
        else:
            parser.print_help()
            sys.exit(0)

    if sc:
        spool(scene=sc)
    elif ns.load is not None:
        spool(import_file=ns.load)
    elif ns.file is not None:
        spool(load_file=ns.file)
コード例 #4
0
nscenes = 10
scenes = {}

for isc in range(nscenes):
    t = t0 - isc * dt
    sc = TSTestScene.createRandom(256, 256)
    sc.addNoise(1.)

    scenes[t] = sc


stack = SceneStack()
for ts, scene in scenes.items():
    stack.add_scene(scene, timestamp=ts)


def test_set_scene():
    stack.set_scene(stack.times[-1])


def test_set_scene_to():
    tmin = min(stack.times)
    tmax = max(stack.times)

    times = num.linspace(tmin, tmax, 30)
    for ts in times:
        stack.set_scene_to(ts)


spool(stack)