X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/predictops.git/blobdiff_plain/a3cc2abef295b99990b24b1c822319c80a59ffe2..1aa2671e4f047322d6957a58a7b44a568b25d67d:/main.py?ds=sidebyside diff --git a/main.py b/main.py index a6a8d74..b43c188 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,6 @@ -from lib.source.ephemeris import Ephemeris -from lib.source.meteofrance import MeteoFrance +from predictops.source.ephemeris import Ephemeris +from predictops.source.meteofrance import MeteoFrance +from predictops.target.toarea import ToArea from datetime import datetime from logging import getLogger @@ -7,6 +8,8 @@ from logging.config import fileConfig from pathlib import Path from shutil import rmtree +import geopandas as gpd + fileConfig((Path.cwd() / 'config') / 'logging.cfg') logger = getLogger() @@ -66,6 +69,11 @@ engine.add_feature(name = 'ephemeris', features = ['hour', 'dayInWeek', 'dayInMonth', 'dayInYear', 'weekInYear', 'month', 'year']) +print(engine.X[datetime.strptime('06/30/2010 21:00:00', '%m/%d/%Y %H:%M:%S')]) + +depts = gpd.read_file( Path.cwd() / 'data' / 'targets' / 'departments' / "departements-20180101.shp") +Doubs = depts.loc[depts['nom'] == 'Doubs'].iloc[0] +ToArea(area=Doubs.geometry, + start = start, end = end) -print(engine.X[datetime.strptime('06/30/2010 21:00:00', '%m/%d/%Y %H:%M:%S')]) \ No newline at end of file