From 33b3c6a3c51756a5b069b7b624c7141b929696d2 Mon Sep 17 00:00:00 2001
From: "stefan.schirmeister" <stefan.schirmeister@localiser.de>
Date: Wed, 20 Nov 2024 10:14:22 +0100
Subject: [PATCH] report: EUR/kWh -> ct/kWh

---
 spice_ev/report.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spice_ev/report.py b/spice_ev/report.py
index 71ff698f..e0feb468 100644
--- a/spice_ev/report.py
+++ b/spice_ev/report.py
@@ -466,7 +466,7 @@ def aggregate_timeseries(scenario, gcID):
     header = ["timestep", "time"]
     # price
     if any(scenario.prices[gcID]):
-        header.append("price [EUR/kWh]")
+        header.append("price [ct/kWh]")
     # grid power
     header.append("grid supply [kW]")
     # fixed loads
@@ -768,7 +768,7 @@ def plot(scenario):
     prices = list(zip(*scenario.prices.values()))
     lines = ax.step(xlabels, prices, where='post')
     ax.set_title('Price')
-    ax.set(ylabel='Price in €/kWh')
+    ax.set(ylabel='Price in ct/kWh')
     if len(gc_ids) <= 10:
         ax.legend(lines, sorted(gc_ids))