WattTime / pyiso

Python client libraries for ISO and other power grid data sources.
http://pyiso.readthedocs.org/
Other
239 stars 112 forks source link

ERCOT has PV/solar available #206

Open sandeen opened 3 years ago

sandeen commented 3 years ago

I don't know if pyiso is still maintained, but ERCOT now has solar data available, you can get it in addition to wind, i.e.:

    # get other values
    load_val = df.loc['Actual System Demand'][1]
    wind_val = df.loc['Total Wind Output'][1]
    solar_val = df.loc['Total PVGR Output'][1]

etc

-Eric