You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
right now, every new data set gets a method like get_lmp, get_load, etc. We could continue to do this, but once we get into more specific datasets, not sure there is much value in have the method named like that.
I think the get_dataset() approach is definitely more maintainable and would be much easier to scale. It would also allow for the following:
iso = gridstatus.ERCOT()
supported_datasets = iso.supported_datasets()
that could all reference a single data structure (dict?). Also, in the case where there are different granularities for single datatypes:
iso = gridstatus.ERCOT()
ordc = iso.get_supported_granularity(iso.ORDC_15_MIN) # don't love the method name here but
This approach could also support passing multiple datasets in the same function call. Only problem I might see arising is the amount of checks you'd have to do once you start getting more and more unique datasets. Overall though I think the pros outweigh the cons. Will have to start tinkering with it to really get a sense, tho.
The 15-Minute Settlement Price Point (SPP) is comprised of the time-weighted, 5-minute LMP, as well as the
RTRSVPOR
andRTRDP
scarcity price adders.ERCOT also publishes per-SCED data and annual historical archives.
I think it makes sense to start with the 15-minute data for now as the 15-Minute RT market is already supported.
The text was updated successfully, but these errors were encountered: