Skip to content

rs_workflows/on_demand/sentinel1/s1_l0.md

<< Back to index

sentinel 1 Level-0 processing.

process_s1l0(session, flow_params, verbose=False) async

Sentinel-1 L0 processing. The session should have been staged before.

Source code in docs/rs-client-libraries/rs_workflows/on_demand/sentinel1/s1_l0.py
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@flow(name="process sentinel-1 level-0")
async def process_s1l0(session: str, flow_params: Level0FlowParams, verbose: bool = False):
    """
    Sentinel-1 L0 processing.
    The session should have been staged before.
    """

    input_products = [
        FlowInputProduct(
            name="S1CADUS",
            cadip_session=session,
            collection_name=flow_params.session_collection,
        ),
    ]

    await process_l0_last_steps(
        mission="1",
        session=session,
        flow_params=flow_params,
        input_products=input_products,
        verbose=verbose,
    )

process_s1l0_task(*args, **kwargs) async

See: dpr_processing

Source code in docs/rs-client-libraries/rs_workflows/on_demand/sentinel1/s1_l0.py
50
51
52
53
@task(name="process sentinel-1 level-0")
async def process_s1l0_task(*args, **kwargs) -> None:
    """See: dpr_processing"""
    return await process_s1l0.fn(*args, **kwargs)