From 14c048a7a170e01eaeb365b23d0fc69a74809289 Mon Sep 17 00:00:00 2001
From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu>
Date: Tue, 25 May 2021 15:20:43 +0200
Subject: [PATCH] Bias correction configuration file.

---
 climax/config.py | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 climax/config.py

diff --git a/climax/config.py b/climax/config.py
new file mode 100644
index 0000000..d0bf233
--- /dev/null
+++ b/climax/config.py
@@ -0,0 +1,15 @@
+"""Climax configuration file."""
+
+# !/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+# builtins
+import pathlib
+import datetime
+
+# path to this file
+HERE = pathlib.Path(__file__).parent
+
+# calibration period
+P_CAL = (datetime.datetime.strptime('1970-01-01', '%Y-%m-%d').date(),
+         datetime.datetime.strptime('2000-01-01', '%Y-%m-%d').date())
-- 
GitLab