Config¶
“”” .. Warning:
Change file paths before use!
Variable names must match the example EXACTLY.
Files can be located on a remote server or locally. Directories need to be defined for:
- source files - QAQC will be attempted on every csv file in this directory
- local processing (should be local to the executing console)
- storage of processed data
Note
This file is directly executed by Python. Python syntax must be enforced. Use forward slashes (/) in file paths for cross-platform compatibility.
“””
dir_source_files = “D:\Projects\MS045\2023\bulk” dir_local_processing = “D:\HOBO_TEMP" dir_final_storage = “D:\Projects\MS045\2023\bulk_clean”
# Optional legacy setting; ignored unless time_step is explicitly passed at # runtime, for example: # python -c “from MET_hobo.file_manager import FileHandling; FileHandling(‘file_path.config’).manage(time_step=’20min’)” time_step = “20min”
- map_fname2dir = {
- “RS”: “REFSTAND”, “TS”: “STREAMT”, “PC”: “PHENO”,
}