Closed mdavis-xyz closed 6 months ago
Yep that's a good point, I'll make this change in the next release.
Also, do you know why BassLink is listed here as a generator? No other interconnector is there (as far as I can see). (Again, the nemosis behavior just matches the underlying AEMO data. I'm hoping you can explain AEMO's data to me.)
(It's also classified as non-scheduled. Aren't DC links fully dispatchable, and thus scheduled?)
from nemosis import defaults, static_table
raw_data_cache = "C:\\Users\\DAVIS_M\\Documents\\nem\\data-cache"
df = static_table('Generators and Scheduled Loads', raw_data_cache)
df[df['Participant'].str.contains('Basslink')]
The more I look into this data, the more confused I get.
Some batteries are only listed as one DUID, with an empty/-
fuel souce. Others are listed as two DUIDs (one for load, one for generation), with Grid
as the source. Except for Hornsdale, which appears with Wind
as the fuel source for generation, and -
as the fuel source for load.
I'm a bit lost now. How do people normally use this data? I want to categorise grid volume into % renewables, coal, gas etc. I knew handling batteries would be tricky, but I didn't expect the raw static data to be this messy.
Hey Matt,
This data is definitely not great, and I've even found a few technology-type errors in it before, but it appears to be the only source for some info. A few comments that may be helpful:
Addressed in release 3.6.0: https://github.com/UNSW-CEEM/NEMOSIS/releases/tag/v3.6.0
In the 'Generators and Scheduled Loads' table, columns such as
Fuel Source - Primary
have''
,'-'
andnan
values. Do they mean something different?Note that these different values appear to come from the raw excel file:
If these values mean the same thing, I think this library should coerce them into the same
nan
value. (Even if it's AEMO's 'fault')