コード例 #1
0
ファイル: __init__.py プロジェクト: beaulima/seotbx
def registering_application():
    from seotbx.apps import registering_application as ra
    ra(
        "polsarsigs",
        seotbx.polsarproc.apps.create_polsar_signatures.polsarsigs_parser_func,
        seotbx.polsarproc.apps.create_polsar_signatures.
        polsarsigs_application_func)
    ra(
        "polsarsamples",
        seotbx.polsarproc.apps.create_polsar_samples.polsarsamples_parser_func,
        seotbx.polsarproc.apps.create_polsar_samples.
        polsarsamples_application_func)
コード例 #2
0
ファイル: __init__.py プロジェクト: beaulima/seotbx
def registering_application():
    from seotbx.apps import registering_application as ra
    ra("gpt", gpt_parser_func, gpt_application_func)
    ra("s2atcor", s2atcor_parser_func, s2atcor_application_func)
    ra("s1preprocess",
       seotbx.snappy_api.sentinel1.s1preprocess.s1process_parser_func,
       seotbx.snappy_api.sentinel1.s1preprocess.s1process_application_func)
コード例 #3
0
ファイル: create_session.py プロジェクト: beaulima/seotbx
def registering_application():
    from seotbx.apps import registering_application as ra
    ra("new", create_session_subparser, create_session)
コード例 #4
0
ファイル: __init__.py プロジェクト: beaulima/seotbx
def registering_application():

    from seotbx.apps import registering_application as ra
    ra("train", seotbx.dl.apps.train.train_parser_func,
       seotbx.dl.apps.train.train_application_func)
コード例 #5
0
ファイル: __init__.py プロジェクト: beaulima/seotbx
def registering_application():
    from seotbx.apps import registering_application as ra
    ra("download_sentinel1",
       seotbx.sentinelsat_api.download_sentinel1.parser_func,
       seotbx.sentinelsat_api.download_sentinel1.application_func)
コード例 #6
0
ファイル: s2atcor.py プロジェクト: beaulima/seotbx
def registering_application():
    from seotbx.apps import registering_application as ra
    ra("s2atcor", parser_func, application_func)