Skip to content

Commit

Permalink
add L2 functions to pipeline and close #27
Browse files Browse the repository at this point in the history
  • Loading branch information
Geet-George committed Dec 13, 2023
1 parent d9581eb commit 167f1fc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/halodrops/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,17 @@ def run_pipeline(pipeline: dict, config: configparser.ConfigParser):
"create_L2": {
"intake": "sondes",
"apply": iterate_Sonde_method_over_dict_of_Sondes_objects,
"functions": [],
"functions": [
"convert_to_si",
"get_l2_variables",
"add_compression_and_encoding_properties",
"get_flight_attributes",
"get_other_global_attributes",
"add_global_attributes_to_interim_l2_ds",
"add_sonde_id_variable",
"get_l2_filename",
"write_l2",
],
"output": "sondes",
"comment": "This steps creates the L2 files after the QC (user says how QC flags are used to go from L1 to L2) and then saves these as L2 NC datasets.",
},
Expand Down

0 comments on commit 167f1fc

Please sign in to comment.