metpyrad.Hidex300.export_table#
- Hidex300.export_table(kind, folder_path)#
Exports the specified type of measurements to a CSV file.
- Parameters:
kind (str) – The type of measurements to export. Options are ‘readings’, ‘background’, ‘sample’, ‘net’, or ‘all’.
folder_path (str) – The path to the folder where the CSV file will be saved.
- Raises:
ValueError – If an invalid measurement kind is provided.
Examples
>>> processor = Hidex300('Lu-177', 2023, 11) >>> processor.parse_readings('/path/to/folder') Found 2 CSV files in folder /path/to/folder >>> processor.process_readings('sample') >>> processor.export_table('sample', '/path/to/folder') Sample measurements CSV saved to "/path/to/folder" folder.