Updated configuration file organization and workflow description.

This commit is contained in:
2024-05-24 11:15:05 +02:00
parent 784cb1eb62
commit 005e855e48
2 changed files with 17 additions and 12 deletions

View File

@@ -20,8 +20,7 @@
"sys.path.append(root_dir)\n",
"\n",
"import src.hdf5_vis as hdf5_vis\n",
"import src.data_integration_lib as dilib\n",
"import yaml\n"
"import src.data_integration_lib as dilib\n"
]
},
{
@@ -31,7 +30,7 @@
"# Specify data integration task through yaml configuration file\n",
"\n",
"* Create your configuration file (i.e., *.yaml file) adhering to the example yaml file in the input folder.\n",
"* Set up the path and Excecute Cell.\n",
"* Set up input directory and output directory paths and Excecute Cell.\n",
"\n"
]
},
@@ -43,14 +42,16 @@
"source": [
"#output_filename_path = 'output_files/unified_file_smog_chamber_2024-04-07_UTC-OFST_+0200_NG.h5'\n",
"yaml_config_file_path = 'input_files/data_integr_config_file_LI.yaml'\n",
"output_filename_path, output_yml_filename_path = dilib.integrate_data_sources(yaml_config_file_path)\n"
"output_filename_path = dilib.integrate_data_sources(yaml_config_file_path)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Display integrated file using a treemap"
"# Display integrated HDF5 file using a treemap\n",
"\n",
"* Excecute Cell. A visual representation in html format of the integrated file should be displayed and stored in the output directory folder"
]
},
{