Expansion of data types #4219
Replies: 4 comments 8 replies
-
Curtailment data when available from a data provider. Combined with pricing data, this can be used to determine where storage would be most beneficially deployed. |
Beta Was this translation helpful? Give feedback.
-
I think price data would be really nice, namely:
|
Beta Was this translation helpful? Give feedback.
-
I think the estimation models, especially forecast/real-time models, would benefit from this kind of data:
And while we already have installed capacities for production modes and exchanges it would be nice to parse this data instead so there is less work spent on doing chores. EDIT: It would also be nice if we split up the aggregated production modes so we can get higher granularity, like offshore and onshore wind separate or waste and biomass separate. This would work for pretty much every production mode we currently have except maybe nuclear and geothermal. |
Beta Was this translation helpful? Give feedback.
-
Not a new data type but a improvement/expansion of a existing one. type production = {
biomass?: number | {
biogas?: number;
biomass?: number;
waste?: number
};
coal?: number | {
hard?: number;
lignite?: number;
peat?: number;
oil_shale?: number
};
gas?: number | {
fossil?: number;
coal_derived?: number
};
geothermal?: number;
hydro?: number | {
run_of_river?: number;
reservoir?: number
};
nuclear?: number | {
conventional?: number;
smr?: number
};
oil?: number;
solar?: number | {
pv?: number;
thermal?: number
};
wind?: number | {
offshore?: number;
onshore?: number
};
ocean?: number | {
tidal_stream?: number;
wave?: number
};
unknown?: number;
}; TypeScript type. This would make all the production properties optional so we easily can add new ones in the future without any impact (if #4086 is merged there should be no unnecessary whitespace or clutter either), will make it easier to write parsers as they only need to return the relevant modes for that region. The benefit of doing it this way is that we can gradually update all parsers that have more granular data in a non blocking way with gradual improvement parser after parser.
|
Beta Was this translation helpful? Give feedback.
-
Hey all, we need your inputs!
🔭🔭 We are taking a look ahead into the future 🔭🔭.
We are looking into how to keep improving the app. Our goal is to become the reference source of electricity data, with the vision that by organising the world's electricity data, we'll drive the transition towards decarbonised grids.
With that in mind, our data coverage must be exhaustive and accurate if we realistically want to achieve our mission.
This is why we're asking your inputs here:
What are in your mind the data types that electricityMap is currently missing? And why?
Feel free to suggest anything relevant, no matter how far off it might be to from the data we currently have. Examples could be: supporting more precise production modes, more exhaustive price data, merit order curves, marginal data etc etc
Looking forward to hearing your thoughts!
Beta Was this translation helpful? Give feedback.
All reactions