electricitymaps / electricitymaps-contrib

A real-time visualisation of the CO2 emissions of electricity consumption
https://app.electricitymaps.com
GNU Affero General Public License v3.0
3.51k stars 934 forks source link

[Data Issue]: new CZ (CEPS) parser is missing pumping demand for pumped hydro #5426

Open q-- opened 1 year ago

q-- commented 1 year ago

When did this happen?

Now that the new parser (#5112) is live, I noticed that pumping data for pumped hydro is no longer available; IIRC it was available from the ENTSOE data source.

What zones are affected?

Czechia/Czech Republic (CZ)

What is the problem?

Now that the new parser is live, I noticed that pumping data for pumped hydro is no longer available; IIRC it was available from the ENTSOE data source.

It looks like CEPS does provide this data, so it should be possible to restore this functionality.

VIKTORVAV99 commented 1 year ago

Ah I see, the new source only provide hydro storage production and not the pumping part.

As far as I can tell at first glance it should be an easy solution of just doing pumping = load_including_pumping - load

And then do hydro_storage_production - pumping later on.

It's a bit more to it in the actual implementation but that is the basics.

Frantisek12 commented 1 year ago

I've opened PR https://github.com/electricitymaps/electricitymaps-contrib/pull/5473 with the pumping demand implemented. Please go ahead and check it