diff --git a/pipeline_runner/config.py b/pipeline_runner/config.py new file mode 100644 index 0000000..578b9a5 --- /dev/null +++ b/pipeline_runner/config.py @@ -0,0 +1,7 @@ +import os +from pathlib import Path + +GDRIVE_REMOTE = os.getenv("GDRIVE_REMOTE", "gdrive:Cosma - Internal/06-Operations/06 - Sorties") +OUTPUT_DIR = Path(os.getenv("OUTPUT_DIR", "/data/sorties")) +TOOLS_DIR = Path(os.getenv("TOOLS_DIR", Path(__file__).parent.parent / "tools")) +LTTB_MAX_PTS = 4000