@@ -107,7 +107,6 @@ def __init__(
107
107
pressureLevelDataFile = None ,
108
108
timezone = None ,
109
109
unit_system = "metric" ,
110
- forecast_comparison = False ,
111
110
forecast_date = None ,
112
111
forecast_args = None ,
113
112
maxExpectedAltitude = None ,
@@ -145,6 +144,12 @@ def __init__(
145
144
unit_system : str, optional
146
145
Unit system to be used when displaying results.
147
146
Options are: SI, metric, imperial. Default is metric.
147
+ forecast_date : datetime.date, optional
148
+ Date for the forecast models. It will be requested the environment forecast
149
+ for multiple hours within that specified date.
150
+ forecast_args : dictionary, optional
151
+ Arguments for setting the forecast on the Environment class. With this argument
152
+ it is possible to change the forecast model being used.
148
153
maxExpectedAltitude : float, optional
149
154
Maximum expected altitude for your analysis. This is used to calculate
150
155
plot limits from pressure level data profiles. If None is set, the
@@ -213,7 +218,7 @@ def __init__(
213
218
214
219
# Processing forecast
215
220
self .forecast = None
216
- if forecast_comparison :
221
+ if forecast_date :
217
222
self .forecast = {}
218
223
hours = list (self .pressureLevelDataDict .values ())[0 ].keys ()
219
224
for hour in hours :
0 commit comments