Update notebooks/demo_acsm_pipeline.ipynb by introducing global append and input file variables.

This commit is contained in:
2025-03-14 15:26:37 +01:00
parent d5a89b2fbd
commit 895a44cc8c

View File

@ -31,7 +31,8 @@
"for item in sys.path:\n",
" print(item)\n",
"\n",
"CAMPAIGN_DATA_FILE = \"../data/collection_JFJ_2024_2025-03-17_2025-02-17.h5\""
"CAMPAIGN_DATA_FILE = \"../data/collection_JFJ_2024_2025-03-17_2025-02-17.h5\"\n",
"APPEND_DATA_DIR = \"../data/collection_JFJ_2024_2025-03-17_2025-02-17\""
]
},
{
@ -101,9 +102,13 @@
"outputs": [],
"source": [
"import dima.src.hdf5_ops as dataOps \n",
"#print(os.curdir)\n",
"\n",
"\n",
"dataManager = dataOps.HDF5DataOpsManager(CAMPAIGN_DATA_FILE)\n",
"dataManager.update_file('../data/collection_JFJ_2024_LeilaS_2025-02-17_2025-02-17')\n"
"print(dataManager.file_path)\n",
"print(APPEND_DATA_DIR)\n",
"dataManager.update_file(APPEND_DATA_DIR)\n"
]
},
{