Skip to content

Commit

Permalink
[CHANGE] Adding additinal parameters to SBG e2e workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaCinquini committed Mar 6, 2024
1 parent b733337 commit 8f48358
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions airflow/dags/sbg_L1_to_L2_e2e_cwl_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
# For unity data upload step, unity catalog
"output_isofit_collection_id": Param("urn:nasa:unity:unity:dev:SBG-L2A_RFL___1", type="string"),
"output_resample_collection_id": Param("urn:nasa:unity:unity:dev:SBG-L2A_RSRFL___1", type="string"),
"output_refcorrect_collection_id": Param("urn:nasa:unity:unity:dev:SBG-L2A_CORFL___1", type="string"),
},
)

Expand All @@ -73,6 +74,7 @@ def setup(ti=None, **context):
"input_aux_stac": context["params"]["input_aux_stac"],
"output_isofit_collection_id": context["params"]["output_isofit_collection_id"],
"output_resample_collection_id": context["params"]["output_resample_collection_id"],
"output_refcorrect_collection_id": context["params"]["output_refcorrect_collection_id"],
}
ti.xcom_push(key="cwl_args", value=json.dumps(task_dict))

Expand Down

0 comments on commit 8f48358

Please sign in to comment.