Ercot#

Module Contents#

Classes Summary#

Ercot

Electric Reliability Council of Texas (ERCOT)

Attributes Summary#

iso

Contents#

class gridstatus.ercot.Ercot[source]#

Bases: gridstatus.base.ISOBase

Electric Reliability Council of Texas (ERCOT)

Attributes

BASE

https://www.ercot.com/api/1/services/read/dashboards

default_timezone

US/Central

interconnection_homepage

http://mis.ercot.com/misapp/GetReports.do?reportTypeId=15933

iso_id

ercot

name

Electric Reliability Council of Texas

status_homepage

https://www.ercot.com/gridmktinfo/dashboards/gridconditions

Methods

get_fuel_mix

Get fuel mix in 5 minute intervals for a provided day

get_interconnection_queue

Get interconnection queue for ERCOT

get_load

get_load_forecast

get_rtm_spp

Get Historical RTM Settlement Point Prices (SPPs) for each of the Hubs and Load Zones

get_status

Returns status of grid

get_supply

Returns most recent data point for supply in MW

get_fuel_mix(date)[source]#

Get fuel mix in 5 minute intervals for a provided day

Arguments:

date (datetime or str): “latest”, “today”, or an object that can be parsed as a datetime for the day to return data.

start (datetime or str): start of date range to return. alias for date parameter. Only specify one of date or start.

end (datetime or str): “today” or an object that can be parsed as a datetime for the day to return data. Only used if requesting a range of dates.

verbose (bool): print verbose output. Defaults to False.

Returns:

pd.Dataframe: dataframe with columns: Time and columns for each fuel type

get_interconnection_queue(verbose=False)[source]#

Get interconnection queue for ERCOT

Monthly historical data available here: http://mis.ercot.com/misapp/GetReports.do?reportTypeId=15933&reportTitle=GIS%20Report&showHTMLView=&mimicKey

get_load(date, verbose=False)[source]#
get_load_forecast(date, verbose=False)[source]#
get_rtm_spp(year)[source]#

Get Historical RTM Settlement Point Prices (SPPs) for each of the Hubs and Load Zones

Arguments:

year (int): year to get data for

Source: https://www.ercot.com/mp/data-products/data-product-details?id=NP6-785-ER

get_status(date, verbose=False)[source]#

Returns status of grid

get_supply(date, verbose=False)[source]#

Returns most recent data point for supply in MW

Updates every 5 minutes

gridstatus.ercot.iso[source]#