X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/predictops.git/blobdiff_plain/b1216db088f3ab2d18dec528332c1e2be3dee78e..90e69cb2125d4bae76a27b9c38defb4f70bf2ca6:/main.py diff --git a/main.py b/main.py index 9ccb687..d451534 100644 --- a/main.py +++ b/main.py @@ -1,38 +1,27 @@ -from lib.source import MeteoFrance +from predictops.engine import Engine from logging import getLogger from logging.config import fileConfig from pathlib import Path -from shutil import rmtree fileConfig((Path.cwd() / 'config') / 'logging.cfg') logger = getLogger() +if __name__ == '__main__': -class Engine: - def __init__(self, clean = False): - logger.info("Predictops engine launched") - if clean: - self.clean() - print("To prevent from downloading again csv files, copy the archive in data rep") + config = (Path.cwd() / 'config') / 'learn.cfg' + with Engine(config_file = config) as e: + e.add_features() + e.add_target() + e.add_preprocessing() + e.learn() - def clean(self): - # Cleaning the data directory - logger.info("Cleaning and restoring data directory") - directory = Path.cwd() / 'data' - if directory.is_dir(): - rmtree(directory) - p = Path(Path.cwd() / 'data') - p.mkdir() + '''target = toarea(stream_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv') + depts = gpd.read_file( Path.cwd() / 'data' / 'targets' / 'departments' / "departements-20180101.shp") + Doubs = depts.loc[depts['nom'] == 'Doubs'].iloc[0] - def add_meteofrance(self): - self.meteofrance = MeteoFrance() - - - -engine = Engine(clean = False) -engine.add_meteofrance() -engine.meteofrance.update() -print(len(engine.meteofrance.dated_features)) \ No newline at end of file + ToArea(area=Doubs.geometry, + csv_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv') + '''