from predictops.source.ephemeris import Ephemeris
from predictops.source.meteofrance import MeteoFrance
from predictops.source.ephemeris import Ephemeris
from predictops.source.meteofrance import MeteoFrance
class Engine:
def __init__(self, start = None, end = None, time_step = None):
class Engine:
def __init__(self, start = None, end = None, time_step = None):
latitude = 47.25, longitude = 6.0333, nb_stations = 3,
features = ['temperature', 'pressure'])
latitude = 47.25, longitude = 6.0333, nb_stations = 3,
features = ['temperature', 'pressure'])
engine.add_feature(name = 'ephemeris',
start = start, end = end,
features = ['hour', 'dayInWeek', 'dayInMonth', 'dayInYear',
'weekInYear', 'month', 'year'])
engine.add_feature(name = 'ephemeris',
start = start, end = end,
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')])
+
+process = Preprocessing(dict_features = engine.X,
+ start = start, end = end, timestep = timedelta(hours=6))
+
+
+df = process.dataframe.head(n=20)
+#print(engine.X[datetime.strptime('06/30/2010 21:00:00', '%m/%d/%Y %H:%M:%S')])
+print(df)
+exit()
depts = gpd.read_file( Path.cwd() / 'data' / 'targets' / 'departments' / "departements-20180101.shp")
Doubs = depts.loc[depts['nom'] == 'Doubs'].iloc[0]
ToArea(area=Doubs.geometry,
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)
+ start = start, end = end,
+ csv_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv')