Files
dima/notebooks/demo_data_integration.ipynb

3774 lines
119 KiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Data integration workflow of experimental campaign\n",
"\n",
"In this notebook, we will go through a our data integration workflow. This involves the following steps:\n",
"\n",
"1. Specify data integration file through YAML configuration file.\n",
"2. Create an integrated HDF5 file of experimental campaign from configuration file.\n",
"3. Display the created HDF5 file using a treemap\n",
"\n",
"## Import libraries and modules\n",
"\n",
"* Excecute (or Run) the Cell below"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Imports successful!\n"
]
}
],
"source": [
"from nbutils import add_project_path_to_sys_path\n",
"\n",
"# Add project root to sys.path\n",
"add_project_path_to_sys_path()\n",
"\n",
"try:\n",
" import src.hdf5_vis as hdf5_vis\n",
" import pipelines.data_integration as data_integration\n",
" print(\"Imports successful!\")\n",
"except ImportError as e:\n",
" print(f\"Import error: {e}\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 1: 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 input directory and output directory paths and Excecute Cell.\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"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_TBR.yaml'\n",
"\n",
"#path_to_input_directory = 'output_files/kinetic_flowtube_study_2022-01-31_LuciaI'\n",
"#path_to_hdf5_file = hdf5_lib.create_hdf5_file_from_filesystem_path(path_to_input_directory)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 2: Create an integrated HDF5 file of experimental campaign.\n",
"\n",
"* Excecute Cell. Here we run the function `integrate_data_sources` with input argument as the previously specified YAML config file."
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"[Start] Data integration :\n",
"Source: ..\\output_files\\collection_PSI_beamtime_ThorstenBR_2023-09-22_2023-09-25\n",
"Destination: ..\\output_files\\collection_PSI_beamtime_ThorstenBR_2023-09-22_2023-09-25.h5\n",
"\n",
"[Notice] The file '..\\output_files\\collection_PSI_beamtime_ThorstenBR_2023-09-22_2023-09-25.h5' already exists and will not be overwritten.\n",
"If you wish to replace it, please delete the existing file first and rerun the program.\n"
]
}
],
"source": [
"\n",
"hdf5_file_path = data_integration.run_pipeline(yaml_config_file_path)"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['..\\\\output_files\\\\collection_PSI_beamtime_ThorstenBR_2023-09-22_2023-09-25.h5']"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hdf5_file_path "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 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"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/NEXAFS\n",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5\n",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/__DATA_TYPES__\n",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/logs\n",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/scan 1\n",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5\n",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/__DATA_TYPES__\n",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/logs\n",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 1\n",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 2\n",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 3\n",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 4\n",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 5\n",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5\n",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/__DATA_TYPES__\n",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/logs\n",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/scan 1\n",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5\n",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/__DATA_TYPES__\n",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/logs\n",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/scan 1\n",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5\n",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/__DATA_TYPES__\n",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/logs\n",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/scan 1\n",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5\n",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/__DATA_TYPES__\n",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/logs\n",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/scan 1\n",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5\n",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/__DATA_TYPES__\n",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/logs\n",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/scan 1\n",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5\n",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/__DATA_TYPES__\n",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/logs\n",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/scan 1\n",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5\n",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/__DATA_TYPES__\n",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/logs\n",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/scan 1\n",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5\n",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/__DATA_TYPES__\n",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/logs\n",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/scan 1\n",
"/Notes\n",
"/Pressure\n",
"/Pressure/2023-09-18_20.06.44_PC15490_NAPP_Chamber.dat\n",
"/Pressure/2023-09-22_10.17.46_PC15490_NAPP_Chamber.dat\n",
"/RGA\n",
"/RGA/RGA3.txt\n",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt\n",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt\n",
"/SES\n",
"/SES/0001001_Survey_1000eV.ibw\n",
"/SES/0002002_Survey_1000eV.ibw\n",
"/SES/0003003_Survey_1000eV.ibw\n",
"/SES/0004004_Survey_1000eV.ibw\n",
"/SES/0005005_C1s_520eV.ibw\n",
"/SES/0005005_N1s_520eV.ibw\n",
"/SES/0005005_VB_520eV.ibw\n",
"/SES/0006006_C1s_520eV.ibw\n",
"/SES/0006006_N1s_520eV.ibw\n",
"/SES/0006006_VB_520eV.ibw\n",
"/SES/0007007_C1s_520eV.ibw\n",
"/SES/0007007_N1s_520eV.ibw\n",
"/SES/0007007_VB_520eV.ibw\n",
"/SES/0008008_C1s_515eV.ibw\n",
"/SES/0008008_N1s_515eV.ibw\n",
"/SES/0008008_VB_515eV.ibw\n",
"/SES/0009009_N1s_495eV.ibw\n",
"/SES/0011011_N1s_495eV.ibw\n",
"/SES/0012012_N1s_495eV.ibw\n",
"/SES/0013013_N1s_495eV.ibw\n",
"/SES/0014014_C1s_495eV.ibw\n",
"/SES/0014014_N1s_495eV.ibw\n",
"/SES/0014014_VB_495eV.ibw\n",
"/SES/0015015_C1s_495eV.ibw\n",
"/SES/0015015_N1s_495eV.ibw\n",
"/SES/0015015_VB_495eV.ibw\n",
"/SES/0016016_C1s_404eV.ibw\n",
"/SES/0016016_VB_404eV.ibw\n",
"/SES/0017017_C1s_404eV.ibw\n",
"/SES/0017017_VB_404eV.ibw\n",
"/SES/0018018_C1s_495eV.ibw\n",
"/SES/0018018_N1s_495eV.ibw\n",
"/SES/0018018_VB_495eV.ibw\n",
"/SES/0019019_C1s_401eV.ibw\n",
"/SES/0020020_N1s_495eV.ibw\n",
"/SES/0021021_C1s_401eV.ibw\n",
"/SES/0021021_VB_401eV.ibw\n",
"/SES/0022022_C1s_495eV.ibw\n",
"/SES/0022022_N1s_495eV.ibw\n",
"/SES/0022022_VB_495eV.ibw\n",
"/SES/0023023_C1s_403.34eV.ibw\n",
"/SES/0023023_VB_403.34eV.ibw\n",
"/SES/0024024_C1s_403.34eV.ibw\n",
"/SES/0024024_VB_403.34eV.ibw\n",
"/SES/0025025_C1s_403.34eV.ibw\n",
"/SES/0025025_VB_403.34eV.ibw\n",
"/SES/0026026_C1s_495eV.ibw\n",
"/SES/0026026_N1s_495eV.ibw\n",
"/SES/0026026_VB_495eV.ibw\n",
"/SES/0027027_C1s_407eV.ibw\n",
"/SES/0027027_VB_407eV.ibw\n",
"/SES/0028028_C1s_495eV.ibw\n",
"/SES/0028028_N1s_495eV.ibw\n",
"/SES/0028028_VB_495eV.ibw\n",
"/SES/0029029_Survey_495eV.ibw\n",
"/SES/0030030_Survey_1000eV.ibw\n",
"/SES/0031031_Survey_495eV.ibw\n",
"/SES/0032032_Survey_495eV.ibw\n",
"/SES/0033033_Survey_495eV.ibw\n",
"/SES/0034034_C1s_495eV.ibw\n",
"/SES/0034034_N1s_495eV.ibw\n",
"/SES/0035035_N1s_495eV.ibw\n",
"/SES/0036036_C1s_495eV.ibw\n",
"/SES/0036036_N1s_495eV.ibw\n",
"/SES/0037037_C1s_495eV.ibw\n",
"/SES/0037037_N1s_495eV.ibw\n",
"/SES/0037037_VB_495eV.ibw\n",
"/SES/0038038_C1s_495eV.ibw\n",
"/SES/0038038_N1s_495eV.ibw\n",
"/SES/0038038_VB_495eV.ibw\n",
"/SES/0039039_C1s_403.34eV.ibw\n",
"/SES/0040040_C1s_403.34eV.ibw\n",
"/SES/0041041_C1s_403.34eV.ibw\n",
"/SES/0041041_VB_403.34eV.ibw\n",
"/SES/0042042_Survey_1000eV.ibw\n",
"/SES/0044044_C1s_495eV.ibw\n",
"/SES/0044044_N1s_495eV.ibw\n",
"/SES/0044044_VB_495eV.ibw\n",
"/SES/0045045_Survey_495eV.ibw\n",
"/SES/0046046_C1s_495eV.ibw\n",
"/SES/0046046_N1s_495eV.ibw\n",
"/SES/0046046_VB_495eV.ibw\n",
"/SES/0047047_N1s_495eV.ibw\n",
"/SES/0048048_Survey_495eV.ibw\n",
"/SES/0049049_C1s_495eV.ibw\n",
"/SES/0049049_N1s_495eV.ibw\n",
"/SES/0049049_VB_495eV.ibw\n",
"/SES/0051051_VB_403.34eV.ibw\n",
"/SES/0052052_C1s_403.34eV.ibw\n",
"/SES/0052052_VB_403.34eV.ibw\n",
"/SES/0053053_C1s_401eV.ibw\n",
"/SES/0054054_VB_401eV.ibw\n",
"/SES/0055055_C1s_401eV.ibw\n",
"/SES/0055055_VB_401eV.ibw\n",
"/SES/0056056_C1s_495eV.ibw\n",
"/SES/0056056_N1s_495eV.ibw\n",
"/SES/0056056_VB_495eV.ibw\n",
"/SES/0057057_VB_401eV.ibw\n",
"/SES/0058058_VB_401eV.ibw\n",
"/SES/0059059_C1s_403.34eV.ibw\n",
"/SES/0059059_VB_403.34eV.ibw\n",
"/SES/0060060_C1s_403.34eV.ibw\n",
"/SES/0060060_VB_403.34eV.ibw\n",
"/SES/0061061_C1s_403.34eV.ibw\n",
"/SES/0061061_VB_403.34eV.ibw\n",
"/SES/0063063_C1s_495eV.ibw\n",
"/SES/0064064_C1s_495eV.ibw\n",
"/SES/0065065_C1s_495eV.ibw\n",
"/SES/0066066_C1s_495eV.ibw\n",
"/SES/0068068_C1s_495eV.ibw\n",
"/SES/0068068_N1s_495eV.ibw\n",
"/SES/0069069_C1s_495eV.ibw\n",
"/SES/0069069_N1s_495eV.ibw\n",
"/SES/0070070_Survey_1000eV.ibw\n",
"/SES/0071071_C1s_495eV.ibw\n",
"/SES/0071071_N1s_495eV.ibw\n",
"/SES/0072072_C1s_403.34eV.ibw\n",
"/SES/0072072_VB_403.34eV.ibw\n",
"/SES/0073073_C1s_403.34eV.ibw\n",
"/SES/0073073_VB_403.34eV_short.ibw\n",
"/SES/0074074_Survey_1000eV.ibw\n",
"/SES/0075075_Survey_1000eV.ibw\n",
"/SES/0076076_C1s_403.34eV.ibw\n",
"/SES/0076076_VB_403.34eV_short.ibw\n",
"/SES/0077077_C1s_403.34eV.ibw\n",
"/SES/0077077_VB_403.34eV_short.ibw\n",
"/SES/0078078_C1s_403.34eV.ibw\n",
"/SES/0078078_VB_403.34eV_short.ibw\n",
"/SES/0079079_C1s_403.34eV.ibw\n",
"/SES/0079079_VB_403.34eV_short.ibw\n",
"/SES/0080080_C1s_403.34eV.ibw\n",
"/SES/0080080_VB_403.34eV_short.ibw\n",
"/SES/0081081_C1s_403.34eV.ibw\n",
"/SES/0081081_VB_403.34eV_short.ibw\n",
"/SES/0082082_C1s_403.34eV.ibw\n",
"/SES/0082082_VB_403.34eV_short.ibw\n",
"/SES/0083083_VB_403.34eV_short.ibw\n",
"/SES/0084084_VB_403.34eV_short.ibw\n",
"/SES/0085085_Survey_1000eV.ibw\n",
"/SES/0086086_Survey_1000eV.ibw\n",
"/SES/0087087_O1s_750.ibw\n",
"/SES/0088088_O1s_750.ibw\n",
"/SES/0089089_O1s_750eV.ibw\n",
"/SES/0090090_Cl2p_750eV.ibw\n",
"/SES/0090090_Mg2s_750eV.ibw\n",
"/SES/0090090_O1s_750eV.ibw\n",
"/SES/0091091_Cl2p_750eV.ibw\n",
"/SES/0092092_Cl2p_750eV.ibw\n",
"/SES/0092092_O1s_750eV.ibw\n",
"/SES/0093093_Cl2p_750eV.ibw\n",
"/SES/0093093_O1s_750eV.ibw\n",
"/SES/0094094_Cl2p_750eV.ibw\n",
"/SES/0094094_O1s_750eV.ibw\n",
"/SES/0095095_Cl2p_750eV.ibw\n",
"/SES/0095095_O1s_750eV.ibw\n",
"/SES/0096096_Cl2p_750eV.ibw\n",
"/SES/0096096_O1s_750eV.ibw\n",
"/SES/0097097_Survey_1000eV.ibw\n",
"/SES/0098098_Survey_1000eV.ibw\n",
"/SES/0099099_Survey_1000eV.ibw\n",
"/SES/0100100_C1s_750eV.ibw\n",
"/SES/0100100_Mg2s_750eV.ibw\n",
"/SES/0100100_O1s_750eV.ibw\n",
"/SES/0101101_C1s_750eV.ibw\n",
"/SES/0101101_Mg2s_750eV.ibw\n",
"/SES/0101101_O1s_750eV.ibw\n",
"/SES/0102102_C1s_750eV.ibw\n",
"/SES/0102102_O1s_750eV.ibw\n",
"/SES/0103103_C1s_750eV.ibw\n",
"/SES/0103103_Cl2p_750eV.ibw\n",
"/SES/0103103_Mg2s_750eV.ibw\n",
"/SES/0103103_O1s_750eV.ibw\n",
"/SES/0104104_C1s_750eV.ibw\n",
"/SES/0104104_Cl2p_750eV.ibw\n",
"/SES/0104104_O1s_750eV.ibw\n",
"/SES/0105105_C1s_750eV.ibw\n",
"/SES/0105105_Cl2p_750eV.ibw\n",
"/SES/0105105_O1s_750eV.ibw\n",
"/SES/0106106_C1s_750eV.ibw\n",
"/SES/0106106_Cl2p_750eV.ibw\n",
"/SES/0106106_O1s_750eV.ibw\n",
"/SES/0107107_C1s_750eV.ibw\n",
"/SES/0107107_Cl2p_750eV_new.ibw\n",
"/SES/0107107_O1s_750eV.ibw\n",
"/SES/0108108_C1s_750eV.ibw\n",
"/SES/0108108_Cl2p_750eV_new.ibw\n",
"/SES/0108108_O1s_750eV.ibw\n",
"/SES/0109109_C1s_750eV.ibw\n",
"/SES/0109109_Cl2p_750eV_new.ibw\n",
"/SES/0109109_O1s_750eV.ibw\n",
"/SES/0110110_C1s_750eV.ibw\n",
"/SES/0110110_Cl2p_750eV_new.ibw\n",
"/SES/0110110_O1s_750eV.ibw\n",
"/SES/0111111_C1s_750eV.ibw\n",
"/SES/0111111_Cl2p_750eV_new.ibw\n",
"/SES/0111111_O1s_750eV.ibw\n",
"/SES/0112112_Survey_1000eV.ibw\n",
"/SES/0113113_C1s_750eV.ibw\n",
"/SES/0113113_Cl2p_750eV_new.ibw\n",
"/SES/0113113_O1s_750eV.ibw\n",
"/SES/0114114_Cl2p_750eV_new.ibw\n",
"/SES/0114114_O1s_750eV.ibw\n",
"/SES/0115115_Cl2p_750eV_new.ibw\n",
"/SES/0115115_O1s_750eV.ibw\n",
"/SES/0116116_Cl2p_750eV_new.ibw\n",
"/SES/0116116_O1s_750eV.ibw\n",
"/SES/0117117_Cl2p_400eV.ibw\n",
"/SES/0118118_Cl2p_400eV.ibw\n",
"/SES/0119119_Cl2p_400eV.ibw\n",
"/SES/0120120_Cl2p_400eV.ibw\n",
"/SES/0121121_Cl2p_395eV.ibw\n",
"/SES/0122122_Cl2p_395eV.ibw\n",
"/SES/0123123_Cl2p_395eV.ibw\n",
"/SES/0124124_Cl2p_395eV.ibw\n",
"/SES/0125125_Cl2p_395eV.ibw\n",
"/SES/0126126_Cl2p_750eV_new.ibw\n",
"/SES/0126126_O1s_750eV.ibw\n",
"/SES/0127127_Survey_1000eV.ibw\n",
"/SES/0128128_Cl2p_750eV_new.ibw\n",
"/SES/0128128_Mg2s_750eV.ibw\n",
"/SES/0128128_O1s_750eV.ibw\n",
"/SES/0129129_Survey_1000eV.ibw\n",
"/SES/0130130_C1s_750eV.ibw\n",
"/SES/0130130_O1s_750eV.ibw\n",
"/SES/0131131_Cl2p_750eV_new.ibw\n",
"/SES/0131131_O1s_750eV.ibw\n",
"/SES/0132132_Cl2p_750eV_new.ibw\n",
"/SES/0132132_O1s_750eV.ibw\n",
"/SES/0133133_Cl2p_395eV.ibw\n",
"/SES/0134134_Cl2p_750eV_new.ibw\n",
"/SES/0134134_O1s_750eV.ibw\n",
"/SES/0135135_Cl2p_750eV_new.ibw\n",
"/SES/0135135_O1s_750eV.ibw\n",
"/SES/0136136_Cl2p_395eV.ibw\n",
"/SES/0137137_Cl2p_750eV_new.ibw\n",
"/SES/0137137_O1s_750eV.ibw\n",
"/SES/0138138_Cl2p_750eV_new.ibw\n",
"/SES/0138138_O1s_750eV.ibw\n",
"/SES/0139139_Cl2p_750eV_new.ibw\n",
"/SES/0139139_O1s_750eV.ibw\n",
"/SES/0140140_Cl2p_750eV_new.ibw\n",
"/SES/0140140_O1s_750eV.ibw\n",
"/SES/0141141_Cl2p_395eV.ibw\n",
"/SES/0142142_Cl2p_750eV_new.ibw\n",
"/SES/0142142_O1s_750eV.ibw\n",
"/SES/0143143_Cl2p_750eV_new.ibw\n",
"/SES/0143143_O1s_750eV.ibw\n",
"/SES/0144144_Cl2p_750eV_new.ibw\n",
"/SES/0144144_O1s_750eV.ibw\n",
"/SES/0145145_Cl2p_750eV_new.ibw\n",
"/SES/0145145_O1s_750eV.ibw\n",
"/SES/0146146_Cl2p_395eV.ibw\n",
"/SES/0147147_Cl2p_395eV.ibw\n",
"/SES/0148148_C1s_750eV.ibw\n",
"/SES/0148148_Cl2p_750eV_new.ibw\n",
"/SES/0148148_O1s_750eV.ibw\n",
"/SES/0149149_Cl2p_395eV.ibw\n",
"/SES/0150150_Cl2p_395eV.ibw\n",
"/SES/0151151_C1s_750eV.ibw\n",
"/SES/0151151_Cl2p_750eV_new.ibw\n",
"/SES/0151151_O1s_750eV.ibw\n",
"/SES/0152152_Cl2p_395eV.ibw\n"
]
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"branchvalues": "remainder",
"customdata": [
"<br><br>project: Beamtime May 2024, Ice Napp<br>experiment: beamtime<br>contact: ThorstenBR<br>level: 0",
"/NEXAFS",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/__DATA_TYPES__",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/logs",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/scan 1",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/__DATA_TYPES__",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/logs",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 1",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 2",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 3",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 4",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 5",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/__DATA_TYPES__",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/logs",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/scan 1",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/__DATA_TYPES__",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/logs",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/scan 1",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/__DATA_TYPES__",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/logs",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/scan 1",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/__DATA_TYPES__",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/logs",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/scan 1",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/__DATA_TYPES__",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/logs",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/scan 1",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/__DATA_TYPES__",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/logs",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/scan 1",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/__DATA_TYPES__",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/logs",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/scan 1",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/__DATA_TYPES__",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/logs",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/scan 1",
"/Notes",
"/Pressure",
"/Pressure/2023-09-18_20.06.44_PC15490_NAPP_Chamber.dat",
"/Pressure/2023-09-18_20.06.44_PC15490_NAPP_Chamber.dat/data_table",
"/Pressure/2023-09-22_10.17.46_PC15490_NAPP_Chamber.dat",
"/Pressure/2023-09-22_10.17.46_PC15490_NAPP_Chamber.dat/data_table",
"/RGA",
"/RGA/RGA3.txt",
"/RGA/RGA3.txt/data_table",
"/RGA/RGA3.txt/table_preamble",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt/data_table",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt/table_preamble",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt/data_table",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt/table_preamble",
"/SES",
"/SES/0001001_Survey_1000eV.ibw",
"/SES/0001001_Survey_1000eV.ibw/spectrum",
"/SES/0002002_Survey_1000eV.ibw",
"/SES/0002002_Survey_1000eV.ibw/spectrum",
"/SES/0003003_Survey_1000eV.ibw",
"/SES/0003003_Survey_1000eV.ibw/spectrum",
"/SES/0004004_Survey_1000eV.ibw",
"/SES/0004004_Survey_1000eV.ibw/spectrum",
"/SES/0005005_C1s_520eV.ibw",
"/SES/0005005_C1s_520eV.ibw/spectrum",
"/SES/0005005_N1s_520eV.ibw",
"/SES/0005005_N1s_520eV.ibw/spectrum",
"/SES/0005005_VB_520eV.ibw",
"/SES/0005005_VB_520eV.ibw/spectrum",
"/SES/0006006_C1s_520eV.ibw",
"/SES/0006006_C1s_520eV.ibw/spectrum",
"/SES/0006006_N1s_520eV.ibw",
"/SES/0006006_N1s_520eV.ibw/spectrum",
"/SES/0006006_VB_520eV.ibw",
"/SES/0006006_VB_520eV.ibw/spectrum",
"/SES/0007007_C1s_520eV.ibw",
"/SES/0007007_C1s_520eV.ibw/spectrum",
"/SES/0007007_N1s_520eV.ibw",
"/SES/0007007_N1s_520eV.ibw/spectrum",
"/SES/0007007_VB_520eV.ibw",
"/SES/0007007_VB_520eV.ibw/spectrum",
"/SES/0008008_C1s_515eV.ibw",
"/SES/0008008_C1s_515eV.ibw/spectrum",
"/SES/0008008_N1s_515eV.ibw",
"/SES/0008008_N1s_515eV.ibw/spectrum",
"/SES/0008008_VB_515eV.ibw",
"/SES/0008008_VB_515eV.ibw/spectrum",
"/SES/0009009_N1s_495eV.ibw",
"/SES/0009009_N1s_495eV.ibw/spectrum",
"/SES/0011011_N1s_495eV.ibw",
"/SES/0011011_N1s_495eV.ibw/spectrum",
"/SES/0012012_N1s_495eV.ibw",
"/SES/0012012_N1s_495eV.ibw/spectrum",
"/SES/0013013_N1s_495eV.ibw",
"/SES/0013013_N1s_495eV.ibw/spectrum",
"/SES/0014014_C1s_495eV.ibw",
"/SES/0014014_C1s_495eV.ibw/spectrum",
"/SES/0014014_N1s_495eV.ibw",
"/SES/0014014_N1s_495eV.ibw/spectrum",
"/SES/0014014_VB_495eV.ibw",
"/SES/0014014_VB_495eV.ibw/spectrum",
"/SES/0015015_C1s_495eV.ibw",
"/SES/0015015_C1s_495eV.ibw/spectrum",
"/SES/0015015_N1s_495eV.ibw",
"/SES/0015015_N1s_495eV.ibw/spectrum",
"/SES/0015015_VB_495eV.ibw",
"/SES/0015015_VB_495eV.ibw/spectrum",
"/SES/0016016_C1s_404eV.ibw",
"/SES/0016016_C1s_404eV.ibw/spectrum",
"/SES/0016016_VB_404eV.ibw",
"/SES/0016016_VB_404eV.ibw/spectrum",
"/SES/0017017_C1s_404eV.ibw",
"/SES/0017017_C1s_404eV.ibw/spectrum",
"/SES/0017017_VB_404eV.ibw",
"/SES/0017017_VB_404eV.ibw/spectrum",
"/SES/0018018_C1s_495eV.ibw",
"/SES/0018018_C1s_495eV.ibw/spectrum",
"/SES/0018018_N1s_495eV.ibw",
"/SES/0018018_N1s_495eV.ibw/spectrum",
"/SES/0018018_VB_495eV.ibw",
"/SES/0018018_VB_495eV.ibw/spectrum",
"/SES/0019019_C1s_401eV.ibw",
"/SES/0019019_C1s_401eV.ibw/spectrum",
"/SES/0020020_N1s_495eV.ibw",
"/SES/0020020_N1s_495eV.ibw/spectrum",
"/SES/0021021_C1s_401eV.ibw",
"/SES/0021021_C1s_401eV.ibw/spectrum",
"/SES/0021021_VB_401eV.ibw",
"/SES/0021021_VB_401eV.ibw/spectrum",
"/SES/0022022_C1s_495eV.ibw",
"/SES/0022022_C1s_495eV.ibw/spectrum",
"/SES/0022022_N1s_495eV.ibw",
"/SES/0022022_N1s_495eV.ibw/spectrum",
"/SES/0022022_VB_495eV.ibw",
"/SES/0022022_VB_495eV.ibw/spectrum",
"/SES/0023023_C1s_403.34eV.ibw",
"/SES/0023023_C1s_403.34eV.ibw/spectrum",
"/SES/0023023_VB_403.34eV.ibw",
"/SES/0023023_VB_403.34eV.ibw/spectrum",
"/SES/0024024_C1s_403.34eV.ibw",
"/SES/0024024_C1s_403.34eV.ibw/spectrum",
"/SES/0024024_VB_403.34eV.ibw",
"/SES/0024024_VB_403.34eV.ibw/spectrum",
"/SES/0025025_C1s_403.34eV.ibw",
"/SES/0025025_C1s_403.34eV.ibw/spectrum",
"/SES/0025025_VB_403.34eV.ibw",
"/SES/0025025_VB_403.34eV.ibw/spectrum",
"/SES/0026026_C1s_495eV.ibw",
"/SES/0026026_C1s_495eV.ibw/spectrum",
"/SES/0026026_N1s_495eV.ibw",
"/SES/0026026_N1s_495eV.ibw/spectrum",
"/SES/0026026_VB_495eV.ibw",
"/SES/0026026_VB_495eV.ibw/spectrum",
"/SES/0027027_C1s_407eV.ibw",
"/SES/0027027_C1s_407eV.ibw/spectrum",
"/SES/0027027_VB_407eV.ibw",
"/SES/0027027_VB_407eV.ibw/spectrum",
"/SES/0028028_C1s_495eV.ibw",
"/SES/0028028_C1s_495eV.ibw/spectrum",
"/SES/0028028_N1s_495eV.ibw",
"/SES/0028028_N1s_495eV.ibw/spectrum",
"/SES/0028028_VB_495eV.ibw",
"/SES/0028028_VB_495eV.ibw/spectrum",
"/SES/0029029_Survey_495eV.ibw",
"/SES/0029029_Survey_495eV.ibw/spectrum",
"/SES/0030030_Survey_1000eV.ibw",
"/SES/0030030_Survey_1000eV.ibw/spectrum",
"/SES/0031031_Survey_495eV.ibw",
"/SES/0031031_Survey_495eV.ibw/spectrum",
"/SES/0032032_Survey_495eV.ibw",
"/SES/0032032_Survey_495eV.ibw/spectrum",
"/SES/0033033_Survey_495eV.ibw",
"/SES/0033033_Survey_495eV.ibw/spectrum",
"/SES/0034034_C1s_495eV.ibw",
"/SES/0034034_C1s_495eV.ibw/spectrum",
"/SES/0034034_N1s_495eV.ibw",
"/SES/0034034_N1s_495eV.ibw/spectrum",
"/SES/0035035_N1s_495eV.ibw",
"/SES/0035035_N1s_495eV.ibw/spectrum",
"/SES/0036036_C1s_495eV.ibw",
"/SES/0036036_C1s_495eV.ibw/spectrum",
"/SES/0036036_N1s_495eV.ibw",
"/SES/0036036_N1s_495eV.ibw/spectrum",
"/SES/0037037_C1s_495eV.ibw",
"/SES/0037037_C1s_495eV.ibw/spectrum",
"/SES/0037037_N1s_495eV.ibw",
"/SES/0037037_N1s_495eV.ibw/spectrum",
"/SES/0037037_VB_495eV.ibw",
"/SES/0037037_VB_495eV.ibw/spectrum",
"/SES/0038038_C1s_495eV.ibw",
"/SES/0038038_C1s_495eV.ibw/spectrum",
"/SES/0038038_N1s_495eV.ibw",
"/SES/0038038_N1s_495eV.ibw/spectrum",
"/SES/0038038_VB_495eV.ibw",
"/SES/0038038_VB_495eV.ibw/spectrum",
"/SES/0039039_C1s_403.34eV.ibw",
"/SES/0039039_C1s_403.34eV.ibw/spectrum",
"/SES/0040040_C1s_403.34eV.ibw",
"/SES/0040040_C1s_403.34eV.ibw/spectrum",
"/SES/0041041_C1s_403.34eV.ibw",
"/SES/0041041_C1s_403.34eV.ibw/spectrum",
"/SES/0041041_VB_403.34eV.ibw",
"/SES/0041041_VB_403.34eV.ibw/spectrum",
"/SES/0042042_Survey_1000eV.ibw",
"/SES/0042042_Survey_1000eV.ibw/spectrum",
"/SES/0044044_C1s_495eV.ibw",
"/SES/0044044_C1s_495eV.ibw/spectrum",
"/SES/0044044_N1s_495eV.ibw",
"/SES/0044044_N1s_495eV.ibw/spectrum",
"/SES/0044044_VB_495eV.ibw",
"/SES/0044044_VB_495eV.ibw/spectrum",
"/SES/0045045_Survey_495eV.ibw",
"/SES/0045045_Survey_495eV.ibw/spectrum",
"/SES/0046046_C1s_495eV.ibw",
"/SES/0046046_C1s_495eV.ibw/spectrum",
"/SES/0046046_N1s_495eV.ibw",
"/SES/0046046_N1s_495eV.ibw/spectrum",
"/SES/0046046_VB_495eV.ibw",
"/SES/0046046_VB_495eV.ibw/spectrum",
"/SES/0047047_N1s_495eV.ibw",
"/SES/0047047_N1s_495eV.ibw/spectrum",
"/SES/0048048_Survey_495eV.ibw",
"/SES/0048048_Survey_495eV.ibw/spectrum",
"/SES/0049049_C1s_495eV.ibw",
"/SES/0049049_C1s_495eV.ibw/spectrum",
"/SES/0049049_N1s_495eV.ibw",
"/SES/0049049_N1s_495eV.ibw/spectrum",
"/SES/0049049_VB_495eV.ibw",
"/SES/0049049_VB_495eV.ibw/spectrum",
"/SES/0051051_VB_403.34eV.ibw",
"/SES/0051051_VB_403.34eV.ibw/spectrum",
"/SES/0052052_C1s_403.34eV.ibw",
"/SES/0052052_C1s_403.34eV.ibw/spectrum",
"/SES/0052052_VB_403.34eV.ibw",
"/SES/0052052_VB_403.34eV.ibw/spectrum",
"/SES/0053053_C1s_401eV.ibw",
"/SES/0053053_C1s_401eV.ibw/spectrum",
"/SES/0054054_VB_401eV.ibw",
"/SES/0054054_VB_401eV.ibw/spectrum",
"/SES/0055055_C1s_401eV.ibw",
"/SES/0055055_C1s_401eV.ibw/spectrum",
"/SES/0055055_VB_401eV.ibw",
"/SES/0055055_VB_401eV.ibw/spectrum",
"/SES/0056056_C1s_495eV.ibw",
"/SES/0056056_C1s_495eV.ibw/spectrum",
"/SES/0056056_N1s_495eV.ibw",
"/SES/0056056_N1s_495eV.ibw/spectrum",
"/SES/0056056_VB_495eV.ibw",
"/SES/0056056_VB_495eV.ibw/spectrum",
"/SES/0057057_VB_401eV.ibw",
"/SES/0057057_VB_401eV.ibw/spectrum",
"/SES/0058058_VB_401eV.ibw",
"/SES/0058058_VB_401eV.ibw/spectrum",
"/SES/0059059_C1s_403.34eV.ibw",
"/SES/0059059_C1s_403.34eV.ibw/spectrum",
"/SES/0059059_VB_403.34eV.ibw",
"/SES/0059059_VB_403.34eV.ibw/spectrum",
"/SES/0060060_C1s_403.34eV.ibw",
"/SES/0060060_C1s_403.34eV.ibw/spectrum",
"/SES/0060060_VB_403.34eV.ibw",
"/SES/0060060_VB_403.34eV.ibw/spectrum",
"/SES/0061061_C1s_403.34eV.ibw",
"/SES/0061061_C1s_403.34eV.ibw/spectrum",
"/SES/0061061_VB_403.34eV.ibw",
"/SES/0061061_VB_403.34eV.ibw/spectrum",
"/SES/0063063_C1s_495eV.ibw",
"/SES/0063063_C1s_495eV.ibw/spectrum",
"/SES/0064064_C1s_495eV.ibw",
"/SES/0064064_C1s_495eV.ibw/spectrum",
"/SES/0065065_C1s_495eV.ibw",
"/SES/0065065_C1s_495eV.ibw/spectrum",
"/SES/0066066_C1s_495eV.ibw",
"/SES/0066066_C1s_495eV.ibw/spectrum",
"/SES/0068068_C1s_495eV.ibw",
"/SES/0068068_C1s_495eV.ibw/spectrum",
"/SES/0068068_N1s_495eV.ibw",
"/SES/0068068_N1s_495eV.ibw/spectrum",
"/SES/0069069_C1s_495eV.ibw",
"/SES/0069069_C1s_495eV.ibw/spectrum",
"/SES/0069069_N1s_495eV.ibw",
"/SES/0069069_N1s_495eV.ibw/spectrum",
"/SES/0070070_Survey_1000eV.ibw",
"/SES/0070070_Survey_1000eV.ibw/spectrum",
"/SES/0071071_C1s_495eV.ibw",
"/SES/0071071_C1s_495eV.ibw/spectrum",
"/SES/0071071_N1s_495eV.ibw",
"/SES/0071071_N1s_495eV.ibw/spectrum",
"/SES/0072072_C1s_403.34eV.ibw",
"/SES/0072072_C1s_403.34eV.ibw/spectrum",
"/SES/0072072_VB_403.34eV.ibw",
"/SES/0072072_VB_403.34eV.ibw/spectrum",
"/SES/0073073_C1s_403.34eV.ibw",
"/SES/0073073_C1s_403.34eV.ibw/spectrum",
"/SES/0073073_VB_403.34eV_short.ibw",
"/SES/0073073_VB_403.34eV_short.ibw/spectrum",
"/SES/0074074_Survey_1000eV.ibw",
"/SES/0074074_Survey_1000eV.ibw/spectrum",
"/SES/0075075_Survey_1000eV.ibw",
"/SES/0075075_Survey_1000eV.ibw/spectrum",
"/SES/0076076_C1s_403.34eV.ibw",
"/SES/0076076_C1s_403.34eV.ibw/spectrum",
"/SES/0076076_VB_403.34eV_short.ibw",
"/SES/0076076_VB_403.34eV_short.ibw/spectrum",
"/SES/0077077_C1s_403.34eV.ibw",
"/SES/0077077_C1s_403.34eV.ibw/spectrum",
"/SES/0077077_VB_403.34eV_short.ibw",
"/SES/0077077_VB_403.34eV_short.ibw/spectrum",
"/SES/0078078_C1s_403.34eV.ibw",
"/SES/0078078_C1s_403.34eV.ibw/spectrum",
"/SES/0078078_VB_403.34eV_short.ibw",
"/SES/0078078_VB_403.34eV_short.ibw/spectrum",
"/SES/0079079_C1s_403.34eV.ibw",
"/SES/0079079_C1s_403.34eV.ibw/spectrum",
"/SES/0079079_VB_403.34eV_short.ibw",
"/SES/0079079_VB_403.34eV_short.ibw/spectrum",
"/SES/0080080_C1s_403.34eV.ibw",
"/SES/0080080_C1s_403.34eV.ibw/spectrum",
"/SES/0080080_VB_403.34eV_short.ibw",
"/SES/0080080_VB_403.34eV_short.ibw/spectrum",
"/SES/0081081_C1s_403.34eV.ibw",
"/SES/0081081_C1s_403.34eV.ibw/spectrum",
"/SES/0081081_VB_403.34eV_short.ibw",
"/SES/0081081_VB_403.34eV_short.ibw/spectrum",
"/SES/0082082_C1s_403.34eV.ibw",
"/SES/0082082_C1s_403.34eV.ibw/spectrum",
"/SES/0082082_VB_403.34eV_short.ibw",
"/SES/0082082_VB_403.34eV_short.ibw/spectrum",
"/SES/0083083_VB_403.34eV_short.ibw",
"/SES/0083083_VB_403.34eV_short.ibw/spectrum",
"/SES/0084084_VB_403.34eV_short.ibw",
"/SES/0084084_VB_403.34eV_short.ibw/spectrum",
"/SES/0085085_Survey_1000eV.ibw",
"/SES/0085085_Survey_1000eV.ibw/spectrum",
"/SES/0086086_Survey_1000eV.ibw",
"/SES/0086086_Survey_1000eV.ibw/spectrum",
"/SES/0087087_O1s_750.ibw",
"/SES/0087087_O1s_750.ibw/spectrum",
"/SES/0088088_O1s_750.ibw",
"/SES/0088088_O1s_750.ibw/spectrum",
"/SES/0089089_O1s_750eV.ibw",
"/SES/0089089_O1s_750eV.ibw/spectrum",
"/SES/0090090_Cl2p_750eV.ibw",
"/SES/0090090_Cl2p_750eV.ibw/spectrum",
"/SES/0090090_Mg2s_750eV.ibw",
"/SES/0090090_Mg2s_750eV.ibw/spectrum",
"/SES/0090090_O1s_750eV.ibw",
"/SES/0090090_O1s_750eV.ibw/spectrum",
"/SES/0091091_Cl2p_750eV.ibw",
"/SES/0091091_Cl2p_750eV.ibw/spectrum",
"/SES/0092092_Cl2p_750eV.ibw",
"/SES/0092092_Cl2p_750eV.ibw/spectrum",
"/SES/0092092_O1s_750eV.ibw",
"/SES/0092092_O1s_750eV.ibw/spectrum",
"/SES/0093093_Cl2p_750eV.ibw",
"/SES/0093093_Cl2p_750eV.ibw/spectrum",
"/SES/0093093_O1s_750eV.ibw",
"/SES/0093093_O1s_750eV.ibw/spectrum",
"/SES/0094094_Cl2p_750eV.ibw",
"/SES/0094094_Cl2p_750eV.ibw/spectrum",
"/SES/0094094_O1s_750eV.ibw",
"/SES/0094094_O1s_750eV.ibw/spectrum",
"/SES/0095095_Cl2p_750eV.ibw",
"/SES/0095095_Cl2p_750eV.ibw/spectrum",
"/SES/0095095_O1s_750eV.ibw",
"/SES/0095095_O1s_750eV.ibw/spectrum",
"/SES/0096096_Cl2p_750eV.ibw",
"/SES/0096096_Cl2p_750eV.ibw/spectrum",
"/SES/0096096_O1s_750eV.ibw",
"/SES/0096096_O1s_750eV.ibw/spectrum",
"/SES/0097097_Survey_1000eV.ibw",
"/SES/0097097_Survey_1000eV.ibw/spectrum",
"/SES/0098098_Survey_1000eV.ibw",
"/SES/0098098_Survey_1000eV.ibw/spectrum",
"/SES/0099099_Survey_1000eV.ibw",
"/SES/0099099_Survey_1000eV.ibw/spectrum",
"/SES/0100100_C1s_750eV.ibw",
"/SES/0100100_C1s_750eV.ibw/spectrum",
"/SES/0100100_Mg2s_750eV.ibw",
"/SES/0100100_Mg2s_750eV.ibw/spectrum",
"/SES/0100100_O1s_750eV.ibw",
"/SES/0100100_O1s_750eV.ibw/spectrum",
"/SES/0101101_C1s_750eV.ibw",
"/SES/0101101_C1s_750eV.ibw/spectrum",
"/SES/0101101_Mg2s_750eV.ibw",
"/SES/0101101_Mg2s_750eV.ibw/spectrum",
"/SES/0101101_O1s_750eV.ibw",
"/SES/0101101_O1s_750eV.ibw/spectrum",
"/SES/0102102_C1s_750eV.ibw",
"/SES/0102102_C1s_750eV.ibw/spectrum",
"/SES/0102102_O1s_750eV.ibw",
"/SES/0102102_O1s_750eV.ibw/spectrum",
"/SES/0103103_C1s_750eV.ibw",
"/SES/0103103_C1s_750eV.ibw/spectrum",
"/SES/0103103_Cl2p_750eV.ibw",
"/SES/0103103_Cl2p_750eV.ibw/spectrum",
"/SES/0103103_Mg2s_750eV.ibw",
"/SES/0103103_Mg2s_750eV.ibw/spectrum",
"/SES/0103103_O1s_750eV.ibw",
"/SES/0103103_O1s_750eV.ibw/spectrum",
"/SES/0104104_C1s_750eV.ibw",
"/SES/0104104_C1s_750eV.ibw/spectrum",
"/SES/0104104_Cl2p_750eV.ibw",
"/SES/0104104_Cl2p_750eV.ibw/spectrum",
"/SES/0104104_O1s_750eV.ibw",
"/SES/0104104_O1s_750eV.ibw/spectrum",
"/SES/0105105_C1s_750eV.ibw",
"/SES/0105105_C1s_750eV.ibw/spectrum",
"/SES/0105105_Cl2p_750eV.ibw",
"/SES/0105105_Cl2p_750eV.ibw/spectrum",
"/SES/0105105_O1s_750eV.ibw",
"/SES/0105105_O1s_750eV.ibw/spectrum",
"/SES/0106106_C1s_750eV.ibw",
"/SES/0106106_C1s_750eV.ibw/spectrum",
"/SES/0106106_Cl2p_750eV.ibw",
"/SES/0106106_Cl2p_750eV.ibw/spectrum",
"/SES/0106106_O1s_750eV.ibw",
"/SES/0106106_O1s_750eV.ibw/spectrum",
"/SES/0107107_C1s_750eV.ibw",
"/SES/0107107_C1s_750eV.ibw/spectrum",
"/SES/0107107_Cl2p_750eV_new.ibw",
"/SES/0107107_Cl2p_750eV_new.ibw/spectrum",
"/SES/0107107_O1s_750eV.ibw",
"/SES/0107107_O1s_750eV.ibw/spectrum",
"/SES/0108108_C1s_750eV.ibw",
"/SES/0108108_C1s_750eV.ibw/spectrum",
"/SES/0108108_Cl2p_750eV_new.ibw",
"/SES/0108108_Cl2p_750eV_new.ibw/spectrum",
"/SES/0108108_O1s_750eV.ibw",
"/SES/0108108_O1s_750eV.ibw/spectrum",
"/SES/0109109_C1s_750eV.ibw",
"/SES/0109109_C1s_750eV.ibw/spectrum",
"/SES/0109109_Cl2p_750eV_new.ibw",
"/SES/0109109_Cl2p_750eV_new.ibw/spectrum",
"/SES/0109109_O1s_750eV.ibw",
"/SES/0109109_O1s_750eV.ibw/spectrum",
"/SES/0110110_C1s_750eV.ibw",
"/SES/0110110_C1s_750eV.ibw/spectrum",
"/SES/0110110_Cl2p_750eV_new.ibw",
"/SES/0110110_Cl2p_750eV_new.ibw/spectrum",
"/SES/0110110_O1s_750eV.ibw",
"/SES/0110110_O1s_750eV.ibw/spectrum",
"/SES/0111111_C1s_750eV.ibw",
"/SES/0111111_C1s_750eV.ibw/spectrum",
"/SES/0111111_Cl2p_750eV_new.ibw",
"/SES/0111111_Cl2p_750eV_new.ibw/spectrum",
"/SES/0111111_O1s_750eV.ibw",
"/SES/0111111_O1s_750eV.ibw/spectrum",
"/SES/0112112_Survey_1000eV.ibw",
"/SES/0112112_Survey_1000eV.ibw/spectrum",
"/SES/0113113_C1s_750eV.ibw",
"/SES/0113113_C1s_750eV.ibw/spectrum",
"/SES/0113113_Cl2p_750eV_new.ibw",
"/SES/0113113_Cl2p_750eV_new.ibw/spectrum",
"/SES/0113113_O1s_750eV.ibw",
"/SES/0113113_O1s_750eV.ibw/spectrum",
"/SES/0114114_Cl2p_750eV_new.ibw",
"/SES/0114114_Cl2p_750eV_new.ibw/spectrum",
"/SES/0114114_O1s_750eV.ibw",
"/SES/0114114_O1s_750eV.ibw/spectrum",
"/SES/0115115_Cl2p_750eV_new.ibw",
"/SES/0115115_Cl2p_750eV_new.ibw/spectrum",
"/SES/0115115_O1s_750eV.ibw",
"/SES/0115115_O1s_750eV.ibw/spectrum",
"/SES/0116116_Cl2p_750eV_new.ibw",
"/SES/0116116_Cl2p_750eV_new.ibw/spectrum",
"/SES/0116116_O1s_750eV.ibw",
"/SES/0116116_O1s_750eV.ibw/spectrum",
"/SES/0117117_Cl2p_400eV.ibw",
"/SES/0117117_Cl2p_400eV.ibw/spectrum",
"/SES/0118118_Cl2p_400eV.ibw",
"/SES/0118118_Cl2p_400eV.ibw/spectrum",
"/SES/0119119_Cl2p_400eV.ibw",
"/SES/0119119_Cl2p_400eV.ibw/spectrum",
"/SES/0120120_Cl2p_400eV.ibw",
"/SES/0120120_Cl2p_400eV.ibw/spectrum",
"/SES/0121121_Cl2p_395eV.ibw",
"/SES/0121121_Cl2p_395eV.ibw/spectrum",
"/SES/0122122_Cl2p_395eV.ibw",
"/SES/0122122_Cl2p_395eV.ibw/spectrum",
"/SES/0123123_Cl2p_395eV.ibw",
"/SES/0123123_Cl2p_395eV.ibw/spectrum",
"/SES/0124124_Cl2p_395eV.ibw",
"/SES/0124124_Cl2p_395eV.ibw/spectrum",
"/SES/0125125_Cl2p_395eV.ibw",
"/SES/0125125_Cl2p_395eV.ibw/spectrum",
"/SES/0126126_Cl2p_750eV_new.ibw",
"/SES/0126126_Cl2p_750eV_new.ibw/spectrum",
"/SES/0126126_O1s_750eV.ibw",
"/SES/0126126_O1s_750eV.ibw/spectrum",
"/SES/0127127_Survey_1000eV.ibw",
"/SES/0127127_Survey_1000eV.ibw/spectrum",
"/SES/0128128_Cl2p_750eV_new.ibw",
"/SES/0128128_Cl2p_750eV_new.ibw/spectrum",
"/SES/0128128_Mg2s_750eV.ibw",
"/SES/0128128_Mg2s_750eV.ibw/spectrum",
"/SES/0128128_O1s_750eV.ibw",
"/SES/0128128_O1s_750eV.ibw/spectrum",
"/SES/0129129_Survey_1000eV.ibw",
"/SES/0129129_Survey_1000eV.ibw/spectrum",
"/SES/0130130_C1s_750eV.ibw",
"/SES/0130130_C1s_750eV.ibw/spectrum",
"/SES/0130130_O1s_750eV.ibw",
"/SES/0130130_O1s_750eV.ibw/spectrum",
"/SES/0131131_Cl2p_750eV_new.ibw",
"/SES/0131131_Cl2p_750eV_new.ibw/spectrum",
"/SES/0131131_O1s_750eV.ibw",
"/SES/0131131_O1s_750eV.ibw/spectrum",
"/SES/0132132_Cl2p_750eV_new.ibw",
"/SES/0132132_Cl2p_750eV_new.ibw/spectrum",
"/SES/0132132_O1s_750eV.ibw",
"/SES/0132132_O1s_750eV.ibw/spectrum",
"/SES/0133133_Cl2p_395eV.ibw",
"/SES/0133133_Cl2p_395eV.ibw/spectrum",
"/SES/0134134_Cl2p_750eV_new.ibw",
"/SES/0134134_Cl2p_750eV_new.ibw/spectrum",
"/SES/0134134_O1s_750eV.ibw",
"/SES/0134134_O1s_750eV.ibw/spectrum",
"/SES/0135135_Cl2p_750eV_new.ibw",
"/SES/0135135_Cl2p_750eV_new.ibw/spectrum",
"/SES/0135135_O1s_750eV.ibw",
"/SES/0135135_O1s_750eV.ibw/spectrum",
"/SES/0136136_Cl2p_395eV.ibw",
"/SES/0136136_Cl2p_395eV.ibw/spectrum",
"/SES/0137137_Cl2p_750eV_new.ibw",
"/SES/0137137_Cl2p_750eV_new.ibw/spectrum",
"/SES/0137137_O1s_750eV.ibw",
"/SES/0137137_O1s_750eV.ibw/spectrum",
"/SES/0138138_Cl2p_750eV_new.ibw",
"/SES/0138138_Cl2p_750eV_new.ibw/spectrum",
"/SES/0138138_O1s_750eV.ibw",
"/SES/0138138_O1s_750eV.ibw/spectrum",
"/SES/0139139_Cl2p_750eV_new.ibw",
"/SES/0139139_Cl2p_750eV_new.ibw/spectrum",
"/SES/0139139_O1s_750eV.ibw",
"/SES/0139139_O1s_750eV.ibw/spectrum",
"/SES/0140140_Cl2p_750eV_new.ibw",
"/SES/0140140_Cl2p_750eV_new.ibw/spectrum",
"/SES/0140140_O1s_750eV.ibw",
"/SES/0140140_O1s_750eV.ibw/spectrum",
"/SES/0141141_Cl2p_395eV.ibw",
"/SES/0141141_Cl2p_395eV.ibw/spectrum",
"/SES/0142142_Cl2p_750eV_new.ibw",
"/SES/0142142_Cl2p_750eV_new.ibw/spectrum",
"/SES/0142142_O1s_750eV.ibw",
"/SES/0142142_O1s_750eV.ibw/spectrum",
"/SES/0143143_Cl2p_750eV_new.ibw",
"/SES/0143143_Cl2p_750eV_new.ibw/spectrum",
"/SES/0143143_O1s_750eV.ibw",
"/SES/0143143_O1s_750eV.ibw/spectrum",
"/SES/0144144_Cl2p_750eV_new.ibw",
"/SES/0144144_Cl2p_750eV_new.ibw/spectrum",
"/SES/0144144_O1s_750eV.ibw",
"/SES/0144144_O1s_750eV.ibw/spectrum",
"/SES/0145145_Cl2p_750eV_new.ibw",
"/SES/0145145_Cl2p_750eV_new.ibw/spectrum",
"/SES/0145145_O1s_750eV.ibw",
"/SES/0145145_O1s_750eV.ibw/spectrum",
"/SES/0146146_Cl2p_395eV.ibw",
"/SES/0146146_Cl2p_395eV.ibw/spectrum",
"/SES/0147147_Cl2p_395eV.ibw",
"/SES/0147147_Cl2p_395eV.ibw/spectrum",
"/SES/0148148_C1s_750eV.ibw",
"/SES/0148148_C1s_750eV.ibw/spectrum",
"/SES/0148148_Cl2p_750eV_new.ibw",
"/SES/0148148_Cl2p_750eV_new.ibw/spectrum",
"/SES/0148148_O1s_750eV.ibw",
"/SES/0148148_O1s_750eV.ibw/spectrum",
"/SES/0149149_Cl2p_395eV.ibw",
"/SES/0149149_Cl2p_395eV.ibw/spectrum",
"/SES/0150150_Cl2p_395eV.ibw",
"/SES/0150150_Cl2p_395eV.ibw/spectrum",
"/SES/0151151_C1s_750eV.ibw",
"/SES/0151151_C1s_750eV.ibw/spectrum",
"/SES/0151151_Cl2p_750eV_new.ibw",
"/SES/0151151_Cl2p_750eV_new.ibw/spectrum",
"/SES/0151151_O1s_750eV.ibw",
"/SES/0151151_O1s_750eV.ibw/spectrum",
"/SES/0152152_Cl2p_395eV.ibw",
"/SES/0152152_Cl2p_395eV.ibw/spectrum"
],
"hovertemplate": "<b>%{label} </b> <br> Count: %{value} <br> Path: %{customdata}",
"labels": [
"/",
"/NEXAFS",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/__DATA_TYPES__",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/logs",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5/scan 1",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/__DATA_TYPES__",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/logs",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 1",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 2",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 3",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 4",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5/scan 5",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/__DATA_TYPES__",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/logs",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5/scan 1",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/__DATA_TYPES__",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/logs",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5/scan 1",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/__DATA_TYPES__",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/logs",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5/scan 1",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/__DATA_TYPES__",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/logs",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5/scan 1",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/__DATA_TYPES__",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/logs",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5/scan 1",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/__DATA_TYPES__",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/logs",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5/scan 1",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/__DATA_TYPES__",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/logs",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5/scan 1",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/__DATA_TYPES__",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/logs",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5/scan 1",
"/Notes",
"/Pressure",
"/Pressure/2023-09-18_20.06.44_PC15490_NAPP_Chamber.dat",
"/Pressure/2023-09-18_20.06.44_PC15490_NAPP_Chamber.dat/data_table",
"/Pressure/2023-09-22_10.17.46_PC15490_NAPP_Chamber.dat",
"/Pressure/2023-09-22_10.17.46_PC15490_NAPP_Chamber.dat/data_table",
"/RGA",
"/RGA/RGA3.txt",
"/RGA/RGA3.txt/data_table",
"/RGA/RGA3.txt/table_preamble",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt/data_table",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt/table_preamble",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt/data_table",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt/table_preamble",
"/SES",
"/SES/0001001_Survey_1000eV.ibw",
"/SES/0001001_Survey_1000eV.ibw/spectrum",
"/SES/0002002_Survey_1000eV.ibw",
"/SES/0002002_Survey_1000eV.ibw/spectrum",
"/SES/0003003_Survey_1000eV.ibw",
"/SES/0003003_Survey_1000eV.ibw/spectrum",
"/SES/0004004_Survey_1000eV.ibw",
"/SES/0004004_Survey_1000eV.ibw/spectrum",
"/SES/0005005_C1s_520eV.ibw",
"/SES/0005005_C1s_520eV.ibw/spectrum",
"/SES/0005005_N1s_520eV.ibw",
"/SES/0005005_N1s_520eV.ibw/spectrum",
"/SES/0005005_VB_520eV.ibw",
"/SES/0005005_VB_520eV.ibw/spectrum",
"/SES/0006006_C1s_520eV.ibw",
"/SES/0006006_C1s_520eV.ibw/spectrum",
"/SES/0006006_N1s_520eV.ibw",
"/SES/0006006_N1s_520eV.ibw/spectrum",
"/SES/0006006_VB_520eV.ibw",
"/SES/0006006_VB_520eV.ibw/spectrum",
"/SES/0007007_C1s_520eV.ibw",
"/SES/0007007_C1s_520eV.ibw/spectrum",
"/SES/0007007_N1s_520eV.ibw",
"/SES/0007007_N1s_520eV.ibw/spectrum",
"/SES/0007007_VB_520eV.ibw",
"/SES/0007007_VB_520eV.ibw/spectrum",
"/SES/0008008_C1s_515eV.ibw",
"/SES/0008008_C1s_515eV.ibw/spectrum",
"/SES/0008008_N1s_515eV.ibw",
"/SES/0008008_N1s_515eV.ibw/spectrum",
"/SES/0008008_VB_515eV.ibw",
"/SES/0008008_VB_515eV.ibw/spectrum",
"/SES/0009009_N1s_495eV.ibw",
"/SES/0009009_N1s_495eV.ibw/spectrum",
"/SES/0011011_N1s_495eV.ibw",
"/SES/0011011_N1s_495eV.ibw/spectrum",
"/SES/0012012_N1s_495eV.ibw",
"/SES/0012012_N1s_495eV.ibw/spectrum",
"/SES/0013013_N1s_495eV.ibw",
"/SES/0013013_N1s_495eV.ibw/spectrum",
"/SES/0014014_C1s_495eV.ibw",
"/SES/0014014_C1s_495eV.ibw/spectrum",
"/SES/0014014_N1s_495eV.ibw",
"/SES/0014014_N1s_495eV.ibw/spectrum",
"/SES/0014014_VB_495eV.ibw",
"/SES/0014014_VB_495eV.ibw/spectrum",
"/SES/0015015_C1s_495eV.ibw",
"/SES/0015015_C1s_495eV.ibw/spectrum",
"/SES/0015015_N1s_495eV.ibw",
"/SES/0015015_N1s_495eV.ibw/spectrum",
"/SES/0015015_VB_495eV.ibw",
"/SES/0015015_VB_495eV.ibw/spectrum",
"/SES/0016016_C1s_404eV.ibw",
"/SES/0016016_C1s_404eV.ibw/spectrum",
"/SES/0016016_VB_404eV.ibw",
"/SES/0016016_VB_404eV.ibw/spectrum",
"/SES/0017017_C1s_404eV.ibw",
"/SES/0017017_C1s_404eV.ibw/spectrum",
"/SES/0017017_VB_404eV.ibw",
"/SES/0017017_VB_404eV.ibw/spectrum",
"/SES/0018018_C1s_495eV.ibw",
"/SES/0018018_C1s_495eV.ibw/spectrum",
"/SES/0018018_N1s_495eV.ibw",
"/SES/0018018_N1s_495eV.ibw/spectrum",
"/SES/0018018_VB_495eV.ibw",
"/SES/0018018_VB_495eV.ibw/spectrum",
"/SES/0019019_C1s_401eV.ibw",
"/SES/0019019_C1s_401eV.ibw/spectrum",
"/SES/0020020_N1s_495eV.ibw",
"/SES/0020020_N1s_495eV.ibw/spectrum",
"/SES/0021021_C1s_401eV.ibw",
"/SES/0021021_C1s_401eV.ibw/spectrum",
"/SES/0021021_VB_401eV.ibw",
"/SES/0021021_VB_401eV.ibw/spectrum",
"/SES/0022022_C1s_495eV.ibw",
"/SES/0022022_C1s_495eV.ibw/spectrum",
"/SES/0022022_N1s_495eV.ibw",
"/SES/0022022_N1s_495eV.ibw/spectrum",
"/SES/0022022_VB_495eV.ibw",
"/SES/0022022_VB_495eV.ibw/spectrum",
"/SES/0023023_C1s_403.34eV.ibw",
"/SES/0023023_C1s_403.34eV.ibw/spectrum",
"/SES/0023023_VB_403.34eV.ibw",
"/SES/0023023_VB_403.34eV.ibw/spectrum",
"/SES/0024024_C1s_403.34eV.ibw",
"/SES/0024024_C1s_403.34eV.ibw/spectrum",
"/SES/0024024_VB_403.34eV.ibw",
"/SES/0024024_VB_403.34eV.ibw/spectrum",
"/SES/0025025_C1s_403.34eV.ibw",
"/SES/0025025_C1s_403.34eV.ibw/spectrum",
"/SES/0025025_VB_403.34eV.ibw",
"/SES/0025025_VB_403.34eV.ibw/spectrum",
"/SES/0026026_C1s_495eV.ibw",
"/SES/0026026_C1s_495eV.ibw/spectrum",
"/SES/0026026_N1s_495eV.ibw",
"/SES/0026026_N1s_495eV.ibw/spectrum",
"/SES/0026026_VB_495eV.ibw",
"/SES/0026026_VB_495eV.ibw/spectrum",
"/SES/0027027_C1s_407eV.ibw",
"/SES/0027027_C1s_407eV.ibw/spectrum",
"/SES/0027027_VB_407eV.ibw",
"/SES/0027027_VB_407eV.ibw/spectrum",
"/SES/0028028_C1s_495eV.ibw",
"/SES/0028028_C1s_495eV.ibw/spectrum",
"/SES/0028028_N1s_495eV.ibw",
"/SES/0028028_N1s_495eV.ibw/spectrum",
"/SES/0028028_VB_495eV.ibw",
"/SES/0028028_VB_495eV.ibw/spectrum",
"/SES/0029029_Survey_495eV.ibw",
"/SES/0029029_Survey_495eV.ibw/spectrum",
"/SES/0030030_Survey_1000eV.ibw",
"/SES/0030030_Survey_1000eV.ibw/spectrum",
"/SES/0031031_Survey_495eV.ibw",
"/SES/0031031_Survey_495eV.ibw/spectrum",
"/SES/0032032_Survey_495eV.ibw",
"/SES/0032032_Survey_495eV.ibw/spectrum",
"/SES/0033033_Survey_495eV.ibw",
"/SES/0033033_Survey_495eV.ibw/spectrum",
"/SES/0034034_C1s_495eV.ibw",
"/SES/0034034_C1s_495eV.ibw/spectrum",
"/SES/0034034_N1s_495eV.ibw",
"/SES/0034034_N1s_495eV.ibw/spectrum",
"/SES/0035035_N1s_495eV.ibw",
"/SES/0035035_N1s_495eV.ibw/spectrum",
"/SES/0036036_C1s_495eV.ibw",
"/SES/0036036_C1s_495eV.ibw/spectrum",
"/SES/0036036_N1s_495eV.ibw",
"/SES/0036036_N1s_495eV.ibw/spectrum",
"/SES/0037037_C1s_495eV.ibw",
"/SES/0037037_C1s_495eV.ibw/spectrum",
"/SES/0037037_N1s_495eV.ibw",
"/SES/0037037_N1s_495eV.ibw/spectrum",
"/SES/0037037_VB_495eV.ibw",
"/SES/0037037_VB_495eV.ibw/spectrum",
"/SES/0038038_C1s_495eV.ibw",
"/SES/0038038_C1s_495eV.ibw/spectrum",
"/SES/0038038_N1s_495eV.ibw",
"/SES/0038038_N1s_495eV.ibw/spectrum",
"/SES/0038038_VB_495eV.ibw",
"/SES/0038038_VB_495eV.ibw/spectrum",
"/SES/0039039_C1s_403.34eV.ibw",
"/SES/0039039_C1s_403.34eV.ibw/spectrum",
"/SES/0040040_C1s_403.34eV.ibw",
"/SES/0040040_C1s_403.34eV.ibw/spectrum",
"/SES/0041041_C1s_403.34eV.ibw",
"/SES/0041041_C1s_403.34eV.ibw/spectrum",
"/SES/0041041_VB_403.34eV.ibw",
"/SES/0041041_VB_403.34eV.ibw/spectrum",
"/SES/0042042_Survey_1000eV.ibw",
"/SES/0042042_Survey_1000eV.ibw/spectrum",
"/SES/0044044_C1s_495eV.ibw",
"/SES/0044044_C1s_495eV.ibw/spectrum",
"/SES/0044044_N1s_495eV.ibw",
"/SES/0044044_N1s_495eV.ibw/spectrum",
"/SES/0044044_VB_495eV.ibw",
"/SES/0044044_VB_495eV.ibw/spectrum",
"/SES/0045045_Survey_495eV.ibw",
"/SES/0045045_Survey_495eV.ibw/spectrum",
"/SES/0046046_C1s_495eV.ibw",
"/SES/0046046_C1s_495eV.ibw/spectrum",
"/SES/0046046_N1s_495eV.ibw",
"/SES/0046046_N1s_495eV.ibw/spectrum",
"/SES/0046046_VB_495eV.ibw",
"/SES/0046046_VB_495eV.ibw/spectrum",
"/SES/0047047_N1s_495eV.ibw",
"/SES/0047047_N1s_495eV.ibw/spectrum",
"/SES/0048048_Survey_495eV.ibw",
"/SES/0048048_Survey_495eV.ibw/spectrum",
"/SES/0049049_C1s_495eV.ibw",
"/SES/0049049_C1s_495eV.ibw/spectrum",
"/SES/0049049_N1s_495eV.ibw",
"/SES/0049049_N1s_495eV.ibw/spectrum",
"/SES/0049049_VB_495eV.ibw",
"/SES/0049049_VB_495eV.ibw/spectrum",
"/SES/0051051_VB_403.34eV.ibw",
"/SES/0051051_VB_403.34eV.ibw/spectrum",
"/SES/0052052_C1s_403.34eV.ibw",
"/SES/0052052_C1s_403.34eV.ibw/spectrum",
"/SES/0052052_VB_403.34eV.ibw",
"/SES/0052052_VB_403.34eV.ibw/spectrum",
"/SES/0053053_C1s_401eV.ibw",
"/SES/0053053_C1s_401eV.ibw/spectrum",
"/SES/0054054_VB_401eV.ibw",
"/SES/0054054_VB_401eV.ibw/spectrum",
"/SES/0055055_C1s_401eV.ibw",
"/SES/0055055_C1s_401eV.ibw/spectrum",
"/SES/0055055_VB_401eV.ibw",
"/SES/0055055_VB_401eV.ibw/spectrum",
"/SES/0056056_C1s_495eV.ibw",
"/SES/0056056_C1s_495eV.ibw/spectrum",
"/SES/0056056_N1s_495eV.ibw",
"/SES/0056056_N1s_495eV.ibw/spectrum",
"/SES/0056056_VB_495eV.ibw",
"/SES/0056056_VB_495eV.ibw/spectrum",
"/SES/0057057_VB_401eV.ibw",
"/SES/0057057_VB_401eV.ibw/spectrum",
"/SES/0058058_VB_401eV.ibw",
"/SES/0058058_VB_401eV.ibw/spectrum",
"/SES/0059059_C1s_403.34eV.ibw",
"/SES/0059059_C1s_403.34eV.ibw/spectrum",
"/SES/0059059_VB_403.34eV.ibw",
"/SES/0059059_VB_403.34eV.ibw/spectrum",
"/SES/0060060_C1s_403.34eV.ibw",
"/SES/0060060_C1s_403.34eV.ibw/spectrum",
"/SES/0060060_VB_403.34eV.ibw",
"/SES/0060060_VB_403.34eV.ibw/spectrum",
"/SES/0061061_C1s_403.34eV.ibw",
"/SES/0061061_C1s_403.34eV.ibw/spectrum",
"/SES/0061061_VB_403.34eV.ibw",
"/SES/0061061_VB_403.34eV.ibw/spectrum",
"/SES/0063063_C1s_495eV.ibw",
"/SES/0063063_C1s_495eV.ibw/spectrum",
"/SES/0064064_C1s_495eV.ibw",
"/SES/0064064_C1s_495eV.ibw/spectrum",
"/SES/0065065_C1s_495eV.ibw",
"/SES/0065065_C1s_495eV.ibw/spectrum",
"/SES/0066066_C1s_495eV.ibw",
"/SES/0066066_C1s_495eV.ibw/spectrum",
"/SES/0068068_C1s_495eV.ibw",
"/SES/0068068_C1s_495eV.ibw/spectrum",
"/SES/0068068_N1s_495eV.ibw",
"/SES/0068068_N1s_495eV.ibw/spectrum",
"/SES/0069069_C1s_495eV.ibw",
"/SES/0069069_C1s_495eV.ibw/spectrum",
"/SES/0069069_N1s_495eV.ibw",
"/SES/0069069_N1s_495eV.ibw/spectrum",
"/SES/0070070_Survey_1000eV.ibw",
"/SES/0070070_Survey_1000eV.ibw/spectrum",
"/SES/0071071_C1s_495eV.ibw",
"/SES/0071071_C1s_495eV.ibw/spectrum",
"/SES/0071071_N1s_495eV.ibw",
"/SES/0071071_N1s_495eV.ibw/spectrum",
"/SES/0072072_C1s_403.34eV.ibw",
"/SES/0072072_C1s_403.34eV.ibw/spectrum",
"/SES/0072072_VB_403.34eV.ibw",
"/SES/0072072_VB_403.34eV.ibw/spectrum",
"/SES/0073073_C1s_403.34eV.ibw",
"/SES/0073073_C1s_403.34eV.ibw/spectrum",
"/SES/0073073_VB_403.34eV_short.ibw",
"/SES/0073073_VB_403.34eV_short.ibw/spectrum",
"/SES/0074074_Survey_1000eV.ibw",
"/SES/0074074_Survey_1000eV.ibw/spectrum",
"/SES/0075075_Survey_1000eV.ibw",
"/SES/0075075_Survey_1000eV.ibw/spectrum",
"/SES/0076076_C1s_403.34eV.ibw",
"/SES/0076076_C1s_403.34eV.ibw/spectrum",
"/SES/0076076_VB_403.34eV_short.ibw",
"/SES/0076076_VB_403.34eV_short.ibw/spectrum",
"/SES/0077077_C1s_403.34eV.ibw",
"/SES/0077077_C1s_403.34eV.ibw/spectrum",
"/SES/0077077_VB_403.34eV_short.ibw",
"/SES/0077077_VB_403.34eV_short.ibw/spectrum",
"/SES/0078078_C1s_403.34eV.ibw",
"/SES/0078078_C1s_403.34eV.ibw/spectrum",
"/SES/0078078_VB_403.34eV_short.ibw",
"/SES/0078078_VB_403.34eV_short.ibw/spectrum",
"/SES/0079079_C1s_403.34eV.ibw",
"/SES/0079079_C1s_403.34eV.ibw/spectrum",
"/SES/0079079_VB_403.34eV_short.ibw",
"/SES/0079079_VB_403.34eV_short.ibw/spectrum",
"/SES/0080080_C1s_403.34eV.ibw",
"/SES/0080080_C1s_403.34eV.ibw/spectrum",
"/SES/0080080_VB_403.34eV_short.ibw",
"/SES/0080080_VB_403.34eV_short.ibw/spectrum",
"/SES/0081081_C1s_403.34eV.ibw",
"/SES/0081081_C1s_403.34eV.ibw/spectrum",
"/SES/0081081_VB_403.34eV_short.ibw",
"/SES/0081081_VB_403.34eV_short.ibw/spectrum",
"/SES/0082082_C1s_403.34eV.ibw",
"/SES/0082082_C1s_403.34eV.ibw/spectrum",
"/SES/0082082_VB_403.34eV_short.ibw",
"/SES/0082082_VB_403.34eV_short.ibw/spectrum",
"/SES/0083083_VB_403.34eV_short.ibw",
"/SES/0083083_VB_403.34eV_short.ibw/spectrum",
"/SES/0084084_VB_403.34eV_short.ibw",
"/SES/0084084_VB_403.34eV_short.ibw/spectrum",
"/SES/0085085_Survey_1000eV.ibw",
"/SES/0085085_Survey_1000eV.ibw/spectrum",
"/SES/0086086_Survey_1000eV.ibw",
"/SES/0086086_Survey_1000eV.ibw/spectrum",
"/SES/0087087_O1s_750.ibw",
"/SES/0087087_O1s_750.ibw/spectrum",
"/SES/0088088_O1s_750.ibw",
"/SES/0088088_O1s_750.ibw/spectrum",
"/SES/0089089_O1s_750eV.ibw",
"/SES/0089089_O1s_750eV.ibw/spectrum",
"/SES/0090090_Cl2p_750eV.ibw",
"/SES/0090090_Cl2p_750eV.ibw/spectrum",
"/SES/0090090_Mg2s_750eV.ibw",
"/SES/0090090_Mg2s_750eV.ibw/spectrum",
"/SES/0090090_O1s_750eV.ibw",
"/SES/0090090_O1s_750eV.ibw/spectrum",
"/SES/0091091_Cl2p_750eV.ibw",
"/SES/0091091_Cl2p_750eV.ibw/spectrum",
"/SES/0092092_Cl2p_750eV.ibw",
"/SES/0092092_Cl2p_750eV.ibw/spectrum",
"/SES/0092092_O1s_750eV.ibw",
"/SES/0092092_O1s_750eV.ibw/spectrum",
"/SES/0093093_Cl2p_750eV.ibw",
"/SES/0093093_Cl2p_750eV.ibw/spectrum",
"/SES/0093093_O1s_750eV.ibw",
"/SES/0093093_O1s_750eV.ibw/spectrum",
"/SES/0094094_Cl2p_750eV.ibw",
"/SES/0094094_Cl2p_750eV.ibw/spectrum",
"/SES/0094094_O1s_750eV.ibw",
"/SES/0094094_O1s_750eV.ibw/spectrum",
"/SES/0095095_Cl2p_750eV.ibw",
"/SES/0095095_Cl2p_750eV.ibw/spectrum",
"/SES/0095095_O1s_750eV.ibw",
"/SES/0095095_O1s_750eV.ibw/spectrum",
"/SES/0096096_Cl2p_750eV.ibw",
"/SES/0096096_Cl2p_750eV.ibw/spectrum",
"/SES/0096096_O1s_750eV.ibw",
"/SES/0096096_O1s_750eV.ibw/spectrum",
"/SES/0097097_Survey_1000eV.ibw",
"/SES/0097097_Survey_1000eV.ibw/spectrum",
"/SES/0098098_Survey_1000eV.ibw",
"/SES/0098098_Survey_1000eV.ibw/spectrum",
"/SES/0099099_Survey_1000eV.ibw",
"/SES/0099099_Survey_1000eV.ibw/spectrum",
"/SES/0100100_C1s_750eV.ibw",
"/SES/0100100_C1s_750eV.ibw/spectrum",
"/SES/0100100_Mg2s_750eV.ibw",
"/SES/0100100_Mg2s_750eV.ibw/spectrum",
"/SES/0100100_O1s_750eV.ibw",
"/SES/0100100_O1s_750eV.ibw/spectrum",
"/SES/0101101_C1s_750eV.ibw",
"/SES/0101101_C1s_750eV.ibw/spectrum",
"/SES/0101101_Mg2s_750eV.ibw",
"/SES/0101101_Mg2s_750eV.ibw/spectrum",
"/SES/0101101_O1s_750eV.ibw",
"/SES/0101101_O1s_750eV.ibw/spectrum",
"/SES/0102102_C1s_750eV.ibw",
"/SES/0102102_C1s_750eV.ibw/spectrum",
"/SES/0102102_O1s_750eV.ibw",
"/SES/0102102_O1s_750eV.ibw/spectrum",
"/SES/0103103_C1s_750eV.ibw",
"/SES/0103103_C1s_750eV.ibw/spectrum",
"/SES/0103103_Cl2p_750eV.ibw",
"/SES/0103103_Cl2p_750eV.ibw/spectrum",
"/SES/0103103_Mg2s_750eV.ibw",
"/SES/0103103_Mg2s_750eV.ibw/spectrum",
"/SES/0103103_O1s_750eV.ibw",
"/SES/0103103_O1s_750eV.ibw/spectrum",
"/SES/0104104_C1s_750eV.ibw",
"/SES/0104104_C1s_750eV.ibw/spectrum",
"/SES/0104104_Cl2p_750eV.ibw",
"/SES/0104104_Cl2p_750eV.ibw/spectrum",
"/SES/0104104_O1s_750eV.ibw",
"/SES/0104104_O1s_750eV.ibw/spectrum",
"/SES/0105105_C1s_750eV.ibw",
"/SES/0105105_C1s_750eV.ibw/spectrum",
"/SES/0105105_Cl2p_750eV.ibw",
"/SES/0105105_Cl2p_750eV.ibw/spectrum",
"/SES/0105105_O1s_750eV.ibw",
"/SES/0105105_O1s_750eV.ibw/spectrum",
"/SES/0106106_C1s_750eV.ibw",
"/SES/0106106_C1s_750eV.ibw/spectrum",
"/SES/0106106_Cl2p_750eV.ibw",
"/SES/0106106_Cl2p_750eV.ibw/spectrum",
"/SES/0106106_O1s_750eV.ibw",
"/SES/0106106_O1s_750eV.ibw/spectrum",
"/SES/0107107_C1s_750eV.ibw",
"/SES/0107107_C1s_750eV.ibw/spectrum",
"/SES/0107107_Cl2p_750eV_new.ibw",
"/SES/0107107_Cl2p_750eV_new.ibw/spectrum",
"/SES/0107107_O1s_750eV.ibw",
"/SES/0107107_O1s_750eV.ibw/spectrum",
"/SES/0108108_C1s_750eV.ibw",
"/SES/0108108_C1s_750eV.ibw/spectrum",
"/SES/0108108_Cl2p_750eV_new.ibw",
"/SES/0108108_Cl2p_750eV_new.ibw/spectrum",
"/SES/0108108_O1s_750eV.ibw",
"/SES/0108108_O1s_750eV.ibw/spectrum",
"/SES/0109109_C1s_750eV.ibw",
"/SES/0109109_C1s_750eV.ibw/spectrum",
"/SES/0109109_Cl2p_750eV_new.ibw",
"/SES/0109109_Cl2p_750eV_new.ibw/spectrum",
"/SES/0109109_O1s_750eV.ibw",
"/SES/0109109_O1s_750eV.ibw/spectrum",
"/SES/0110110_C1s_750eV.ibw",
"/SES/0110110_C1s_750eV.ibw/spectrum",
"/SES/0110110_Cl2p_750eV_new.ibw",
"/SES/0110110_Cl2p_750eV_new.ibw/spectrum",
"/SES/0110110_O1s_750eV.ibw",
"/SES/0110110_O1s_750eV.ibw/spectrum",
"/SES/0111111_C1s_750eV.ibw",
"/SES/0111111_C1s_750eV.ibw/spectrum",
"/SES/0111111_Cl2p_750eV_new.ibw",
"/SES/0111111_Cl2p_750eV_new.ibw/spectrum",
"/SES/0111111_O1s_750eV.ibw",
"/SES/0111111_O1s_750eV.ibw/spectrum",
"/SES/0112112_Survey_1000eV.ibw",
"/SES/0112112_Survey_1000eV.ibw/spectrum",
"/SES/0113113_C1s_750eV.ibw",
"/SES/0113113_C1s_750eV.ibw/spectrum",
"/SES/0113113_Cl2p_750eV_new.ibw",
"/SES/0113113_Cl2p_750eV_new.ibw/spectrum",
"/SES/0113113_O1s_750eV.ibw",
"/SES/0113113_O1s_750eV.ibw/spectrum",
"/SES/0114114_Cl2p_750eV_new.ibw",
"/SES/0114114_Cl2p_750eV_new.ibw/spectrum",
"/SES/0114114_O1s_750eV.ibw",
"/SES/0114114_O1s_750eV.ibw/spectrum",
"/SES/0115115_Cl2p_750eV_new.ibw",
"/SES/0115115_Cl2p_750eV_new.ibw/spectrum",
"/SES/0115115_O1s_750eV.ibw",
"/SES/0115115_O1s_750eV.ibw/spectrum",
"/SES/0116116_Cl2p_750eV_new.ibw",
"/SES/0116116_Cl2p_750eV_new.ibw/spectrum",
"/SES/0116116_O1s_750eV.ibw",
"/SES/0116116_O1s_750eV.ibw/spectrum",
"/SES/0117117_Cl2p_400eV.ibw",
"/SES/0117117_Cl2p_400eV.ibw/spectrum",
"/SES/0118118_Cl2p_400eV.ibw",
"/SES/0118118_Cl2p_400eV.ibw/spectrum",
"/SES/0119119_Cl2p_400eV.ibw",
"/SES/0119119_Cl2p_400eV.ibw/spectrum",
"/SES/0120120_Cl2p_400eV.ibw",
"/SES/0120120_Cl2p_400eV.ibw/spectrum",
"/SES/0121121_Cl2p_395eV.ibw",
"/SES/0121121_Cl2p_395eV.ibw/spectrum",
"/SES/0122122_Cl2p_395eV.ibw",
"/SES/0122122_Cl2p_395eV.ibw/spectrum",
"/SES/0123123_Cl2p_395eV.ibw",
"/SES/0123123_Cl2p_395eV.ibw/spectrum",
"/SES/0124124_Cl2p_395eV.ibw",
"/SES/0124124_Cl2p_395eV.ibw/spectrum",
"/SES/0125125_Cl2p_395eV.ibw",
"/SES/0125125_Cl2p_395eV.ibw/spectrum",
"/SES/0126126_Cl2p_750eV_new.ibw",
"/SES/0126126_Cl2p_750eV_new.ibw/spectrum",
"/SES/0126126_O1s_750eV.ibw",
"/SES/0126126_O1s_750eV.ibw/spectrum",
"/SES/0127127_Survey_1000eV.ibw",
"/SES/0127127_Survey_1000eV.ibw/spectrum",
"/SES/0128128_Cl2p_750eV_new.ibw",
"/SES/0128128_Cl2p_750eV_new.ibw/spectrum",
"/SES/0128128_Mg2s_750eV.ibw",
"/SES/0128128_Mg2s_750eV.ibw/spectrum",
"/SES/0128128_O1s_750eV.ibw",
"/SES/0128128_O1s_750eV.ibw/spectrum",
"/SES/0129129_Survey_1000eV.ibw",
"/SES/0129129_Survey_1000eV.ibw/spectrum",
"/SES/0130130_C1s_750eV.ibw",
"/SES/0130130_C1s_750eV.ibw/spectrum",
"/SES/0130130_O1s_750eV.ibw",
"/SES/0130130_O1s_750eV.ibw/spectrum",
"/SES/0131131_Cl2p_750eV_new.ibw",
"/SES/0131131_Cl2p_750eV_new.ibw/spectrum",
"/SES/0131131_O1s_750eV.ibw",
"/SES/0131131_O1s_750eV.ibw/spectrum",
"/SES/0132132_Cl2p_750eV_new.ibw",
"/SES/0132132_Cl2p_750eV_new.ibw/spectrum",
"/SES/0132132_O1s_750eV.ibw",
"/SES/0132132_O1s_750eV.ibw/spectrum",
"/SES/0133133_Cl2p_395eV.ibw",
"/SES/0133133_Cl2p_395eV.ibw/spectrum",
"/SES/0134134_Cl2p_750eV_new.ibw",
"/SES/0134134_Cl2p_750eV_new.ibw/spectrum",
"/SES/0134134_O1s_750eV.ibw",
"/SES/0134134_O1s_750eV.ibw/spectrum",
"/SES/0135135_Cl2p_750eV_new.ibw",
"/SES/0135135_Cl2p_750eV_new.ibw/spectrum",
"/SES/0135135_O1s_750eV.ibw",
"/SES/0135135_O1s_750eV.ibw/spectrum",
"/SES/0136136_Cl2p_395eV.ibw",
"/SES/0136136_Cl2p_395eV.ibw/spectrum",
"/SES/0137137_Cl2p_750eV_new.ibw",
"/SES/0137137_Cl2p_750eV_new.ibw/spectrum",
"/SES/0137137_O1s_750eV.ibw",
"/SES/0137137_O1s_750eV.ibw/spectrum",
"/SES/0138138_Cl2p_750eV_new.ibw",
"/SES/0138138_Cl2p_750eV_new.ibw/spectrum",
"/SES/0138138_O1s_750eV.ibw",
"/SES/0138138_O1s_750eV.ibw/spectrum",
"/SES/0139139_Cl2p_750eV_new.ibw",
"/SES/0139139_Cl2p_750eV_new.ibw/spectrum",
"/SES/0139139_O1s_750eV.ibw",
"/SES/0139139_O1s_750eV.ibw/spectrum",
"/SES/0140140_Cl2p_750eV_new.ibw",
"/SES/0140140_Cl2p_750eV_new.ibw/spectrum",
"/SES/0140140_O1s_750eV.ibw",
"/SES/0140140_O1s_750eV.ibw/spectrum",
"/SES/0141141_Cl2p_395eV.ibw",
"/SES/0141141_Cl2p_395eV.ibw/spectrum",
"/SES/0142142_Cl2p_750eV_new.ibw",
"/SES/0142142_Cl2p_750eV_new.ibw/spectrum",
"/SES/0142142_O1s_750eV.ibw",
"/SES/0142142_O1s_750eV.ibw/spectrum",
"/SES/0143143_Cl2p_750eV_new.ibw",
"/SES/0143143_Cl2p_750eV_new.ibw/spectrum",
"/SES/0143143_O1s_750eV.ibw",
"/SES/0143143_O1s_750eV.ibw/spectrum",
"/SES/0144144_Cl2p_750eV_new.ibw",
"/SES/0144144_Cl2p_750eV_new.ibw/spectrum",
"/SES/0144144_O1s_750eV.ibw",
"/SES/0144144_O1s_750eV.ibw/spectrum",
"/SES/0145145_Cl2p_750eV_new.ibw",
"/SES/0145145_Cl2p_750eV_new.ibw/spectrum",
"/SES/0145145_O1s_750eV.ibw",
"/SES/0145145_O1s_750eV.ibw/spectrum",
"/SES/0146146_Cl2p_395eV.ibw",
"/SES/0146146_Cl2p_395eV.ibw/spectrum",
"/SES/0147147_Cl2p_395eV.ibw",
"/SES/0147147_Cl2p_395eV.ibw/spectrum",
"/SES/0148148_C1s_750eV.ibw",
"/SES/0148148_C1s_750eV.ibw/spectrum",
"/SES/0148148_Cl2p_750eV_new.ibw",
"/SES/0148148_Cl2p_750eV_new.ibw/spectrum",
"/SES/0148148_O1s_750eV.ibw",
"/SES/0148148_O1s_750eV.ibw/spectrum",
"/SES/0149149_Cl2p_395eV.ibw",
"/SES/0149149_Cl2p_395eV.ibw/spectrum",
"/SES/0150150_Cl2p_395eV.ibw",
"/SES/0150150_Cl2p_395eV.ibw/spectrum",
"/SES/0151151_C1s_750eV.ibw",
"/SES/0151151_C1s_750eV.ibw/spectrum",
"/SES/0151151_Cl2p_750eV_new.ibw",
"/SES/0151151_Cl2p_750eV_new.ibw/spectrum",
"/SES/0151151_O1s_750eV.ibw",
"/SES/0151151_O1s_750eV.ibw/spectrum",
"/SES/0152152_Cl2p_395eV.ibw",
"/SES/0152152_Cl2p_395eV.ibw/spectrum"
],
"name": "",
"parents": [
"",
"/",
"/NEXAFS",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5",
"/NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.h5",
"/NEXAFS",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS/0002_20230922_160137_N_K_edge_Yanisha3.h5",
"/NEXAFS",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5",
"/NEXAFS/0048_20230922_075708_O_K_edge_Yang.h5",
"/NEXAFS",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5",
"/NEXAFS/0049_20230922_081328_O_K_edge_Yang.h5",
"/NEXAFS",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5",
"/NEXAFS/0050_20230922_082003_O_K_edge_Yang.h5",
"/NEXAFS",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5",
"/NEXAFS/0051_20230922_084410_O_K_edge_LL.h5",
"/NEXAFS",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5",
"/NEXAFS/0052_20230922_085103_O_K_edge_LL.h5",
"/NEXAFS",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5",
"/NEXAFS/0053_20230922_085154_O_K_edge_LL.h5",
"/NEXAFS",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5",
"/NEXAFS/0054_20230922_090257_O_K_edge_LL.h5",
"/NEXAFS",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5",
"/NEXAFS/0055_20230922_091352_N_K_edge_Yanisha3.h5",
"/",
"/",
"/Pressure",
"/Pressure/2023-09-18_20.06.44_PC15490_NAPP_Chamber.dat",
"/Pressure",
"/Pressure/2023-09-22_10.17.46_PC15490_NAPP_Chamber.dat",
"/",
"/RGA",
"/RGA/RGA3.txt",
"/RGA/RGA3.txt",
"/RGA",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt",
"/RGA/rga1.rga_Jun_24_2023_12-38-45_AM.txt",
"/RGA",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt",
"/RGA/rga1_Jun_21_2023_09-08-44_AM.txt",
"/",
"/SES",
"/SES/0001001_Survey_1000eV.ibw",
"/SES",
"/SES/0002002_Survey_1000eV.ibw",
"/SES",
"/SES/0003003_Survey_1000eV.ibw",
"/SES",
"/SES/0004004_Survey_1000eV.ibw",
"/SES",
"/SES/0005005_C1s_520eV.ibw",
"/SES",
"/SES/0005005_N1s_520eV.ibw",
"/SES",
"/SES/0005005_VB_520eV.ibw",
"/SES",
"/SES/0006006_C1s_520eV.ibw",
"/SES",
"/SES/0006006_N1s_520eV.ibw",
"/SES",
"/SES/0006006_VB_520eV.ibw",
"/SES",
"/SES/0007007_C1s_520eV.ibw",
"/SES",
"/SES/0007007_N1s_520eV.ibw",
"/SES",
"/SES/0007007_VB_520eV.ibw",
"/SES",
"/SES/0008008_C1s_515eV.ibw",
"/SES",
"/SES/0008008_N1s_515eV.ibw",
"/SES",
"/SES/0008008_VB_515eV.ibw",
"/SES",
"/SES/0009009_N1s_495eV.ibw",
"/SES",
"/SES/0011011_N1s_495eV.ibw",
"/SES",
"/SES/0012012_N1s_495eV.ibw",
"/SES",
"/SES/0013013_N1s_495eV.ibw",
"/SES",
"/SES/0014014_C1s_495eV.ibw",
"/SES",
"/SES/0014014_N1s_495eV.ibw",
"/SES",
"/SES/0014014_VB_495eV.ibw",
"/SES",
"/SES/0015015_C1s_495eV.ibw",
"/SES",
"/SES/0015015_N1s_495eV.ibw",
"/SES",
"/SES/0015015_VB_495eV.ibw",
"/SES",
"/SES/0016016_C1s_404eV.ibw",
"/SES",
"/SES/0016016_VB_404eV.ibw",
"/SES",
"/SES/0017017_C1s_404eV.ibw",
"/SES",
"/SES/0017017_VB_404eV.ibw",
"/SES",
"/SES/0018018_C1s_495eV.ibw",
"/SES",
"/SES/0018018_N1s_495eV.ibw",
"/SES",
"/SES/0018018_VB_495eV.ibw",
"/SES",
"/SES/0019019_C1s_401eV.ibw",
"/SES",
"/SES/0020020_N1s_495eV.ibw",
"/SES",
"/SES/0021021_C1s_401eV.ibw",
"/SES",
"/SES/0021021_VB_401eV.ibw",
"/SES",
"/SES/0022022_C1s_495eV.ibw",
"/SES",
"/SES/0022022_N1s_495eV.ibw",
"/SES",
"/SES/0022022_VB_495eV.ibw",
"/SES",
"/SES/0023023_C1s_403.34eV.ibw",
"/SES",
"/SES/0023023_VB_403.34eV.ibw",
"/SES",
"/SES/0024024_C1s_403.34eV.ibw",
"/SES",
"/SES/0024024_VB_403.34eV.ibw",
"/SES",
"/SES/0025025_C1s_403.34eV.ibw",
"/SES",
"/SES/0025025_VB_403.34eV.ibw",
"/SES",
"/SES/0026026_C1s_495eV.ibw",
"/SES",
"/SES/0026026_N1s_495eV.ibw",
"/SES",
"/SES/0026026_VB_495eV.ibw",
"/SES",
"/SES/0027027_C1s_407eV.ibw",
"/SES",
"/SES/0027027_VB_407eV.ibw",
"/SES",
"/SES/0028028_C1s_495eV.ibw",
"/SES",
"/SES/0028028_N1s_495eV.ibw",
"/SES",
"/SES/0028028_VB_495eV.ibw",
"/SES",
"/SES/0029029_Survey_495eV.ibw",
"/SES",
"/SES/0030030_Survey_1000eV.ibw",
"/SES",
"/SES/0031031_Survey_495eV.ibw",
"/SES",
"/SES/0032032_Survey_495eV.ibw",
"/SES",
"/SES/0033033_Survey_495eV.ibw",
"/SES",
"/SES/0034034_C1s_495eV.ibw",
"/SES",
"/SES/0034034_N1s_495eV.ibw",
"/SES",
"/SES/0035035_N1s_495eV.ibw",
"/SES",
"/SES/0036036_C1s_495eV.ibw",
"/SES",
"/SES/0036036_N1s_495eV.ibw",
"/SES",
"/SES/0037037_C1s_495eV.ibw",
"/SES",
"/SES/0037037_N1s_495eV.ibw",
"/SES",
"/SES/0037037_VB_495eV.ibw",
"/SES",
"/SES/0038038_C1s_495eV.ibw",
"/SES",
"/SES/0038038_N1s_495eV.ibw",
"/SES",
"/SES/0038038_VB_495eV.ibw",
"/SES",
"/SES/0039039_C1s_403.34eV.ibw",
"/SES",
"/SES/0040040_C1s_403.34eV.ibw",
"/SES",
"/SES/0041041_C1s_403.34eV.ibw",
"/SES",
"/SES/0041041_VB_403.34eV.ibw",
"/SES",
"/SES/0042042_Survey_1000eV.ibw",
"/SES",
"/SES/0044044_C1s_495eV.ibw",
"/SES",
"/SES/0044044_N1s_495eV.ibw",
"/SES",
"/SES/0044044_VB_495eV.ibw",
"/SES",
"/SES/0045045_Survey_495eV.ibw",
"/SES",
"/SES/0046046_C1s_495eV.ibw",
"/SES",
"/SES/0046046_N1s_495eV.ibw",
"/SES",
"/SES/0046046_VB_495eV.ibw",
"/SES",
"/SES/0047047_N1s_495eV.ibw",
"/SES",
"/SES/0048048_Survey_495eV.ibw",
"/SES",
"/SES/0049049_C1s_495eV.ibw",
"/SES",
"/SES/0049049_N1s_495eV.ibw",
"/SES",
"/SES/0049049_VB_495eV.ibw",
"/SES",
"/SES/0051051_VB_403.34eV.ibw",
"/SES",
"/SES/0052052_C1s_403.34eV.ibw",
"/SES",
"/SES/0052052_VB_403.34eV.ibw",
"/SES",
"/SES/0053053_C1s_401eV.ibw",
"/SES",
"/SES/0054054_VB_401eV.ibw",
"/SES",
"/SES/0055055_C1s_401eV.ibw",
"/SES",
"/SES/0055055_VB_401eV.ibw",
"/SES",
"/SES/0056056_C1s_495eV.ibw",
"/SES",
"/SES/0056056_N1s_495eV.ibw",
"/SES",
"/SES/0056056_VB_495eV.ibw",
"/SES",
"/SES/0057057_VB_401eV.ibw",
"/SES",
"/SES/0058058_VB_401eV.ibw",
"/SES",
"/SES/0059059_C1s_403.34eV.ibw",
"/SES",
"/SES/0059059_VB_403.34eV.ibw",
"/SES",
"/SES/0060060_C1s_403.34eV.ibw",
"/SES",
"/SES/0060060_VB_403.34eV.ibw",
"/SES",
"/SES/0061061_C1s_403.34eV.ibw",
"/SES",
"/SES/0061061_VB_403.34eV.ibw",
"/SES",
"/SES/0063063_C1s_495eV.ibw",
"/SES",
"/SES/0064064_C1s_495eV.ibw",
"/SES",
"/SES/0065065_C1s_495eV.ibw",
"/SES",
"/SES/0066066_C1s_495eV.ibw",
"/SES",
"/SES/0068068_C1s_495eV.ibw",
"/SES",
"/SES/0068068_N1s_495eV.ibw",
"/SES",
"/SES/0069069_C1s_495eV.ibw",
"/SES",
"/SES/0069069_N1s_495eV.ibw",
"/SES",
"/SES/0070070_Survey_1000eV.ibw",
"/SES",
"/SES/0071071_C1s_495eV.ibw",
"/SES",
"/SES/0071071_N1s_495eV.ibw",
"/SES",
"/SES/0072072_C1s_403.34eV.ibw",
"/SES",
"/SES/0072072_VB_403.34eV.ibw",
"/SES",
"/SES/0073073_C1s_403.34eV.ibw",
"/SES",
"/SES/0073073_VB_403.34eV_short.ibw",
"/SES",
"/SES/0074074_Survey_1000eV.ibw",
"/SES",
"/SES/0075075_Survey_1000eV.ibw",
"/SES",
"/SES/0076076_C1s_403.34eV.ibw",
"/SES",
"/SES/0076076_VB_403.34eV_short.ibw",
"/SES",
"/SES/0077077_C1s_403.34eV.ibw",
"/SES",
"/SES/0077077_VB_403.34eV_short.ibw",
"/SES",
"/SES/0078078_C1s_403.34eV.ibw",
"/SES",
"/SES/0078078_VB_403.34eV_short.ibw",
"/SES",
"/SES/0079079_C1s_403.34eV.ibw",
"/SES",
"/SES/0079079_VB_403.34eV_short.ibw",
"/SES",
"/SES/0080080_C1s_403.34eV.ibw",
"/SES",
"/SES/0080080_VB_403.34eV_short.ibw",
"/SES",
"/SES/0081081_C1s_403.34eV.ibw",
"/SES",
"/SES/0081081_VB_403.34eV_short.ibw",
"/SES",
"/SES/0082082_C1s_403.34eV.ibw",
"/SES",
"/SES/0082082_VB_403.34eV_short.ibw",
"/SES",
"/SES/0083083_VB_403.34eV_short.ibw",
"/SES",
"/SES/0084084_VB_403.34eV_short.ibw",
"/SES",
"/SES/0085085_Survey_1000eV.ibw",
"/SES",
"/SES/0086086_Survey_1000eV.ibw",
"/SES",
"/SES/0087087_O1s_750.ibw",
"/SES",
"/SES/0088088_O1s_750.ibw",
"/SES",
"/SES/0089089_O1s_750eV.ibw",
"/SES",
"/SES/0090090_Cl2p_750eV.ibw",
"/SES",
"/SES/0090090_Mg2s_750eV.ibw",
"/SES",
"/SES/0090090_O1s_750eV.ibw",
"/SES",
"/SES/0091091_Cl2p_750eV.ibw",
"/SES",
"/SES/0092092_Cl2p_750eV.ibw",
"/SES",
"/SES/0092092_O1s_750eV.ibw",
"/SES",
"/SES/0093093_Cl2p_750eV.ibw",
"/SES",
"/SES/0093093_O1s_750eV.ibw",
"/SES",
"/SES/0094094_Cl2p_750eV.ibw",
"/SES",
"/SES/0094094_O1s_750eV.ibw",
"/SES",
"/SES/0095095_Cl2p_750eV.ibw",
"/SES",
"/SES/0095095_O1s_750eV.ibw",
"/SES",
"/SES/0096096_Cl2p_750eV.ibw",
"/SES",
"/SES/0096096_O1s_750eV.ibw",
"/SES",
"/SES/0097097_Survey_1000eV.ibw",
"/SES",
"/SES/0098098_Survey_1000eV.ibw",
"/SES",
"/SES/0099099_Survey_1000eV.ibw",
"/SES",
"/SES/0100100_C1s_750eV.ibw",
"/SES",
"/SES/0100100_Mg2s_750eV.ibw",
"/SES",
"/SES/0100100_O1s_750eV.ibw",
"/SES",
"/SES/0101101_C1s_750eV.ibw",
"/SES",
"/SES/0101101_Mg2s_750eV.ibw",
"/SES",
"/SES/0101101_O1s_750eV.ibw",
"/SES",
"/SES/0102102_C1s_750eV.ibw",
"/SES",
"/SES/0102102_O1s_750eV.ibw",
"/SES",
"/SES/0103103_C1s_750eV.ibw",
"/SES",
"/SES/0103103_Cl2p_750eV.ibw",
"/SES",
"/SES/0103103_Mg2s_750eV.ibw",
"/SES",
"/SES/0103103_O1s_750eV.ibw",
"/SES",
"/SES/0104104_C1s_750eV.ibw",
"/SES",
"/SES/0104104_Cl2p_750eV.ibw",
"/SES",
"/SES/0104104_O1s_750eV.ibw",
"/SES",
"/SES/0105105_C1s_750eV.ibw",
"/SES",
"/SES/0105105_Cl2p_750eV.ibw",
"/SES",
"/SES/0105105_O1s_750eV.ibw",
"/SES",
"/SES/0106106_C1s_750eV.ibw",
"/SES",
"/SES/0106106_Cl2p_750eV.ibw",
"/SES",
"/SES/0106106_O1s_750eV.ibw",
"/SES",
"/SES/0107107_C1s_750eV.ibw",
"/SES",
"/SES/0107107_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0107107_O1s_750eV.ibw",
"/SES",
"/SES/0108108_C1s_750eV.ibw",
"/SES",
"/SES/0108108_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0108108_O1s_750eV.ibw",
"/SES",
"/SES/0109109_C1s_750eV.ibw",
"/SES",
"/SES/0109109_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0109109_O1s_750eV.ibw",
"/SES",
"/SES/0110110_C1s_750eV.ibw",
"/SES",
"/SES/0110110_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0110110_O1s_750eV.ibw",
"/SES",
"/SES/0111111_C1s_750eV.ibw",
"/SES",
"/SES/0111111_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0111111_O1s_750eV.ibw",
"/SES",
"/SES/0112112_Survey_1000eV.ibw",
"/SES",
"/SES/0113113_C1s_750eV.ibw",
"/SES",
"/SES/0113113_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0113113_O1s_750eV.ibw",
"/SES",
"/SES/0114114_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0114114_O1s_750eV.ibw",
"/SES",
"/SES/0115115_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0115115_O1s_750eV.ibw",
"/SES",
"/SES/0116116_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0116116_O1s_750eV.ibw",
"/SES",
"/SES/0117117_Cl2p_400eV.ibw",
"/SES",
"/SES/0118118_Cl2p_400eV.ibw",
"/SES",
"/SES/0119119_Cl2p_400eV.ibw",
"/SES",
"/SES/0120120_Cl2p_400eV.ibw",
"/SES",
"/SES/0121121_Cl2p_395eV.ibw",
"/SES",
"/SES/0122122_Cl2p_395eV.ibw",
"/SES",
"/SES/0123123_Cl2p_395eV.ibw",
"/SES",
"/SES/0124124_Cl2p_395eV.ibw",
"/SES",
"/SES/0125125_Cl2p_395eV.ibw",
"/SES",
"/SES/0126126_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0126126_O1s_750eV.ibw",
"/SES",
"/SES/0127127_Survey_1000eV.ibw",
"/SES",
"/SES/0128128_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0128128_Mg2s_750eV.ibw",
"/SES",
"/SES/0128128_O1s_750eV.ibw",
"/SES",
"/SES/0129129_Survey_1000eV.ibw",
"/SES",
"/SES/0130130_C1s_750eV.ibw",
"/SES",
"/SES/0130130_O1s_750eV.ibw",
"/SES",
"/SES/0131131_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0131131_O1s_750eV.ibw",
"/SES",
"/SES/0132132_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0132132_O1s_750eV.ibw",
"/SES",
"/SES/0133133_Cl2p_395eV.ibw",
"/SES",
"/SES/0134134_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0134134_O1s_750eV.ibw",
"/SES",
"/SES/0135135_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0135135_O1s_750eV.ibw",
"/SES",
"/SES/0136136_Cl2p_395eV.ibw",
"/SES",
"/SES/0137137_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0137137_O1s_750eV.ibw",
"/SES",
"/SES/0138138_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0138138_O1s_750eV.ibw",
"/SES",
"/SES/0139139_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0139139_O1s_750eV.ibw",
"/SES",
"/SES/0140140_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0140140_O1s_750eV.ibw",
"/SES",
"/SES/0141141_Cl2p_395eV.ibw",
"/SES",
"/SES/0142142_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0142142_O1s_750eV.ibw",
"/SES",
"/SES/0143143_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0143143_O1s_750eV.ibw",
"/SES",
"/SES/0144144_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0144144_O1s_750eV.ibw",
"/SES",
"/SES/0145145_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0145145_O1s_750eV.ibw",
"/SES",
"/SES/0146146_Cl2p_395eV.ibw",
"/SES",
"/SES/0147147_Cl2p_395eV.ibw",
"/SES",
"/SES/0148148_C1s_750eV.ibw",
"/SES",
"/SES/0148148_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0148148_O1s_750eV.ibw",
"/SES",
"/SES/0149149_Cl2p_395eV.ibw",
"/SES",
"/SES/0150150_Cl2p_395eV.ibw",
"/SES",
"/SES/0151151_C1s_750eV.ibw",
"/SES",
"/SES/0151151_Cl2p_750eV_new.ibw",
"/SES",
"/SES/0151151_O1s_750eV.ibw",
"/SES",
"/SES/0152152_Cl2p_395eV.ibw"
],
"root": {
"color": "lightgrey"
},
"type": "treemap",
"values": [
5,
10,
3,
2,
1,
6,
7,
2,
1,
6,
5,
5,
5,
5,
3,
2,
1,
6,
3,
2,
1,
6,
3,
2,
1,
6,
3,
2,
1,
6,
3,
2,
1,
6,
3,
2,
1,
6,
3,
2,
1,
6,
3,
2,
1,
6,
0,
2,
1,
1,
1,
1,
3,
2,
1,
1,
2,
1,
1,
2,
1,
1,
262,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
}
],
"layout": {
"height": 600,
"margin": {
"b": 25,
"l": 25,
"r": 25,
"t": 50
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"sequentialminus": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"width": 800
}
}
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"\n",
"if isinstance(hdf5_file_path ,list):\n",
" for path_item in hdf5_file_path :\n",
" hdf5_vis.display_group_hierarchy_on_a_treemap(path_item)\n",
"else:\n",
" hdf5_vis.display_group_hierarchy_on_a_treemap(hdf5_file_path)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'output_files\\\\collection_PSI_beamtime_ThorstenBR_2023-09-22_2023-09-25.json'"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import src.hdf5_ops as h5de \n",
"\n",
"h5de.serialize_metadata(hdf5_file_path[0],folder_depth=1,output_format='json')"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['output_files\\\\collection_PSI_beamtime_ThorstenBR_2023-09-22_2023-09-25.h5']\n",
" dataset_name \\\n",
"0 NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.... \n",
"1 NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.... \n",
"2 NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.... \n",
"3 NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.... \n",
"4 NEXAFS/0001_20230922_155132_N_K_edge_Yanisha3.... \n",
"\n",
" parent_instrument parent_file \n",
"0 0001_20230922_155132_N_K_edge_Yanisha3.h5 logs \n",
"1 scan 1 attrs \n",
"2 scan 1 attrs \n",
"3 scan 1 attrs \n",
"4 scan 1 attrs \n"
]
}
],
"source": [
"import src.hdf5_ops as h5de \n",
"print(hdf5_file_path)\n",
"DataOpsAPI = h5de.HDF5DataOpsManager(hdf5_file_path[0])\n",
"\n",
"DataOpsAPI.load_file_obj()\n",
"\n",
"#DataOpsAPI.reformat_datetime_column('ICAD/HONO/2022_11_22_Channel1_Data.dat/data_table',\n",
"# 'Start Date/Time (UTC)',\n",
"# '%Y-%m-%d %H:%M:%S.%f', '%Y-%m-%d %H:%M:%S')\n",
"DataOpsAPI.extract_and_load_dataset_metadata()\n",
"df = DataOpsAPI.dataset_metadata_df\n",
"print(df.head())\n",
"\n",
"DataOpsAPI.unload_file_obj()\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"DataOpsAPI.append_metadata('/',{'test_attr':'this is a test value'})\n",
"\n",
"DataOpsAPI.unload_file_obj()"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "multiphase_chemistry_env",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.9"
}
},
"nbformat": 4,
"nbformat_minor": 4
}