We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b12af57 commit 7d2363eCopy full SHA for 7d2363e
students/eowyn/windrevenue/windrevenue/parse_met_data.py
@@ -125,7 +125,7 @@ def get_wind_and_generation(self):
125
met_timeseries = self.get_met_timeseries()
126
pcdf = self.pct.power_curve
127
128
- pcdf= pcdf.append(pd.DataFrame({'WS': (self.get_met_timeseries()[(self.windVar)])}), True)
+ pcdf = pcdf.append(pd.DataFrame({'WS': (self.get_met_timeseries()[(self.windVar)])}), True)
129
power_lookup = pd.Series(index=pcdf.WS, data=pcdf.Pwr.values).interpolate(method='index')
130
subset = power_lookup.tail(len(power_lookup) - len(self.pct.power_curve))
131
0 commit comments