X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/predictops.git/blobdiff_plain/f96e8f9dd1e1026a372660eec51452eee33bb2f0..3549f1fd0518f1c52df39247cc472b6158485ede:/main.py?ds=inline diff --git a/main.py b/main.py index 6733216..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,4 +69,11 @@ engine.add_feature(name = 'ephemeris', features = ['hour', 'dayInWeek', 'dayInMonth', 'dayInYear', 'weekInYear', 'month', 'year']) -print(engine.X) \ No newline at end of file +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) +