From 895a44cc8ca17aace2acd3cd5beb99b1906ae54c Mon Sep 17 00:00:00 2001 From: Florez Ospina Juan Felipe Date: Fri, 14 Mar 2025 15:26:37 +0100 Subject: [PATCH] Update notebooks/demo_acsm_pipeline.ipynb by introducing global append and input file variables. --- notebooks/demo_acsm_pipeline.ipynb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/notebooks/demo_acsm_pipeline.ipynb b/notebooks/demo_acsm_pipeline.ipynb index 84e2456..07ba0a7 100644 --- a/notebooks/demo_acsm_pipeline.ipynb +++ b/notebooks/demo_acsm_pipeline.ipynb @@ -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" ] }, {