diff --git a/NEWS.md b/NEWS.md index 24f94aba..23350b90 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,9 +1,17 @@ # tidyplots (development version) +## Breaking changes + +* The `energy` dataset has been updated to contain the correct energy values in TWh. The variable `power` has been renamed to `energy`. This change will affect all code that uses the `energy` dataset. + +## Bug fixes + +* Fixed bug when combining `add_count_*()` with axis `limits` (#41). + +## Improvements + * New color scheme `colors_discrete_rainbow` (@electrolars, #35). -* The function `save_plot()` gains the new argument `view_plot` -to control whether to view the plot on screen after saving (#40). -* Fixed a bug when combining counts with axis limits (#41). +* `save_plot()` gains `view_plot` argument to control whether to view the plot on screen after saving (#40). # tidyplots 0.2.0 diff --git a/R/add-misc.R b/R/add-misc.R index 9488569c..ecc31021 100644 --- a/R/add-misc.R +++ b/R/add-misc.R @@ -212,11 +212,11 @@ add_curve_fit <- function(plot, dodge_width = NULL, method = "loess", linewidth #' #' @examples #' energy %>% -#' tidyplot(x = power) %>% +#' tidyplot(x = energy) %>% #' add_histogram() #' #' energy %>% -#' tidyplot(x = power, color = energy_type) %>% +#' tidyplot(x = energy, color = energy_type) %>% #' add_histogram() #' #' @export diff --git a/R/add-proportional.R b/R/add-proportional.R index acf4c49b..0495a875 100644 --- a/R/add-proportional.R +++ b/R/add-proportional.R @@ -45,13 +45,13 @@ ff_pie <- function(.type = "pie") { #' add_donut() #' #' # for a `sum` provide `color` and `y` -#' # `sum` of `power` in each `energy_type` category +#' # `sum` of `energy` in each `energy_type` category #' energy %>% -#' tidyplot(y = power, color = energy_type) %>% +#' tidyplot(y = energy, color = energy_type) %>% #' add_pie() #' #' energy %>% -#' tidyplot(y = power, color = energy_type) %>% +#' tidyplot(y = energy, color = energy_type) %>% #' add_donut() #' #' @export @@ -122,31 +122,31 @@ ff_barstack <- function(.position_fun) { #' add_barstack_relative() #' #' # for a `sum` provide `color` and `y` -#' # `sum` of `power` in each `energy_type` category +#' # `sum` of `energy` in each `energy_type` category #' energy %>% -#' tidyplot(y = power, color = energy_type) %>% +#' tidyplot(y = energy, color = energy_type) %>% #' add_barstack_absolute() #' #' energy %>% -#' tidyplot(y = power, color = energy_type) %>% +#' tidyplot(y = energy, color = energy_type) %>% #' add_barstack_relative() #' #' # Include variable on second axis #' energy %>% -#' tidyplot(x = year, y = power, color = energy_type) %>% +#' tidyplot(x = year, y = energy, color = energy_type) %>% #' add_barstack_absolute() #' #' energy %>% -#' tidyplot(x = year, y = power, color = energy_type) %>% +#' tidyplot(x = year, y = energy, color = energy_type) %>% #' add_barstack_relative() #' #' # Flip x and y-axis #' energy %>% -#' tidyplot(x = power, y = year, color = energy_type) %>% +#' tidyplot(x = energy, y = year, color = energy_type) %>% #' add_barstack_absolute(orientation = "y") #' #' energy %>% -#' tidyplot(x = power, y = year, color = energy_type) %>% +#' tidyplot(x = energy, y = year, color = energy_type) %>% #' add_barstack_relative(orientation = "y") #' #' @export @@ -275,22 +275,22 @@ ff_areastack <- function(.position_fun) { #' add_areastack_relative() #' #' # for a `sum` provide `x`, `y` and `color` -#' # `sum` of `power` in each `energy_type` category +#' # `sum` of `energy` in each `energy_type` category #' energy %>% -#' tidyplot(x = year, y = power, color = energy_type) %>% +#' tidyplot(x = year, y = energy, color = energy_type) %>% #' add_areastack_absolute() #' #' energy %>% -#' tidyplot(x = year, y = power, color = energy_type) %>% +#' tidyplot(x = year, y = energy, color = energy_type) %>% #' add_areastack_relative() #' #' # Flip x and y-axis #' energy %>% -#' tidyplot(x = power, y = year, color = energy_type) %>% +#' tidyplot(x = energy, y = year, color = energy_type) %>% #' add_areastack_absolute(orientation = "y") #' #' energy %>% -#' tidyplot(x = power, y = year, color = energy_type) %>% +#' tidyplot(x = energy, y = year, color = energy_type) %>% #' add_areastack_relative(orientation = "y") #' #' @export diff --git a/R/helpers.R b/R/helpers.R index 937e7d80..510822b5 100644 --- a/R/helpers.R +++ b/R/helpers.R @@ -97,7 +97,7 @@ as_tidyplot <- function(gg, width = 50, height = 50, dodge_width = NULL) { #' flip_plot() #' #' energy %>% -#' tidyplot(x = year, y = power, color = energy_type) %>% +#' tidyplot(x = year, y = energy, color = energy_type) %>% #' add_barstack_absolute() %>% #' flip_plot() #' @@ -109,7 +109,7 @@ as_tidyplot <- function(gg, width = 50, height = 50, dodge_width = NULL) { #' add_sem_errorbar() #' #' energy %>% -#' tidyplot(x = power, y = year, color = energy_type) %>% +#' tidyplot(x = energy, y = year, color = energy_type) %>% #' add_barstack_absolute(orientation = "y") #' #' @export diff --git a/R/plot.R b/R/plot.R index ce8f3fc2..48541a59 100644 --- a/R/plot.R +++ b/R/plot.R @@ -89,27 +89,27 @@ tidyplot <- function(data, ..., width = 50, height = 50, dodge_width = NULL) { #' # Before splitting #' energy %>% #' dplyr::filter(year %in% c(2005, 2010, 2015, 2020)) %>% -#' tidyplot(y = power, color = energy_source) %>% +#' tidyplot(y = energy, color = energy_source) %>% #' add_donut() #' #' # Split by year #' energy %>% #' dplyr::filter(year %in% c(2005, 2010, 2015, 2020)) %>% -#' tidyplot(y = power, color = energy_source) %>% +#' tidyplot(y = energy, color = energy_source) %>% #' add_donut() %>% #' split_plot(by = year) #' #' # Change dimensions of subplots #' energy %>% #' dplyr::filter(year %in% c(2005, 2010, 2015, 2020)) %>% -#' tidyplot(y = power, color = energy_source) %>% +#' tidyplot(y = energy, color = energy_source) %>% #' add_donut() %>% #' split_plot(by = year, widths = 15, heights = 15) #' #' # Spread plots across multiple pages #' energy %>% #' dplyr::filter(year %in% c(2005, 2010, 2015, 2020)) %>% -#' tidyplot(y = power, color = energy_source) %>% +#' tidyplot(y = energy, color = energy_source) %>% #' add_donut() %>% #' split_plot(by = year, ncol = 2, nrow = 1) #' diff --git a/README.Rmd b/README.Rmd index b2b85338..9a11b25f 100644 --- a/README.Rmd +++ b/README.Rmd @@ -57,14 +57,14 @@ study %>% ```{r} energy %>% - tidyplot(x = year, y = power, color = energy_source) %>% + tidyplot(x = year, y = energy, color = energy_source) %>% add_barstack_absolute() ``` ```{r} energy %>% dplyr::filter(year %in% c(2005, 2010, 2015, 2020)) %>% - tidyplot(y = power, color = energy_source) %>% + tidyplot(y = energy, color = energy_source) %>% add_donut() %>% split_plot(by = year) ``` diff --git a/README.md b/README.md index 61821291..cb54ee4e 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ study %>% ``` r energy %>% - tidyplot(x = year, y = power, color = energy_source) %>% + tidyplot(x = year, y = energy, color = energy_source) %>% add_barstack_absolute() ``` @@ -61,7 +61,7 @@ energy %>% ``` r energy %>% dplyr::filter(year %in% c(2005, 2010, 2015, 2020)) %>% - tidyplot(y = power, color = energy_source) %>% + tidyplot(y = energy, color = energy_source) %>% add_donut() %>% split_plot(by = year) ``` diff --git a/data-raw/energy.R b/data-raw/energy.R index d2da34ad..d6ba3a89 100644 --- a/data-raw/energy.R +++ b/data-raw/energy.R @@ -1,10 +1,29 @@ ## code to prepare `energy` dataset goes here library(tidyverse) +library(tidyplots) + +# corrected version +read_single_file <- function(x) { + read_csv(x, comment = "#") %>% + pivot_longer(-Year, names_to = "energy_source", values_to = "energy") %>% + rename(year = Year) +} energy <- - read_csv("data-raw/energy_total_year.csv") %>% - pivot_longer(-year, names_to = "energy_source", values_to = "power") %>% + list.files(path = "data-raw/energy_charts_download", + pattern = "in_20", + full.names = TRUE + ) %>% + map(read_single_file) %>% + bind_rows() %>% + mutate( + energy_source = str_replace_all(energy_source, "Fossil.*gas", "Fossil gas"), + energy_source = str_replace_all(energy_source, "Solar.*", "Solar"), + energy_source = str_replace_all(energy_source, "Hydro.*", "Hydro"), + energy_source = str_replace_all(energy_source, "Waste.*", "Waste") + ) %>% + tidyr::complete(year, energy_source, fill = list(energy = 0)) %>% mutate(energy_type = case_when( str_detect(energy_source, "Geo|Hydro|Wind|Bio|Solar") ~ "Renewable", str_detect(energy_source, "Nuclear") ~ "Nuclear", @@ -12,11 +31,12 @@ energy <- .default = "Other" )) %>% mutate( - power_unit = "GW", + energy_unit = "TWh", energy_source = factor(energy_source), energy_type = factor(energy_type) - ) %>% - tidyr::replace_na(list(power = 0)) %>% - relocate(year, energy_source, energy_type, power, power_unit) + ) %>% + relocate(year, energy_source, energy_type, energy, energy_unit) usethis::use_data(energy, overwrite = TRUE) + +# write_csv(energy, "electricity-generation-in-Germany.csv") diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2002.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2002.csv new file mode 100644 index 00000000..e58c32f1 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2002.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2002,156.287,23.377,3.723,140.544,111.427,1.755,39.983,6.309,1.399,1.435,15.49,0.196 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2003.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2003.csv new file mode 100644 index 00000000..8032f0de --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2003.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2003,156.456,18.075,5.682,141.726,121.831,2.035,44.974,6.185,1.649,1.649,18.713,0.313 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2004.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2004.csv new file mode 100644 index 00000000..8bd1f283 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2004.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2004,158.378,20.494,6.955,142.136,116.64,1.874,44.882,6.388,1.648,1.648,25.509,0.557 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2005.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2005.csv new file mode 100644 index 00000000..553685f0 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2005.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2005,154.612,19.344,9.638,138.205,112.973,2.401,52.31,6.302,2.424,2.424,27.229,1.282 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2006.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2006.csv new file mode 100644 index 00000000..d9a7823b --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2006.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2006,158.711,19.718,12.772,135.087,116.47,2.086,54.958,5.521,2.963,2.963,30.71,2.224 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2007.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2007.csv new file mode 100644 index 00000000..fdc03aba --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2007.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2007,133.229,20.811,17.511,138.565,119.131,2.234,56.257,5.09,3.519,3.519,39.713,3.08 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2008.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2008.csv new file mode 100644 index 00000000..81f5dab5 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2008.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2008,140.71,20.134,20.375,134.498,105.714,2.211,66.937,4.801,3.67,3.989,40.574,4.426 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2009.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2009.csv new file mode 100644 index 00000000..8d824abd --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2009.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2009,127.69,18.743,23.289,130.992,91.654,2.492,57.599,3.387,3.355,4.416,38.61,6.58 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2010.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2010.csv new file mode 100644 index 00000000..3dab091f --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2010.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2010,132.971,20.682,25.606,130.429,99.706,2.544,63.091,3.898,3.755,5.048,0.174,37.619,11.686 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2011.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2011.csv new file mode 100644 index 00000000..d854b938 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2011.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2011,102.241,17.326,28.395,134.056,96.499,1.638,59.761,3.897,3.795,5.111,0.568,48.314,19.349 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2012.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2012.csv new file mode 100644 index 00000000..db910b73 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2012.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2012,94.18,21.332,34.093,141.868,105.83,2.153,49.868,1.15,3.971,5.262,0.722,49.949,25.41 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2013.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2013.csv new file mode 100644 index 00000000..78d0b359 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2013.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2013,92.127,22.66,35.788,145.122,110.724,0.987,39.584,0.069,0.24,4.305,5.244,0.905,50.803,28.79 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2014.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2014.csv new file mode 100644 index 00000000..f5ce8966 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2014.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2014,91.8,19.31,37.797,140.791,107.734,0.872,31.122,0.067,0.304,4.838,5.929,1.449,55.908,33.003 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2015.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2015.csv new file mode 100644 index 00000000..607e8abd --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2015.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil coal-derived gas,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2015,86.765,18.057,39.899,139.371,1.176,106.208,1.748,28.947,0.091,0.608,2.349,4.565,5.575,8.162,70.922,35.21 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2016.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2016.csv new file mode 100644 index 00000000..7eaa81d8 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2016.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil coal-derived gas,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2016,80.038,19.396,40.327,134.886,3.793,99.765,1.739,42.71,0.164,0.819,2.716,4.746,5.867,12.092,66.324,34.49 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2017.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2017.csv new file mode 100644 index 00000000..cc82de5a --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2017.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil coal-derived gas,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2017,72.155,19.378,40.327,133.983,3.767,81.724,1.766,45.189,0.157,0.607,4.839,4.802,5.876,17.414,86.293,35.431 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2018.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2018.csv new file mode 100644 index 00000000..70fb0b6d --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2018.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil coal-derived gas,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2018,71.866,17.024,39.824,131.498,3.585,72.406,2.797,40.948,0.126,0.902,3.591,4.932,5.656,19.179,88.71,40.764 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2019.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2019.csv new file mode 100644 index 00000000..29af73d8 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2019.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil coal-derived gas,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in,Solar other grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2019,70.992,18.647,40.129,101.924,1.954,49.503,3.972,50.945,0.144,1.31,3.328,4.626,5.399,24.379,99.166,41.342,0.323 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2020.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2020.csv new file mode 100644 index 00000000..529a480f --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2020.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in,Solar other grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2020,60.914,17.334,40.962,82.128,35.46,3.713,57.096,0.173,1.212,3.099,4.638,5.377,26.903,102.741,44.977,0.47 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2021.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2021.csv new file mode 100644 index 00000000..0b797fa8 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2021.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in,Solar other grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2021,65.444,18.305,40.575,99.37,46.662,3.214,51.796,0.174,1.178,2.892,4.575,5.261,24.015,88.034,44.206,1.105 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2022.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2022.csv new file mode 100644 index 00000000..9727f3bd --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2022.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in,Solar other grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2022,32.765,16.334,39.413,105.944,55.444,2.788,45.164,0.152,1.124,2.303,4.436,5.007,24.752,97.738,53.055,1.273 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2023.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2023.csv new file mode 100644 index 00000000..357cd614 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2023.csv @@ -0,0 +1,3 @@ +Year,Nuclear,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in,Solar other grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2023,6.727,18.062,36.617,77.586,33.392,3.148,44.255,0.152,0.992,1.789,4.485,5.002,23.531,115.901,52.932,0.975 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2024.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2024.csv new file mode 100644 index 00000000..3e5a818a --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_2024.csv @@ -0,0 +1,3 @@ +Year,Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil coal-derived gas,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Others,Waste renewable,Waste non-renewable,Wind offshore,Wind onshore,Solar EEG grid feed-in,Solar other grid feed-in +#,Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh),Energy (TWh) +2024,20.563,36.794,71.097,1.107,24.16,3.243,48.444,0.158,1.162,1.47,4.368,4.872,25.683,110.709,58.679,1.081 \ No newline at end of file diff --git a/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_week_36_2023.csv b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_week_36_2023.csv new file mode 100644 index 00000000..d4ffb614 --- /dev/null +++ b/data-raw/energy_charts_download/energy-charts_Public_net_electricity_generation_in_Germany_in_week_36_2023.csv @@ -0,0 +1,674 @@ +Date (GMT+2),Hydro Run-of-River,Biomass,Fossil brown coal / lignite,Fossil hard coal,Fossil oil,Fossil gas,Geothermal,Hydro water reservoir,Hydro pumped storage,Others,Waste,Wind offshore,Wind onshore,Solar,Load +,Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW),Power (MW) +2023-09-04T00:00+02:00,2521.1,3756.9,8246,1516.3,400.7,3590.2,13.7,142.2,782.8,138.4,1318.9,749.2,3871.5,1.5,38798.4 +2023-09-04T00:15+02:00,2523.8,3745.4,8193.6,1519.2,400.7,3563.6,13.7,121.3,749.6,138.4,1318.6,731.6,3937.3,1.4,38234.1 +2023-09-04T00:30+02:00,2529.6,3748.9,8196.5,1519.9,400.7,3558.7,13.8,55.5,369.4,138.4,1324.6,748.9,3901.6,1.6,37796.2 +2023-09-04T00:45+02:00,2536.9,3743,8164.6,1509.8,400.7,3558.7,13.8,76.5,237.3,138.4,1327.3,802,4008.7,1.8,37669.9 +2023-09-04T01:00+02:00,2541.6,3722.9,7939.3,1485.9,400.7,3518.2,13.8,54.9,321.2,138.4,1312.7,877.8,4078.8,1.8,37207.3 +2023-09-04T01:15+02:00,2544.4,3714.4,7723.3,1369.9,400.7,3503.7,13.9,25.8,258.6,138.4,1305.7,916.7,4204.3,1.4,36879.8 +2023-09-04T01:30+02:00,2546.6,3722.6,7669.6,1254.8,401.9,3526.6,13.9,20.4,163.1,138.4,1316.2,927.3,4273.3,1.4,36543 +2023-09-04T01:45+02:00,2551.5,3727.9,7614.9,1121.4,401,3511.9,13.9,22.5,129.1,138.4,1321.6,1012.7,4332.7,1.3,36301.5 +2023-09-04T02:00+02:00,2548.4,3696.2,7301.3,1121.1,400.7,3364.4,13.9,42.8,255.7,138.4,1316.5,1009,4350.6,1.8,36746.5 +2023-09-04T02:15+02:00,2545.9,3699.4,7226.6,1120.7,400.7,3317.1,13.7,41.6,259.1,138.4,1316.7,990,4353.7,1.4,36554 +2023-09-04T02:30+02:00,2540,3697.4,7243,1128.7,400.7,3321,14,27.5,219,138.4,1323.2,1025.4,4339.8,1.4,36485.2 +2023-09-04T02:45+02:00,2529.4,3703.2,7253.4,1237.2,400.7,3368.5,14.1,34.3,212.2,138.4,1314.8,986.2,4372.7,1.4,36463.9 +2023-09-04T03:00+02:00,2519.6,3700.9,7523.3,1325,400.7,3415.6,14.1,30.1,102.1,138.4,1304.5,900.7,4546.8,1.4,36145.3 +2023-09-04T03:15+02:00,2505.7,3695,7536.5,1340.6,400.7,3425.2,14.1,37,22,138.4,1306.7,824.9,4712.4,1.6,36318.5 +2023-09-04T03:30+02:00,2494.4,3697.2,7547.1,1338.9,400.7,3434.9,14.1,29.9,1.7,138.4,1322.6,785.7,4808.3,1.4,36212.7 +2023-09-04T03:45+02:00,2486.8,3708.4,7539.6,1377.4,400.7,3431.8,14.2,25.5,3.3,138.4,1322,776.8,4804,1.4,36603.6 +2023-09-04T04:00+02:00,2476.2,3724.1,7465,1420.1,400.7,3421.7,14.3,25.1,14,138.4,1328,766.3,4783.3,1.4,37101.4 +2023-09-04T04:15+02:00,2473.2,3730.6,7574.9,1426.9,400.7,3418.9,14.3,27.4,5,138.4,1323.3,715.5,4825.6,1.4,37510.2 +2023-09-04T04:30+02:00,2469.1,3733.2,7590.9,1462.6,400.7,3406.5,14.4,40.2,118.1,138.7,1316,703.2,4800.9,1.4,37983.3 +2023-09-04T04:45+02:00,2466.7,3742.7,7573.8,1633.5,400.7,3419.8,14.4,39.5,26.5,138.8,1325.1,704.2,4769.7,1.4,37929.5 +2023-09-04T05:00+02:00,2463.7,3776.7,7900.3,1817.1,400.7,3595.6,14.4,43.4,11.4,138.7,1319.8,678,4741.1,1.4,39739.3 +2023-09-04T05:15+02:00,2463.8,3791.4,8061.1,1929.1,400.7,3705.3,14.5,26.9,30.9,138.4,1314.1,640.9,4695.5,1.5,40394.5 +2023-09-04T05:30+02:00,2465.7,3821.6,8131.8,1981.5,400.7,3875.5,14.5,100.1,443.9,138.4,1310.1,632.2,4684.7,1.6,41686 +2023-09-04T05:45+02:00,2466,3854.9,8190.7,2037.9,400.7,4008.4,14.5,218.6,1031.1,138.4,1297.6,668.6,4746.4,2,43248.7 +2023-09-04T06:00+02:00,2468.9,3979.6,8151,2121.7,400.7,4224.9,14.5,200.7,1403.5,138.4,1308.8,676.2,4736.6,4.3,46322.6 +2023-09-04T06:15+02:00,2466.2,4018.1,8198,2273.7,400.7,4319.3,14.5,265.9,2582.8,138.4,1323.8,680,4750,15.4,47909.7 +2023-09-04T06:30+02:00,2467.9,4038.9,8215.7,2456,400.7,4383.9,14.6,349.5,3404.3,138.6,1334.1,660.9,4838.3,93.2,49166.4 +2023-09-04T06:45+02:00,2469.3,4051.9,8199.9,2496.4,422.5,4410.6,14.6,409.8,3951.8,138.8,1323.6,629,5063.9,413.7,50196.5 +2023-09-04T07:00+02:00,2478.6,4086.8,8182.5,2541.7,432.7,4399.1,14.5,496.1,5490.8,138.8,1329.5,606.4,5097.8,1168,51827.8 +2023-09-04T07:15+02:00,2473.2,4097,8173.3,2562,407.6,4415,14.4,498.4,5675.7,138.5,1336.3,599.3,4964.2,2256,52903.1 +2023-09-04T07:30+02:00,2475.8,4103.9,8175.6,2574.4,400.7,4422.3,14.2,419.5,5430.6,138.6,1327.8,597,4920.2,3704,53944.8 +2023-09-04T07:45+02:00,2460,4102.1,8145.9,2541.2,400.7,4415.6,14,279.6,4923.3,138.8,1325.1,582,4968.3,5513.6,54831.2 +2023-09-04T08:00+02:00,2445.2,4095.2,8071.3,2479.9,400.7,4408.8,13.7,253,5414.2,138.6,1329,572.6,5058.1,7548.5,55555.2 +2023-09-04T08:15+02:00,2452.1,4082.6,8026.3,2387.5,402.4,4384.5,13.5,187.8,3638.6,138.6,1320.5,567.7,4913.9,9721.8,56802.4 +2023-09-04T08:30+02:00,2457.7,4048.3,8032.7,2266.1,403.8,4291.2,13.2,84.6,2266.4,138.6,1329.7,508.9,4619.7,12077.2,57837.4 +2023-09-04T08:45+02:00,2449,4037.2,8076.1,2046.1,407.3,4165.8,13,163,790.7,138.4,1325.9,463.9,4190.2,14522.5,57998.4 +2023-09-04T09:00+02:00,2449.7,3948.5,8083.4,1987.8,405.9,3910.9,12.8,373.6,1935.5,138.4,1312.7,467.4,3743.7,16982.3,57944.9 +2023-09-04T09:15+02:00,2451.8,3946.4,8007.7,1873.8,405.3,3810.2,12.5,220.2,939.4,138.6,1311,501.4,3198.3,19343.6,57943.6 +2023-09-04T09:30+02:00,2474.7,3930.7,7957.2,1747.7,406.1,3620.7,12.3,90.7,836.9,138.6,1313.4,507,2803.1,21595.5,58121.6 +2023-09-04T09:45+02:00,2483.8,3925.9,7652.1,1621.7,408.4,3342.5,12.1,161.7,373.2,138.4,1311.3,484.6,2536.3,23761.6,58296.9 +2023-09-04T10:00+02:00,2482.2,3835.6,7229.9,1525.4,408.4,2943.5,11.9,273.4,899.8,138.4,1281.9,498.8,2361.3,25752,58005.7 +2023-09-04T10:15+02:00,2495.6,3823.8,6923.8,1521.1,413.1,2906.8,11.7,114.6,276.3,138.4,1309.7,536.7,2333.4,27665.4,58017.8 +2023-09-04T10:30+02:00,2488.5,3820.8,6737.2,1478.3,428.1,2848.5,11.7,84.9,84.5,138.4,1296.1,566.4,2380.6,29397.7,58235.5 +2023-09-04T10:45+02:00,2445.7,3814.7,6548.7,1422.2,420.9,2718.9,11.5,69,22.7,138.4,1277.3,578.9,2437.8,30768.6,58420.2 +2023-09-04T11:00+02:00,2450.7,3773.8,6409.3,1390.7,423.6,2489.3,11.4,183,412.2,138.4,1288.5,524.1,2567.6,31962.7,58423.9 +2023-09-04T11:15+02:00,2407,3767.2,6254.3,1391.9,425.4,2427.4,11.3,89.3,90.8,138.4,1300.3,500.1,2691.7,33063.8,58533.1 +2023-09-04T11:30+02:00,2376.5,3759.4,6205.3,1388.1,425.4,2425.9,11.2,52,19.8,138.5,1305.3,491.6,2770.2,34030.6,58566.8 +2023-09-04T11:45+02:00,2383.5,3758.8,5798.3,1386.4,425.7,2417.4,11,53.2,0.5,138.8,1303.1,477.9,2773.9,34918.9,58535.7 +2023-09-04T12:00+02:00,2383,3725.2,5491.1,1405.8,426.9,2391.1,10.9,128,0.4,138.8,1303.1,457.1,2773.3,35689.8,57769.7 +2023-09-04T12:15+02:00,2383.5,3712.4,5408.9,1405.5,426.3,2390.1,10.8,30.5,0.4,138.8,1305.1,452.4,2659.9,36277.6,57596.4 +2023-09-04T12:30+02:00,2377.8,3713.1,5221.4,1410.7,426.6,2424.8,10.7,46.7,0.4,138.8,1304.4,444.5,2612.4,36659.7,57696.4 +2023-09-04T12:45+02:00,2353,3704.4,5043.1,1411.4,426.9,2438.5,10.6,35.6,0.4,138.8,1308.5,412.5,2551.7,36903.5,57617.2 +2023-09-04T13:00+02:00,2346,3691.6,4944.4,1401,426.9,2453.5,10.5,48.7,0.4,142.4,1307.4,368.9,2486.6,37023.2,57259.2 +2023-09-04T13:15+02:00,2349.4,3698.8,4917,1393.1,426.9,2439.8,10.4,33.3,0.4,142.2,1297.9,350.3,2450.9,36927.6,56880.9 +2023-09-04T13:30+02:00,2371.8,3704.8,4886.7,1390.2,426.9,2456.2,10.3,17.6,0.4,142.2,1276.5,327.1,2443.1,36698.5,56501.9 +2023-09-04T13:45+02:00,2367,3704.4,4899.6,1394.8,426.9,2446.7,10.2,17.7,3.9,142.2,1268.4,325.5,2452.9,36387.8,55769.9 +2023-09-04T14:00+02:00,2365.5,3705.7,5027.6,1391.9,426.5,2447.8,10.2,17,0.4,142.2,1296.5,345.6,2400.9,35844.7,55792.7 +2023-09-04T14:15+02:00,2398.6,3712.6,5034.1,1400.7,426.5,2453.8,10.2,17.3,0.4,142.2,1306.9,340,2461,35298,55577.9 +2023-09-04T14:30+02:00,2430.1,3724.7,5048.3,1401,426.9,2462.4,10.1,28.4,1.1,142.2,1300.7,338.5,2480.5,34561.3,55455.8 +2023-09-04T14:45+02:00,2424.7,3736.1,5054.5,1405.5,427.9,2458.6,10.1,31.5,3.7,142.2,1285.7,312.4,2551.6,33653.8,55393.6 +2023-09-04T15:00+02:00,2431.8,3766.3,5429.4,1419.6,427.7,2468,10,26.8,0.7,142.2,1288.2,318.7,2518.6,32625.1,55233.2 +2023-09-04T15:15+02:00,2422.1,3776,5710.7,1431.8,428.4,2502.4,10,51.6,25,142.2,1300.4,303.7,2518.6,31445.6,54933.9 +2023-09-04T15:30+02:00,2409.5,3776.9,5841.5,1470.4,428.4,2612.5,10.1,66.9,49,142.2,1296.1,303.9,2579,30091.2,54722.3 +2023-09-04T15:45+02:00,2395.7,3771.5,5932.6,1626.4,428.4,2651.3,10.1,64.8,114.6,142.2,1288.7,298.8,2609.1,28646.4,54443.5 +2023-09-04T16:00+02:00,2383.2,3779.2,6121.4,1644.7,428.4,2930.8,10.1,38.9,1.4,138.6,1287.3,328.6,2635.9,26977.3,54222.7 +2023-09-04T16:15+02:00,2373,3790.4,6406.5,1694,428.4,3054.3,10.1,38.4,2.5,138.6,1255.9,400.7,2652.8,25284.4,54202.9 +2023-09-04T16:30+02:00,2369.4,3801.6,6684.7,1753.2,428.4,3375.2,10.1,104.8,276.4,138.6,1255.2,431.4,2677.9,23405.2,54250.2 +2023-09-04T16:45+02:00,2366.7,3808.5,7044.6,1976.5,429.2,3746.7,10.2,168.9,402.1,138.6,1257.2,459,2714.9,21345,54359.8 +2023-09-04T17:00+02:00,2355,3856.8,7430.8,2104.3,428.9,4144.2,10.2,80.9,90.6,138.6,1284.9,448.3,2744.4,19174.8,54657.5 +2023-09-04T17:15+02:00,2338.7,3883.2,7920.3,2295.6,427.8,4335.8,10.3,139.6,198.2,138.6,1304.6,400.7,2828.7,16844.6,55277.5 +2023-09-04T17:30+02:00,2317.6,3919.6,8335.2,2563.3,426.9,4706.1,10.4,206,1127.3,138.6,1306.9,383.6,2810,14419.9,55524.6 +2023-09-04T17:45+02:00,2299.6,3937.9,8586.6,2737.7,426.1,5177.4,10.5,287.3,2332.2,138.6,1303.5,383.3,2857,12021.5,55901.5 +2023-09-04T18:00+02:00,2282.4,4035.7,8706.7,2912.4,426.9,5847.8,10.5,161.8,1502.2,138.6,1303.4,430.9,2889.8,9639.1,56436.3 +2023-09-04T18:15+02:00,2266.2,4082.6,8852.5,3048.6,426.9,6184,10.7,269.7,2246.5,138.7,1304,374.9,2967.9,7360.9,56370.6 +2023-09-04T18:30+02:00,2249.8,4099.6,8934.6,3149.6,426.9,6298.9,10.8,408.1,4653.8,138.6,1307.5,346.7,3102.4,5275.3,56095.2 +2023-09-04T18:45+02:00,2238.7,4111.7,8995.7,3186.2,426.9,6377.3,10.9,453.5,6026.5,138.6,1302.9,354.2,3397.7,3487.8,56112.4 +2023-09-04T19:00+02:00,2232.2,4134.8,9037.5,3196.1,428.9,6709.3,11.1,428.2,6042.4,138.6,1315.6,350.4,3705.2,2087,56200.8 +2023-09-04T19:15+02:00,2237.7,4157.6,9168.5,3197.6,466.2,6838.3,11.4,391.2,6117.5,138.6,1310.4,387.3,4199.8,1115.8,56158.3 +2023-09-04T19:30+02:00,2239.6,4145.6,9240.2,3206.1,499.2,6900.4,11.5,346.6,6008.2,138.6,1307.4,425.4,4797.3,467,55852.3 +2023-09-04T19:45+02:00,2250.7,4152.7,9299.9,3201.3,520,6898,11.7,332.4,5814.6,138.6,1297.6,460.5,5517.2,116.9,55255.4 +2023-09-04T20:00+02:00,2259.3,4146.2,9343.7,3214.8,471.6,6808.3,12,320.3,5712.3,135.4,1284,456.2,6002.2,19.7,55180.6 +2023-09-04T20:15+02:00,2273.2,4143.3,9318,3211.7,427.5,6500.8,12.1,301.7,5390.9,135.8,1307.5,437.9,6423.4,5.4,54856.6 +2023-09-04T20:30+02:00,2286.9,4144.1,9356.1,3202.5,426.9,6427.8,12.2,324.3,4968.1,136.5,1313.8,436.5,7094.7,2.9,54929.1 +2023-09-04T20:45+02:00,2299.2,4134,9399,3166.6,426.9,6316.1,12.3,266.6,3321.3,136.9,1320.9,526.1,7748.4,2.4,54205.7 +2023-09-04T21:00+02:00,2296.6,4087.8,9407.7,3094.1,426.9,6243.8,12.5,337.6,4489.9,136.9,1321.4,553.2,8391.9,3.2,53372.6 +2023-09-04T21:15+02:00,2299.3,4066.9,9368.3,3025.7,426.9,6097.5,12.7,348.2,3124.7,135.6,1317.9,559.6,8992.7,2.8,52355.7 +2023-09-04T21:30+02:00,2298.9,4049,9293.8,2892.9,426.9,5675.8,12.7,307.6,2338.1,135,1318.3,585.2,9476.7,1.7,51700.7 +2023-09-04T21:45+02:00,2310.9,4046.8,9261.4,2854.4,426.9,5374.5,12.7,294.3,1405,135,1314.3,601.4,9933.7,1.6,50650.1 +2023-09-04T22:00+02:00,2315.4,3966.9,9231.5,2712.7,426.9,5236.4,12.7,265.6,1257.6,135,1317.1,627.6,10128.5,1.9,49651.1 +2023-09-04T22:15+02:00,2337.3,3951.1,9083.5,2642.6,426.9,5020.9,12.7,144,522.4,135,1319.7,611.3,10639.4,1.4,48866.1 +2023-09-04T22:30+02:00,2350.5,3930.9,8897.7,2481,426.9,4722.3,12.8,147.9,225,137.2,1311.3,586.6,11078.7,1.4,47754.2 +2023-09-04T22:45+02:00,2356.9,3918.3,8448.7,2372.1,426.9,4558.1,13,104.6,125.4,137.2,1313.7,576.2,11574.7,1.4,46809.6 +2023-09-04T23:00+02:00,2366.3,3843.1,8090.7,2288.9,426.9,4546.1,13.1,101.2,480,137.2,1320.7,586.1,11907.4,1.4,45534.5 +2023-09-04T23:15+02:00,2378.7,3821.2,7906.3,2045.5,426.9,4406.2,13.2,85.2,133.4,135,1316.1,578.7,12120.2,1.4,44803.1 +2023-09-04T23:30+02:00,2391.3,3818.1,7814.7,1737.5,426.9,4179.7,13.2,92.7,140.9,135,1309.7,610.1,12314.8,1.4,44050.8 +2023-09-04T23:45+02:00,2408.4,3816.1,7564.5,1605.5,426.9,4105.3,13.2,128.2,95.9,135,1284.2,617.6,12600.4,1.4,43333.9 +2023-09-05T00:00+02:00,2426.9,3748.5,7428.4,1564.9,431.5,4384.1,13.2,188.4,572.5,137.1,1280.8,616.5,12686.4,1.5,42740.1 +2023-09-05T00:15+02:00,2441.2,3744,7353,1559.8,431.5,4218.7,13.2,131.2,388.9,137.1,1291.9,605.4,12885,1.4,42190.7 +2023-09-05T00:30+02:00,2457.3,3741.7,7284.6,1543.8,431.5,4128.3,13.2,98.2,313.7,137.1,1296.9,574.1,12815.6,1.4,41502.8 +2023-09-05T00:45+02:00,2467.1,3732.4,7252.9,1519.4,431.5,4018.8,13.3,83.5,71.4,137.1,1282.8,571.5,12847.6,1.4,41293.2 +2023-09-05T01:00+02:00,2472.4,3710.5,7131.1,1523.7,431.5,3812.4,13.2,149.4,451.5,137.1,1290.4,535.7,12818,1.4,41294.3 +2023-09-05T01:15+02:00,2472.7,3717.9,7150,1523.7,431.5,3757.8,13.3,94.8,354,137.1,1304.4,527.8,12904.2,1.4,41164.4 +2023-09-05T01:30+02:00,2470.6,3718.3,7095.1,1506.5,431.5,3730.3,13.4,57.3,38,137.1,1281.3,479.6,12968.2,1.4,40576.3 +2023-09-05T01:45+02:00,2464.5,3716.8,7061.5,1493.4,431.5,3706,13.5,55.1,12.1,137.1,1294.3,429.4,13134.8,1.4,40554.6 +2023-09-05T02:00+02:00,2456.8,3709.9,7103,1358.8,431.5,3705,13.6,78.9,171.2,137.1,1311.6,394.2,13160.9,1.4,40283.7 +2023-09-05T02:15+02:00,2448.3,3710.2,7060,1335.7,432.2,3635.7,13.7,52.2,8.3,137.1,1310.4,363.8,13015.1,1.8,40059.8 +2023-09-05T02:30+02:00,2443.1,3707.7,7021,1334.6,431.6,3633,13.8,139.4,25.8,137.1,1314.7,334.9,12907.8,1.3,40242.2 +2023-09-05T02:45+02:00,2440.1,3708.1,7030.5,1333.1,431.5,3675.8,13.9,148.2,32.6,137.1,1324.3,297.6,12774.4,1.4,40326.9 +2023-09-05T03:00+02:00,2435,3706.1,7104.1,1359.8,431.5,3578.4,13.9,145.6,9.9,137.1,1313.6,275.5,12488.9,1.4,40370.6 +2023-09-05T03:15+02:00,2432,3699.8,7079.4,1371.8,431.5,3569.1,14.1,147.9,48.8,137.1,1315.3,275.5,12348.9,1.4,40553.2 +2023-09-05T03:30+02:00,2428,3699.3,7060.4,1372.7,431.5,3562.9,14.1,103.2,121.2,137.2,1314.8,248.6,12331.7,1.4,40622.3 +2023-09-05T03:45+02:00,2430.2,3703,7071.5,1372.4,431.5,3602.9,14.2,89,112.4,137.5,1309,196.5,12353.6,1.9,40747.7 +2023-09-05T04:00+02:00,2431.2,3714.8,7194.7,1339.2,431.5,3609.9,14.3,78.3,144.6,137.5,1293.3,136.6,12356.4,1.4,40772.9 +2023-09-05T04:15+02:00,2433.7,3725.9,7230.9,1328,431.5,3628.7,14.3,75.7,236.6,137.6,1293.4,100.2,12283.1,1.4,40952.8 +2023-09-05T04:30+02:00,2432,3724,7305.4,1335.5,431.5,3681.2,14.4,119,277.1,137.5,1303.5,89.2,12150.4,1.4,41150 +2023-09-05T04:45+02:00,2431.4,3729.4,7256.1,1444.4,431.5,3940.5,14.4,147.5,124.6,137.5,1303,78.9,12122.1,1.9,41515 +2023-09-05T05:00+02:00,2427,3769.5,7671.8,1475.6,431.5,4318.4,14.4,128.9,35.8,137.5,1307.1,69.9,12143.3,1.5,42928 +2023-09-05T05:15+02:00,2420.9,3783.9,8179.4,1575.5,431.5,4441.5,14.4,103.1,46.1,137.5,1306.9,74.9,12139.6,1.5,43563.4 +2023-09-05T05:30+02:00,2417.8,3807.2,8620.2,1590.4,431.5,4748.7,14.4,43.6,130.1,137.5,1303.6,77.6,12074.6,1.5,45062 +2023-09-05T05:45+02:00,2416.3,3844.8,8800.2,1611.8,431.5,4798,14.5,234.5,515.5,137.5,1305.7,72.2,12003.4,1.6,46726.7 +2023-09-05T06:00+02:00,2416.8,3938.1,9175.5,1646.2,432.3,4850.6,14.4,178.9,539.2,137.5,1305.6,64,12061.6,3.3,49966.6 +2023-09-05T06:15+02:00,2416.3,3992.2,9374.2,1717.8,431.6,5025.1,14.4,135.5,2176.6,137.5,1300.5,60.8,11863.5,10.6,51515.8 +2023-09-05T06:30+02:00,2415.1,4021.6,9467.9,1871.3,431.5,5051.8,14.4,191.8,3288.7,137.5,1279,79.1,11752.2,71.3,52738.7 +2023-09-05T06:45+02:00,2414.2,4041,9491.5,1925,431.5,5113.1,14.4,296.6,3871.7,137.5,1288.2,103.9,11979.8,316,53768.2 +2023-09-05T07:00+02:00,2413.7,4062,9490.5,2017.8,431.5,5158.1,14.4,217.3,4408.3,135.4,1300.7,103.5,11683.7,1027.7,55217.4 +2023-09-05T07:15+02:00,2411.9,4078.5,9476.5,2028.2,431.5,5174.7,14.4,229.6,4826.3,135.4,1295.8,105.7,11395,2144.8,56238.8 +2023-09-05T07:30+02:00,2413.7,4080.9,9443.3,2049.6,431.5,5162.9,14.3,120.1,4836,135.4,1294.1,104.7,11096.7,3651.2,56897.5 +2023-09-05T07:45+02:00,2395.6,4097.1,9537.6,2133.1,431.5,5103.1,14.1,141.3,3347.4,135.4,1299.8,110.4,10797.9,5506.5,57511.9 +2023-09-05T08:00+02:00,2420.1,4085.7,9561.1,2068.4,431.5,5123.8,14,192.1,4876.3,135.4,1305.4,107.2,10217.8,7599.5,58517.1 +2023-09-05T08:15+02:00,2444.8,4087.3,9604.8,2069.6,431.5,5097.8,13.7,103.2,2837.9,135.4,1304.4,89.7,9470.4,9861.4,59158.4 +2023-09-05T08:30+02:00,2451.9,4061,9612.3,1999.6,431.5,4960.6,13.6,57.4,1768,135.4,1298.9,81.4,8496.6,12203,59694.4 +2023-09-05T08:45+02:00,2462.8,4061.3,9532.6,1973.4,431.5,4842.2,13.4,47.1,418.9,135.4,1295.8,77.8,7461.7,14563.9,59894.9 +2023-09-05T09:00+02:00,2465.3,3972,9475.5,1977.1,431.5,4931.2,13.2,211.8,1562,135.4,1294.3,82.3,6533.8,16904.2,59748.3 +2023-09-05T09:15+02:00,2474.6,3957.5,9383.4,1931.3,431.5,4911.3,13.1,148,674.2,135.4,1278,89.9,5827.7,19198.3,59757.5 +2023-09-05T09:30+02:00,2489.6,3936.1,9015.6,1902.3,431.5,4720.7,12.9,169.9,478.6,135.4,1281.9,95.4,5178.7,21361.2,59942.1 +2023-09-05T09:45+02:00,2497.2,3924.9,8206.3,1857.6,431.5,4355.6,12.8,66.8,676.7,147,1280.4,94.6,4749,23292,60061 +2023-09-05T10:00+02:00,2482.8,3838.4,7548.4,1718.4,431.5,3825.4,12.6,176.4,1068.4,147,1270,98.6,4407.4,24950.1,59665.5 +2023-09-05T10:15+02:00,2412.9,3808.1,7144.5,1622.9,431.5,3494.5,12.4,199.6,299.2,147,1269,117.6,4250.4,26623.4,59515.1 +2023-09-05T10:30+02:00,2343.5,3793.6,6939.3,1607.2,431.5,3236.1,12.3,95.2,55.4,147,1268.7,123.7,4121.9,28144.1,59421.2 +2023-09-05T10:45+02:00,2323.3,3783.9,6651.1,1557.2,431.5,2950.5,12.1,95.6,47.9,152.1,1250.4,160.8,3973,29572.1,59531 +2023-09-05T11:00+02:00,2303.7,3738.9,6732.9,1592.7,431.5,3108.2,11.9,170.7,654.3,152.1,1264.3,173.6,3840.8,30733.1,59629.1 +2023-09-05T11:15+02:00,2297,3727.7,6682.4,1599.2,431.5,3077.2,11.8,121.6,180.3,152.2,1259.7,149.5,3779.6,31841.8,59730.4 +2023-09-05T11:30+02:00,2298.9,3726.6,6666.2,1609,430.9,2967,11.7,36,26.7,152.5,1240,119.6,3746.7,32893,60301 +2023-09-05T11:45+02:00,2300.7,3724.5,6406.8,1630.7,431.5,2933.7,11.5,123.2,91.3,152.5,1261.1,101.7,3685.6,33809.5,60404.8 +2023-09-05T12:00+02:00,2308.9,3695,6213.5,1760.2,431.5,2891.8,11.4,204.1,527.7,152.2,1261.6,101.9,3550.4,34573.3,59992.4 +2023-09-05T12:15+02:00,2319,3688.6,6230.7,1783.9,431.5,2933.8,11.2,89.3,117.1,152.1,1266.9,114.2,3421.7,35112.6,59707.4 +2023-09-05T12:30+02:00,2323.4,3691.5,6132.6,1786.3,431.5,2924.7,11.1,64.2,124.7,152.1,1274.2,124.4,3319.9,35522.3,59640 +2023-09-05T12:45+02:00,2334.9,3686.6,6166.8,1711.8,431.5,2914,11,38.6,83.5,152.1,1276.9,139.1,3232.6,35788,59255.3 +2023-09-05T13:00+02:00,2343.3,3671.4,6144,1609.2,431.5,2735.3,10.9,46.8,92.5,151.7,1265.1,131.4,3107.4,35996.5,59001.1 +2023-09-05T13:15+02:00,2363.1,3671.2,6109.4,1580.3,431.5,2649.7,10.8,33.2,86.8,151.7,1260.8,152,3001.6,36016.8,58777.5 +2023-09-05T13:30+02:00,2336.2,3655,6152.8,1568.3,431.5,2617.3,10.6,31.8,107.7,151.7,1241.2,183.7,2932.2,35910.4,58424.8 +2023-09-05T13:45+02:00,2326.8,3657.7,6184.8,1547.4,431.4,2645.6,10.6,23.9,49.3,151.7,1249.7,207.2,2898.9,35643.7,57854 +2023-09-05T14:00+02:00,2316.7,3657.6,6327.5,1555.3,430.9,2608.3,10.5,34,79.4,151.7,1246.1,258.5,2822.8,35254.3,57609.3 +2023-09-05T14:15+02:00,2362.1,3654.6,6487.4,1576.9,431.5,2765.1,10.4,36.9,105.6,151.7,1230.1,276.2,2777.1,34664,57434.8 +2023-09-05T14:30+02:00,2397.4,3658.8,6643.3,1610.6,431.5,2850.1,10.4,79.9,118.4,151.7,1220.3,267.4,2681.6,33923.5,57521.2 +2023-09-05T14:45+02:00,2384.4,3676,6753.2,1627.2,430.8,2827.2,10.3,103.1,182.8,152.1,1204.2,285.1,2675.9,33039,57148.8 +2023-09-05T15:00+02:00,2375.8,3676.9,6776.7,1609.7,431.5,2960.3,10.3,109.2,32,152.1,1193.4,327.1,2672,31912.1,56904.2 +2023-09-05T15:15+02:00,2382.6,3692.1,6979.7,1627.2,431.5,2972,10.3,145.7,94.8,151.8,1207.9,360.1,2627,30746,56593.2 +2023-09-05T15:30+02:00,2363.4,3707.8,7188.4,1631.3,431.5,2987.1,10.3,127.5,21,151.7,1226,394.7,2605.1,29363.9,56308 +2023-09-05T15:45+02:00,2360.3,3714.3,7239.4,1634.5,431.5,2979.6,10.3,164.7,196.3,151.7,1258.4,405.6,2604,27826.4,55584 +2023-09-05T16:00+02:00,2366.4,3736.4,7330.8,1718.4,431.5,3165.1,10.2,112.1,50.4,151.7,1259.4,440.1,2628.2,26260.5,55579.9 +2023-09-05T16:15+02:00,2388,3752.7,7377.1,1835,431.5,3209.9,10.2,129.3,77.7,151.7,1252.9,511.1,2595.1,24547.4,55188.8 +2023-09-05T16:30+02:00,2450.2,3763,7846.5,1870.4,431.5,3268.3,10.3,147.3,170.1,151.7,1250.1,483,2541.5,22629.3,55095.8 +2023-09-05T16:45+02:00,2423.4,3773.1,8633,2002,431.5,3444.8,10.3,209.6,1172.4,151.7,1250.8,432.8,2503.7,20667.5,55082.8 +2023-09-05T17:00+02:00,2379.8,3819.2,9408.2,2106.9,431.5,4207.5,10.3,125.6,245.9,151.7,1250.9,406.4,2464.1,18584.4,55422.6 +2023-09-05T17:15+02:00,2391.5,3838.3,10001.8,2217.5,431.5,4468.1,10.4,125.4,509.9,151.7,1256.9,420.5,2437.1,16361.2,55523.2 +2023-09-05T17:30+02:00,2390.2,3858.9,10339.6,2493.4,431.5,5122.4,10.4,212.2,1082.4,151.7,1270.1,450,2434.3,14120.4,55580.2 +2023-09-05T17:45+02:00,2383,3903.3,10530.3,2761.8,432.1,5512,10.5,231.4,2350.2,151.7,1264.8,466,2427.4,11790.7,56245.2 +2023-09-05T18:00+02:00,2373.4,3989.5,10817.6,3019.1,433.1,5870,10.6,91.9,1348.6,151.7,1236,489.5,2580.5,9462.7,56330.1 +2023-09-05T18:15+02:00,2361.1,4028.3,11013.6,3232.4,433.1,6199.5,10.7,222.7,2662.5,151.7,1267.6,518.3,2711.4,7239.4,56228.4 +2023-09-05T18:30+02:00,2347.4,4048.2,11136,3286.3,434.5,6375,10.8,367.9,4043.8,151.7,1274.8,519.1,2856.7,5217.3,56354 +2023-09-05T18:45+02:00,2332.7,4073.7,11233.8,3308.9,434.6,6570.8,11,457.6,4798.4,138.8,1256.5,548.6,2999.3,3479.7,56420.1 +2023-09-05T19:00+02:00,2324.1,4094.4,11246.7,3102.1,435.6,6827.4,11.2,494.4,6056.9,138.9,1240.8,632.5,3147.7,2141.9,56628.7 +2023-09-05T19:15+02:00,2319.3,4104.1,11325.5,3075,478.3,6824.3,11.4,525.4,6647.3,139.2,1218.1,712.7,3488.4,1173.4,56399.8 +2023-09-05T19:30+02:00,2319,4106,11330.3,3064.6,496.4,6886,11.7,512.3,6811.6,139.2,1237.2,794,4072.9,477.8,56353 +2023-09-05T19:45+02:00,2321.3,4112.3,11340.9,3073.3,496.5,6905.3,11.9,464.5,6634.8,138.8,1256.1,872.7,4737.9,113.3,56048.1 +2023-09-05T20:00+02:00,2317.9,4099,11420.6,3066,472.6,6907.7,12,453.5,6435.3,139.1,1217.3,983.7,5131.6,20.6,56108.2 +2023-09-05T20:15+02:00,2316.6,4101.7,11530.3,3055.4,434.6,6760.6,12.2,445.9,5569.2,139.2,1214.2,1073.6,5652.8,5.5,55967.4 +2023-09-05T20:30+02:00,2312.1,4094.5,11639.5,3032.4,435.6,6761,12.3,456.2,4313.7,138.9,1219.3,1161.3,6370.1,3.1,55665.6 +2023-09-05T20:45+02:00,2311.7,4083.2,11640.2,2928.8,434.6,6723.3,12.5,340.6,2894.9,138.8,1234,1212.2,6951.6,2.7,54926.8 +2023-09-05T21:00+02:00,2306.1,4033.5,11680.7,2797.9,434.6,6718.1,12.7,471,2649.1,142.4,1246.6,1244.1,7461.4,3.7,54050.7 +2023-09-05T21:15+02:00,2306.8,4034.5,11630.9,2766.2,435.4,6590.5,12.8,409.2,2189,142.2,1255.5,1302.7,7873.7,2.1,53123.4 +2023-09-05T21:30+02:00,2303.5,4029.9,11617.8,2729.1,435.7,6353.5,13,111.8,1484.7,142.1,1266.2,1352.4,8226.1,1.6,52006.7 +2023-09-05T21:45+02:00,2303.5,4020,11555.8,2688.5,435.4,5983.3,13,142.1,935.4,142.1,1265.7,1403.3,8550.8,1.3,51075.5 +2023-09-05T22:00+02:00,2303.9,3949.3,11452.2,2695.3,435,5856.5,13.3,212,1105.1,142.1,1254.8,1511,8514.6,1.2,49783.8 +2023-09-05T22:15+02:00,2306.7,3928.7,11350.5,2680.8,434.6,5659.2,13.4,84.5,686,142.4,1280.2,1511.2,8601.6,1.2,49094.6 +2023-09-05T22:30+02:00,2308.2,3898.7,11261.6,2535.1,434.6,5392.7,13.6,99.3,395.4,142.2,1275.3,1464.6,8635,1.1,48027.8 +2023-09-05T22:45+02:00,2310.2,3892.3,11059.2,2498.1,434.6,4993.5,13.7,94.1,359.7,142.1,1249.2,1449.3,8628.2,1.1,46954.9 +2023-09-05T23:00+02:00,2312.6,3824,10831.7,2364.5,434.6,4665.7,13.9,198.1,671.2,142.1,1234.5,1463.8,8422.1,1.1,46131.5 +2023-09-05T23:15+02:00,2322.6,3806.3,10341.8,2357.8,434.7,4577.9,14,163.6,879.7,142.1,1273.3,1422.4,8061.2,1.1,45757.4 +2023-09-05T23:30+02:00,2336,3804.1,9899.8,2394.5,436,4565,14,184.1,849.4,142.1,1287.6,1424.2,7805.8,1.1,44992.4 +2023-09-05T23:45+02:00,2347.8,3795.6,9773,2303.9,435.2,4559.3,14.1,110.2,641.4,142.1,1288.3,1390.6,7526.7,1.1,44561 +2023-09-06T00:00+02:00,2361.5,3731.1,9612.5,2294.2,435.8,4575.2,14,88.8,677.8,139.9,1158.8,1352.7,7210.5,1.3,43916.9 +2023-09-06T00:15+02:00,2381.2,3726.5,9474.9,2168.3,436.9,4513.9,14,96.6,541.5,139.9,1160.8,1327.5,7041,1.3,43377.8 +2023-09-06T00:30+02:00,2400.2,3724.8,9409.9,2127.7,436.9,4473,14,79.1,450.4,140.2,1151.2,1333.8,6828.9,1.3,42849 +2023-09-06T00:45+02:00,2408.2,3725.6,9315.6,1976.9,435.6,4412.6,14,84.5,324.8,140,1153.6,1357.7,6598.3,1.3,42474.8 +2023-09-06T01:00+02:00,2406.6,3698.7,9071.5,1838.4,436.2,4195.6,14.1,87.7,324.1,139.9,1153.3,1319.3,6307.1,1.2,41539.2 +2023-09-06T01:15+02:00,2414.4,3692.2,8880.2,1772,435.4,4182.1,14.2,108,348.2,143.3,1149.7,1290.6,6125.7,1.2,41385.4 +2023-09-06T01:30+02:00,2424,3700.9,8859.2,1733.3,435.4,4231.6,14.4,100.6,90.7,143.3,1154.8,1248.7,6049.5,1.2,41061 +2023-09-06T01:45+02:00,2420.8,3700.8,8897.3,1719.7,435.4,4280.5,14.6,93.3,80.2,143.3,1154.3,1263.4,5862.2,1.2,40708.9 +2023-09-06T02:00+02:00,2420.9,3686.4,9032.5,1713.8,435.6,4135.1,14.6,117.4,46.5,143.3,1157.5,1287.1,5517.1,1.2,40105.4 +2023-09-06T02:15+02:00,2415.5,3690.6,9032.3,1715.3,436,4169.9,14.7,151.1,112.6,143.3,1161.5,1246.1,5250.5,1.2,39919.8 +2023-09-06T02:30+02:00,2409.8,3692.7,9039.4,1708.1,436.3,4182.5,14.7,150.5,147.7,143.3,1161.6,1237.7,5010.3,1.2,40052.3 +2023-09-06T02:45+02:00,2403.6,3688.6,9131,1697.7,436.3,4184.1,14.9,170.1,142.9,143.5,1163.1,1220.2,4835,1.3,39882.4 +2023-09-06T03:00+02:00,2398.5,3674.3,9463.4,1729.3,436.5,4196.4,15,160.5,71.9,143.7,1144.5,1234,4637.1,1.3,39889.4 +2023-09-06T03:15+02:00,2392,3678.4,9528.8,1768.7,435.4,4201.4,15,173.7,135.2,143.7,1143.3,1203.4,4442.9,1.3,39930.9 +2023-09-06T03:30+02:00,2385.5,3680.8,9532.5,1781.3,435.4,4231.4,15,164.6,109.7,143.4,1163.4,1131.1,4267.3,1.3,39790.8 +2023-09-06T03:45+02:00,2386.2,3683.4,9718.3,1757.6,435.4,4225.1,15.1,174,114.7,143.3,1152.1,1064.7,4025.1,1.3,39983.7 +2023-09-06T04:00+02:00,2390.9,3692.5,9865.2,1711.6,436.1,4323.9,15.2,116.9,58.4,143.3,1130.3,1050.1,3789.1,1.2,40692.4 +2023-09-06T04:15+02:00,2393.2,3697,9978,1733.7,436.9,4326.7,15.2,122.5,80.1,143.3,1132.5,1050.9,3586.4,1.2,40901.8 +2023-09-06T04:30+02:00,2402.8,3701.8,10101.7,1841.5,435.6,4402.9,15.2,136.8,197.2,143.3,1142.2,1086.1,3313.1,1.2,41251 +2023-09-06T04:45+02:00,2400.6,3710.3,10323.9,1990.9,435.4,4451.9,15.2,161.4,441.7,143.3,1138.9,1125.9,3076.7,1.3,42022 +2023-09-06T05:00+02:00,2399.6,3754.1,10683.7,2206.7,434.8,4679.1,15.2,181.5,420.3,143.3,1150.3,1115.6,2867.3,1.3,43267.4 +2023-09-06T05:15+02:00,2397.2,3797.3,10968.5,2318.9,434.7,4829.6,15.3,167.8,574.5,143.3,1152.6,1068.9,2719.5,1.3,44028.1 +2023-09-06T05:30+02:00,2396.7,3817.9,11053,2449.4,435.4,5126.4,15.4,293.8,1114.9,143.3,1163.8,1043.8,2667.5,1.9,45129.6 +2023-09-06T05:45+02:00,2397.1,3852.5,11099.9,2654.5,436.4,5341.7,15.4,293.5,1684.8,143.3,1163.4,1038.9,2627.1,1.9,46791.7 +2023-09-06T06:00+02:00,2403.8,3972,11056.1,2771.7,434.5,5718.6,15.4,277.9,2220.5,143.6,1161.5,1056,2580.6,3.2,49652.8 +2023-09-06T06:15+02:00,2404.1,4002.8,11099.4,2840.4,434.7,6005.3,15.4,434.4,3225.2,143.5,1146.1,1014.3,2537,9.3,51478.5 +2023-09-06T06:30+02:00,2402.3,3999.4,11086,2889.3,436.3,6158.8,15.5,523,4093.8,143.3,1155.9,1010,2542.2,57.4,52401.8 +2023-09-06T06:45+02:00,2403.8,4016.6,11121.8,2915.9,435.5,6382.3,14,451.3,4531.7,143.3,1163.4,1003.1,2724.4,292,53162.2 +2023-09-06T07:00+02:00,2404.9,4037.1,11103.4,3047,458.4,6461.1,12.7,424.5,5486.2,143.5,1166.9,974.1,2834.4,978.3,54537.3 +2023-09-06T07:15+02:00,2399.7,4049.9,11094,3082.2,491.8,6458.7,12.6,440.9,5527.9,143.5,1172.3,943.2,2839.8,2054.4,55646.1 +2023-09-06T07:30+02:00,2403.8,4061,11056.7,3114.8,452.4,6460.6,12.5,395.2,5157.3,143.3,1173.4,919.2,2845.4,3548.3,56470.7 +2023-09-06T07:45+02:00,2401,4064.4,11051.2,3113.4,433.8,6403.3,12.3,324.6,3991,143.3,1173,906.7,2863,5381.9,57154.9 +2023-09-06T08:00+02:00,2410.8,4060.5,10992,3046.6,434.9,6264.5,12.1,402,4765.3,143.3,1163.3,889.2,2906.1,7491,57603.1 +2023-09-06T08:15+02:00,2418.1,4048.5,10917.9,3047.3,435.4,6075.4,11.8,323.8,3309.2,143.5,1172.1,831.3,2879.9,9730,58832.5 +2023-09-06T08:30+02:00,2420.4,4029.5,10837.9,3041.1,435.4,5981.8,11.5,191.8,2295.8,143.5,1175.9,808.2,2774.5,12046.2,59563.9 +2023-09-06T08:45+02:00,2431.4,3999.6,10887.3,2997.6,435.4,5786.4,11.3,96,1088.5,143.3,1162.1,784.2,2556.5,14435.2,59612.7 +2023-09-06T09:00+02:00,2438.4,3929.6,10767.3,2969.6,433.9,5818.7,11.1,368.6,2418.9,143.5,1162.5,750.6,2277,16812.9,59317.9 +2023-09-06T09:15+02:00,2444.8,3908.2,10667.5,2890,433.8,5765.4,10.9,313.9,1324.6,143.5,1149.6,707.4,1971.5,19132.3,59684.6 +2023-09-06T09:30+02:00,2458,3899.9,10633.1,2752.9,433.8,5603.2,10.7,219.1,511.4,147.5,1154.8,707.9,1714.5,21381.6,60463.7 +2023-09-06T09:45+02:00,2466.5,3884.6,10026.9,2665,433.8,5062.1,10.6,132.6,296,147.5,1155.3,700.4,1488.3,23486.7,60406.3 +2023-09-06T10:00+02:00,2472.8,3789.6,9416.3,2568.2,433.8,4413.7,10.4,164.3,705.8,147.5,1149.2,706.8,1327.4,25446.1,59382 +2023-09-06T10:15+02:00,2480,3781.4,8822.9,2503.5,433.8,4099.5,10.2,107,241.1,147.5,1132,727.4,1222.3,27145.2,59501.7 +2023-09-06T10:30+02:00,2480.3,3755.9,8313.2,2331.1,434.9,3945.2,10.1,150.4,139.9,143.9,1116.1,762.1,1144.4,28739.2,59695.5 +2023-09-06T10:45+02:00,2490.6,3739.5,7991.9,2235,433.8,3801.2,9.9,111.1,3.8,144.1,1102.8,818.9,1149.8,30223.2,60211.6 +2023-09-06T11:00+02:00,2495.5,3715.3,7824.5,2142.9,433.8,3351,9.8,122.6,162.1,144.1,1119.4,850,1195.7,31547,60208.3 +2023-09-06T11:15+02:00,2493.5,3699.7,7535.8,2128,433.8,3215.6,9.7,82.3,22.3,143.9,1121.9,824.4,1276.6,32738.6,61178.2 +2023-09-06T11:30+02:00,2504.5,3695,7415,2131.3,434.4,3112.7,9.5,61.9,1.7,143.9,1120.7,836.4,1377.1,33743.5,61313.5 +2023-09-06T11:45+02:00,2507.3,3709.9,7241.8,2129.6,435.4,3084.3,9.4,57.9,14.9,143.9,1110.7,818.5,1475.5,34585.2,60406 +2023-09-06T12:00+02:00,2518.9,3666,7241.8,2076.3,435.1,3210.9,9.3,106,437.2,143.9,1116.7,813.4,1536,35300.3,59895.8 +2023-09-06T12:15+02:00,2501.6,3650.6,7088.1,2056.2,434.2,3164.9,9.2,77.1,223,143.7,1128.1,833.3,1640.3,35875.5,59693.6 +2023-09-06T12:30+02:00,2503.1,3638.3,7043.9,2056.5,434.8,3155.8,9.1,37.1,75.9,143.5,1120.8,837.5,1768.1,36302.1,59434.9 +2023-09-06T12:45+02:00,2502.1,3635.4,6807.4,2057.1,434.7,3153.6,9,43.8,15.8,143.5,1117.9,879.2,1833.1,36560,59407.7 +2023-09-06T13:00+02:00,2504.7,3626.5,6546.6,2029.1,435.4,3026.6,8.9,36.2,10.1,143.5,1111.2,927.7,1877.7,36693.1,59102.8 +2023-09-06T13:15+02:00,2505.7,3636.8,6459.7,1820.8,434.4,2989.8,8.9,36.9,11.4,143.8,1108,974.1,1926.1,36641,58772.1 +2023-09-06T13:30+02:00,2491,3605.7,6465.8,1791.2,433.8,2983.1,8.8,55.2,49.2,140,1107.5,997.9,1980.9,36458.3,58262.5 +2023-09-06T13:45+02:00,2482.2,3595.9,6465.1,1788.4,434,2976.2,8.7,39.2,4.4,140.2,1104.8,993.7,2015.9,36114.8,57787.4 +2023-09-06T14:00+02:00,2473.8,3580.3,6412.2,1778.1,434.5,3067.4,8.6,62.4,9.7,140.4,1101.7,1021.5,2020,35614.9,57387.1 +2023-09-06T14:15+02:00,2469.9,3571.4,6456.2,1790.1,434.8,3134.2,8.6,91.5,17.1,140.2,1099.3,1053,1997.5,35003.4,57545.8 +2023-09-06T14:30+02:00,2464.1,3586.7,6556.9,1788.1,435.4,3165.1,8.5,108.9,23.2,140.2,1101.8,1061.5,1989.7,34217,57231.7 +2023-09-06T14:45+02:00,2462.6,3594.8,6851.9,1781.9,435.4,3204.7,8.5,121.9,99.7,140.4,1091,1029.1,2032.5,33313.6,56858.9 +2023-09-06T15:00+02:00,2465.9,3598.8,7021.3,1842.8,434.2,3207.3,8.5,80.9,3.7,140.4,1053.1,1005.8,2069.1,32299.1,56721.9 +2023-09-06T15:15+02:00,2466.9,3618.5,7228.3,1856.9,434.7,3306.9,8.5,84.7,18.3,140.2,1040.8,981.7,2109.3,31134.7,56594.9 +2023-09-06T15:30+02:00,2449.4,3614.2,7570.8,1835.6,433.8,3314.2,8.5,94.7,130.6,140,1060.2,983.8,2173.6,29874.1,56318.7 +2023-09-06T15:45+02:00,2443,3611.9,7938.9,1865.1,433.8,3516.5,8.4,253.5,111.6,140,1079.9,959.4,2270.4,28362.8,55928.3 +2023-09-06T16:00+02:00,2449.4,3629,8444,1833.2,434.2,3857.8,8.4,103.2,1.1,140,1092.5,908.5,2402.8,26675.7,55708.9 +2023-09-06T16:15+02:00,2444.9,3655.8,8759.4,1824.4,434.9,3929.5,8.4,99.3,16.5,140,1093.9,869.9,2518.2,24851.4,55496.1 +2023-09-06T16:30+02:00,2434.2,3661.3,9085.6,1911.3,433.8,3983.1,8.4,117.1,469.2,140,1092.6,798.2,2616.6,22960.4,55231.9 +2023-09-06T16:45+02:00,2430.3,3678.8,9543.5,2056.6,433.8,4118.6,8.4,172.8,964.9,140,1096.2,709.1,2688.1,20930.9,55417.6 +2023-09-06T17:00+02:00,2423.1,3726.1,10211.5,2339.5,434.6,4645.9,8.4,113.3,526,140,1096,648.6,2833.4,18703.9,55976.4 +2023-09-06T17:15+02:00,2408.1,3776.2,10518.4,2445.3,434.3,5193.7,8.4,188.2,1545.4,140,1048.8,647.1,2981.9,16372.8,56264.2 +2023-09-06T17:30+02:00,2395.8,3817.2,10584.4,2623.4,433.6,5671.8,8.5,250.6,3252.8,139.9,1013.1,676.1,3172,14009.7,56271.9 +2023-09-06T17:45+02:00,2374,3846.1,10598.7,2812.8,432.3,5846.2,8.5,348.4,5042.7,135.9,1068.1,736.6,3334.4,11597.4,56474.2 +2023-09-06T18:00+02:00,2354.3,3907.5,10647.9,3083.9,432.3,6073.9,8.6,187.3,2776.1,135.9,1104.7,768.1,3487.6,9231.5,56773.6 +2023-09-06T18:15+02:00,2346.2,3938.4,10952.1,3407.7,431.1,6287.9,8.6,156.3,3447.7,136.2,1092.1,753.1,3687.6,7083,56950.2 +2023-09-06T18:30+02:00,2341.4,3960.9,10991.9,3524.9,430.8,6457.5,8.8,278.1,5057.3,136.3,1053.9,798.3,3923.5,5110.8,56858 +2023-09-06T18:45+02:00,2332.6,3981.5,10997.4,3598.2,430.6,6601.8,8.9,372.2,5549.6,136.2,1059.9,874.5,4236.2,3377.9,57202.3 +2023-09-06T19:00+02:00,2332.4,4040.6,10944.3,3666.5,429.2,6729.8,9,341.7,5715.9,135.9,1089.4,975.4,4546.4,1983.7,57260.2 +2023-09-06T19:15+02:00,2321.8,4020,10991.3,3682.5,429.2,6770.1,9.2,341.7,5755.8,135.9,1105.3,1079.4,5285,983,57624.8 +2023-09-06T19:30+02:00,2312.8,4013.5,11002.6,3716.9,429.2,6728.4,9.4,329,5750.6,135.9,1118,1178.9,6271.9,360.9,57336.2 +2023-09-06T19:45+02:00,2313.8,4004.8,11007.5,3745.1,428.7,6627.6,9.6,290.7,5623.3,136,1128.1,1337.9,7370.6,74.4,57297.4 +2023-09-06T20:00+02:00,2311.8,3986.2,11082.7,3769.4,427.7,6596.5,9.7,330.7,5393.5,136.3,1120.5,1460,7938,13.9,57268.9 +2023-09-06T20:15+02:00,2309.3,4015.9,11089.5,3807.3,427.7,6452.9,9.8,206.8,5045.4,136.3,1114.9,1608.5,8845.4,5.2,57045.5 +2023-09-06T20:30+02:00,2305.1,4019.9,11094.8,3784.3,427.7,6451.9,10,200.6,3833.7,136.3,1090.5,1736.4,9899.5,2.8,56832.2 +2023-09-06T20:45+02:00,2298.4,4013.5,10848.5,3716,427.7,6443.5,10.2,120,3103.2,136.3,1093.7,1864.7,10873,2.5,56031.4 +2023-09-06T21:00+02:00,2292,3985.2,10713.5,3571.6,427.7,6328.5,10.3,327.4,4150.3,136.3,1112.2,2104.2,11643.1,3.3,55119.2 +2023-09-06T21:15+02:00,2289.5,3977.2,10635.5,3446.9,427.7,6140.2,10.5,163.2,3206.5,136.3,1137,2305.7,12348.5,2.2,54023.5 +2023-09-06T21:30+02:00,2289.5,3967.3,10647.7,3340,427.7,5934.1,10.6,98.8,2545.1,136.3,1150.8,2415.7,12865,1.9,53033.6 +2023-09-06T21:45+02:00,2288.5,3955.3,10567.8,3160.5,426.7,5702.4,10.7,109.3,1623.2,136.3,1163.6,2397.7,13319.5,1.7,52253.3 +2023-09-06T22:00+02:00,2290.5,3889.4,10485.9,2828.8,426.1,5483.4,10.9,338.2,1180.4,136.3,1147.6,2394.3,13366.2,2.6,51089.4 +2023-09-06T22:15+02:00,2298,3874.8,10410.4,2465.9,427.6,5362.4,11,218.9,845.7,136.3,1140,2432.6,13615.7,1.8,50056.1 +2023-09-06T22:30+02:00,2309.9,3862.8,10419.2,2279.7,426.1,5224.2,11,225.4,661.1,136.3,1142.5,2462.4,13666.1,1.7,48951.7 +2023-09-06T22:45+02:00,2314,3852.5,10373.4,2012.1,426.1,4891.7,11.1,194.4,236.6,136.3,1136.3,2525.3,13704.5,1.5,48302.8 +2023-09-06T23:00+02:00,2323,3783.1,10334.4,1903.5,426.1,4510.3,11.1,236.1,595,136.3,1136.2,2530.4,13551,1.5,46824.2 +2023-09-06T23:15+02:00,2334.3,3771.1,10171.2,1806.4,426.1,4231,11.1,174.2,529.8,136.3,1132.7,2505.6,13296,1.5,46032.8 +2023-09-06T23:30+02:00,2347.8,3763.5,10022.2,1799.2,426.1,3982,11.2,141.8,335.8,136.3,1129.7,2465.6,13132,1.5,45207.8 +2023-09-06T23:45+02:00,2354.4,3768.5,9996.7,1810.6,426.1,3996.1,11.2,137.4,135.9,136.3,1135.2,2468.1,13024.3,1.5,44453.9 +2023-09-07T00:00+02:00,2360.3,3715.3,10018,1788.7,422.3,4142,11.2,169.3,231.1,144.8,1133.6,2452.1,12786.1,1.5,43504.3 +2023-09-07T00:15+02:00,2359.1,3709.8,9855.1,1802,422.3,3883.4,11.2,234.1,295.3,144.8,1131.6,2509.4,12614.7,1.5,43288.3 +2023-09-07T00:30+02:00,2360.4,3700.7,9604.3,1791,422.3,3870.7,11.2,93,57.4,144.8,1133.8,2577,12360,1.6,42836.9 +2023-09-07T00:45+02:00,2360.3,3699.2,9249.3,1740.5,422.3,3861.5,11.3,92.9,56.9,144.8,1139.6,2588.8,12080.5,1.6,42276.2 +2023-09-07T01:00+02:00,2366.8,3668.6,8804.6,1593,421.9,3543.5,11.3,82.8,147.7,144.8,1139,2522.6,11843.6,1.5,41669.5 +2023-09-07T01:15+02:00,2371.5,3671.8,8439.7,1467.9,420.7,3547.6,11.5,128.9,61.1,137.2,1141.6,2494.2,11586.4,1.5,41629.3 +2023-09-07T01:30+02:00,2382.9,3674.6,8169.4,1412.9,420.7,3601.8,11.6,111.4,60.6,137.2,1140.6,2436.8,11376.8,1.5,41453.7 +2023-09-07T01:45+02:00,2389.7,3667.8,7849.4,1409.3,420.7,3571.8,11.7,46.9,21.1,137.2,1132.1,2324.9,11110.7,1.5,41029.9 +2023-09-07T02:00+02:00,2395.7,3632.7,7647.2,1429.2,420.7,3526.4,11.8,124.4,1.3,137.5,1132,2206,10800.7,1.5,40807.1 +2023-09-07T02:15+02:00,2405.8,3633.1,7437.5,1434.1,420.8,3512.1,11.9,146,11.9,137.6,1138.5,2058.3,10598.2,1.5,40554.9 +2023-09-07T02:30+02:00,2407.3,3628.5,7336.6,1441.6,422,3544.6,11.9,165.4,108.5,137.5,1138.5,1940.5,10330.6,1.5,40673.8 +2023-09-07T02:45+02:00,2402.5,3634.1,7299,1537.1,420.7,3547.8,12,168.4,141,137.2,1145.1,1885.4,10132.3,1.5,40765.9 +2023-09-07T03:00+02:00,2397,3623,7267,1641.5,420.7,3425.6,12,132.9,145.2,137.2,1137.9,1824.2,9903.5,1.5,40634 +2023-09-07T03:15+02:00,2391,3626.9,7244.6,1622.5,420.7,3401.8,12,81.9,44.5,137.2,1139.4,1814.7,9736.7,1.5,40430.6 +2023-09-07T03:30+02:00,2386,3623.9,7274.8,1586.4,420.7,3392.5,12.1,67.2,35.2,137.2,1130.1,1738.3,9486.2,1.6,40189.1 +2023-09-07T03:45+02:00,2383.1,3631.6,7286.7,1606,420.7,3465.9,12.2,87.7,68.6,137.2,1122,1626.5,9268.2,1.6,40351.7 +2023-09-07T04:00+02:00,2380.4,3642.8,7289.7,1578.5,420.7,3482.7,12.2,107,79.2,137.2,1124.1,1566.1,9071,1.5,41062.5 +2023-09-07T04:15+02:00,2377.7,3656.2,7311.1,1593.6,420.7,3476.7,12.3,127,125.7,137.2,1116.8,1535.8,8941.3,1.5,40901.5 +2023-09-07T04:30+02:00,2374.4,3663.1,7576,1690.2,420.7,3481,12.3,124.3,88.9,137.2,1138.3,1522.5,8779.9,1.5,41108.5 +2023-09-07T04:45+02:00,2365.9,3655,8011.3,1813.8,420.7,3511,12.4,113.3,41.1,137.2,1145.6,1545.1,8815.7,1.5,41934.9 +2023-09-07T05:00+02:00,2359.4,3687.5,8451.2,1978.5,420.7,3802.6,12.4,172.2,89,137.2,1141,1511,8939.9,1.6,42820.4 +2023-09-07T05:15+02:00,2358.6,3707.9,8872.7,2108,420.7,3949.8,12.5,159.8,83.7,138.4,1135.2,1483.5,9026.6,1.6,43487.8 +2023-09-07T05:30+02:00,2351.1,3732,9381.7,2177.8,420.7,4202.1,12.5,105.8,97,139,1141.7,1499.4,9146.6,1.6,44673.8 +2023-09-07T05:45+02:00,2346.3,3770.7,9766.9,2270.7,420.7,4232.5,12.6,138.4,292.3,139.8,1142.8,1532.3,9292.5,1.7,46417.3 +2023-09-07T06:00+02:00,2340.6,3864.9,9954.7,2374.8,420.7,4328.3,12.5,105.3,187.2,142.4,1136.1,1601.8,9465.2,1.7,49548.8 +2023-09-07T06:15+02:00,2334.5,3899.8,10337.4,2425.2,420.7,4548.8,12.5,113.5,837.4,145.4,1135.8,1630.4,9523.6,6.1,51090.2 +2023-09-07T06:30+02:00,2328,3925.4,10579.8,2536.6,420.7,4636.1,12.6,99.3,1534.6,146.2,1135.9,1624.4,9724.3,51.5,52302 +2023-09-07T06:45+02:00,2328.7,3957.2,10646.9,2593,422.1,4680.3,12.6,210.9,1977,146.2,1137.3,1628.9,10204.2,254.9,53563.2 +2023-09-07T07:00+02:00,2325.6,4005.7,10610.3,2702.9,476.4,4817,12.5,292.9,3590.8,144.4,1134,1685.5,10383.2,896,55131.9 +2023-09-07T07:15+02:00,2315.4,4024.5,10610,2719.7,451.6,4764.6,12.5,271.1,3495.9,144.5,1132.4,1810.3,10188.8,1955.1,55745.4 +2023-09-07T07:30+02:00,2321.3,4042.6,10614.6,2692.6,420.7,4746,12.3,235.9,3081.8,144.7,1128.3,1881.9,10010.3,3432.4,56661.6 +2023-09-07T07:45+02:00,2327.9,4039.6,10571.1,2780.4,420.7,4713.1,12.2,104.6,2171.2,144.7,1136.1,1867.3,9894.7,5215,57348.3 +2023-09-07T08:00+02:00,2334.5,4027.4,10567.2,2926.3,437.9,4895.3,12,288.3,3930,144.7,1140.1,1908.1,9657.7,7294.6,58391.1 +2023-09-07T08:15+02:00,2336.3,4007.3,10507.9,2897.6,478.5,4794,11.7,217.6,2408.7,144.7,1136.4,1907.8,9156.5,9556.6,58956.7 +2023-09-07T08:30+02:00,2344.8,4008.2,10467.1,2839.8,429.6,4696.8,11.4,125.4,1694.6,144.7,1135.5,1880.8,8497.2,11903,59270.3 +2023-09-07T08:45+02:00,2358.1,4005.6,10441.7,2794.4,420.7,4462.3,11.1,135.6,555.7,144.8,1129.7,1896.6,7666.4,14202.8,59608.1 +2023-09-07T09:00+02:00,2365.1,3929.1,10437.5,2678,422.1,4468.3,10.8,317.9,1300.2,144.7,1130.5,1929.8,6640.5,16667.8,59521.3 +2023-09-07T09:15+02:00,2376.1,3910.4,10292.5,2595.9,422.7,4499.1,10.6,132.2,498.9,144.8,1131.5,1923.8,5627.4,19102.7,59981.8 +2023-09-07T09:30+02:00,2372.5,3886.8,10055.2,2458.5,422.3,4271,10.4,87.4,117.1,144.7,1124.2,1932.2,4665.4,21516.2,60089.1 +2023-09-07T09:45+02:00,2386,3887.8,9665.6,2279.5,422.3,4049.6,10.2,78.7,223.3,144.7,1132.7,2010.3,3975.2,23850.6,60329.2 +2023-09-07T10:00+02:00,2364.2,3806.9,9195.7,2208.2,422.3,3920.6,10.1,202.4,1022.3,151.4,1132.9,2094.8,3594.7,26065.7,59866.3 +2023-09-07T10:15+02:00,2369.1,3781.1,8696.9,2102.7,422.3,3751.5,9.9,69.8,429,155,1126.4,2161,3351.5,28060.6,60151 +2023-09-07T10:30+02:00,2384.3,3765.4,8295.9,1998.3,422.4,3675.6,9.8,69.8,176.9,159,1123.3,2167.5,3281.8,29733.8,60334.9 +2023-09-07T10:45+02:00,2365.4,3766.7,7954.8,1912.4,422.9,3613.5,9.7,93.4,80,165.6,1121.4,2209.4,3261.5,31233.2,60658 +2023-09-07T11:00+02:00,2349.1,3718.9,7654.2,1902,422.8,3393.7,9.5,86.2,452.4,165.7,1117.7,2195.2,3349.2,32736.9,61004.6 +2023-09-07T11:15+02:00,2364.3,3698.8,7299,1892.6,423.4,3106.5,9.4,91.9,80.6,162.1,1118.3,2172.7,3579.4,34011.5,60909 +2023-09-07T11:30+02:00,2350.1,3683.5,7001.3,1899.6,422.7,2988.5,9.3,72.2,33,162,1118.4,2208.7,3986.6,34945.4,60905.6 +2023-09-07T11:45+02:00,2341.5,3682.3,6736.6,1897.7,423.8,2962.9,9.2,56.8,4.2,162,1121,2244.7,4416.4,35849.3,60784.5 +2023-09-07T12:00+02:00,2339.9,3638.6,6487.3,1887.8,423.8,2882.9,9.1,110.9,34.8,162.1,1120.1,1891.9,4799.9,36599.9,60776.8 +2023-09-07T12:15+02:00,2329,3637.5,6376,1891.6,425.9,2691.5,9,58.9,19,162.1,1115.9,1886,5263.8,37237.2,60514.9 +2023-09-07T12:30+02:00,2325.3,3631.7,6349.1,1881.6,427.2,2520.3,8.9,43.4,1.1,162,1114.4,1891.8,5597,37653.8,60216.3 +2023-09-07T12:45+02:00,2321.3,3636.2,6298.2,1870.3,428.4,2511.9,8.8,33.8,15,162.1,1112.9,1893.5,5949.5,37928.2,60417.1 +2023-09-07T13:00+02:00,2312.9,3619.8,6310,1702,428.3,2502.7,8.7,118.1,34.2,162,1111.8,2004.5,6198.7,38051,60307.6 +2023-09-07T13:15+02:00,2316.4,3623.6,6266.6,1595.3,426.9,2493.1,8.6,67.5,30.4,162.1,1119.1,2081.8,6433,37959.3,59587.3 +2023-09-07T13:30+02:00,2312.3,3610.1,6232.2,1567.8,427.1,2518.7,8.6,57.7,34.1,162,1115.2,2073.1,6573.4,37751.5,59090.8 +2023-09-07T13:45+02:00,2320.1,3609.9,6126.6,1565.5,428.1,2475.1,8.5,67.4,31.4,161.4,1121.2,2077.7,6772.8,37399,58709.1 +2023-09-07T14:00+02:00,2320.9,3599.6,6021.4,1578.1,426.9,2464,8.4,40.6,13.1,153.5,1112.7,2235.4,6950.9,36906,58421.3 +2023-09-07T14:15+02:00,2322.5,3601.3,6081.4,1593.3,428.1,2448.7,8.4,54.5,16.7,150.8,1107.4,2340.6,7066,36243.4,58260.1 +2023-09-07T14:30+02:00,2312.8,3607.7,6106,1599.6,428.4,2528.3,8.4,125.8,17.6,150.7,1104.9,2416.8,7258.5,35411.5,58185.9 +2023-09-07T14:45+02:00,2303,3611.9,6119.1,1618.1,428.2,2783.6,8.3,62.3,23,150.7,1103.1,2486.8,7427.3,34468,57943.5 +2023-09-07T15:00+02:00,2300.1,3617.2,6320.8,1626.1,427.4,2845.6,8.3,36.5,7.6,150.8,1102.2,2962.6,7531.8,33322.4,57751.2 +2023-09-07T15:15+02:00,2283.8,3621.8,6607.5,1756.7,428.4,2852.6,8.3,55.5,23.3,150.8,1108.8,3050.8,7642.7,32035.9,57393.7 +2023-09-07T15:30+02:00,2269.7,3624.2,6728.3,1836.9,428.4,2838.9,8.3,134.7,149.5,150.9,1110.2,3151.2,7731.9,30647.4,57582.9 +2023-09-07T15:45+02:00,2267.3,3624.5,6937.7,1851.6,428.4,2866.5,8.2,100.5,373.2,149.8,1104.4,3287.9,7864.5,29076.7,57425.2 +2023-09-07T16:00+02:00,2269.7,3646.2,7238.5,1834.2,428.4,2823.4,8.2,50.2,15.4,153.4,1090,3592.2,8076.5,27344.9,57164.1 +2023-09-07T16:15+02:00,2290.8,3665.4,7470.1,1847.4,427.1,2956.4,8.3,128.9,72.2,156.5,1089.8,3779.6,8260.6,25457.6,56851.1 +2023-09-07T16:30+02:00,2324.7,3663.9,7566.2,1898.9,428,3250.1,8.3,198,151.4,157.7,1102.7,4037,8389.2,23417.1,56504.2 +2023-09-07T16:45+02:00,2317.7,3684.8,7842.7,1932.3,427.8,3453.4,8.3,231.3,257.8,158.2,1103.1,4228,8509.9,21345.2,56274.1 +2023-09-07T17:00+02:00,2302.8,3735.3,8435.8,2051.2,427.8,4012.8,8.3,130,205.9,158.2,1099.7,4332.8,8603.8,19064.4,56879.2 +2023-09-07T17:15+02:00,2291.2,3760.2,9202.4,2209.9,427.6,4568.5,8.3,171,305.4,158.2,1078,4433.2,8792.9,16636.4,57089.2 +2023-09-07T17:30+02:00,2270,3802.7,9683.3,2434.8,426.9,5098.3,8.3,168.9,637.7,158.2,1095.5,4522.4,8922,14164.5,57090.6 +2023-09-07T17:45+02:00,2240.4,3830.1,9942.8,2681,426.9,5373.3,8.4,242.2,1453.4,158.2,1092.4,4648.6,8860.8,11678.5,57404.6 +2023-09-07T18:00+02:00,2233.8,3918.8,10315.6,2809.1,426.9,5844,8.4,98.1,1234.1,163.3,1087.6,4782,8855.4,9250.8,57796.1 +2023-09-07T18:15+02:00,2223.7,3973.8,10583.9,3008.4,426.9,5925.4,8.5,229.4,2872.9,178,1095.7,4759.5,8931.4,6951.1,57511 +2023-09-07T18:30+02:00,2220.7,3998.6,10748.9,3118.7,427.8,5953.9,8.7,415.3,4555.9,180.4,1094.9,4796.4,9039.2,4894.1,57659.8 +2023-09-07T18:45+02:00,2212.3,4021.9,10785.1,3239.8,425.9,5981,8.8,552.8,6044,180.4,1101.2,4900.3,9193.9,3166.8,57825 +2023-09-07T19:00+02:00,2208.7,4054,10842.3,3350,425.4,6140.1,8.9,418.1,5826,180.4,1112,4724.1,9429,1836.5,57463.4 +2023-09-07T19:15+02:00,2202.1,4061.4,10850.4,3404,425.4,6246.2,9.1,401.1,5697.9,180.4,1116.8,4806.1,10394.4,902.2,57517.2 +2023-09-07T19:30+02:00,2199,4065.5,10789.6,3447,425.4,6264.3,9.2,370.3,5637.7,180.4,1111.7,4848.9,11794.9,305.4,57266.9 +2023-09-07T19:45+02:00,2194.7,4068.1,10625.2,3480.7,425.4,6263.5,9.5,237.9,5307.6,180.4,1097.1,4917.9,13245.8,58.9,57035 +2023-09-07T20:00+02:00,2191.2,4070.8,10742.7,3502.5,425.4,6323.7,9.7,332.3,5445.5,180.5,1096.1,4592.9,14182.5,11.6,57313 +2023-09-07T20:15+02:00,2184.2,4060.3,10719.2,3516.7,425.4,6192.6,9.9,248.5,5179.3,183.4,1103.3,4575.5,15348.6,4.3,57211.2 +2023-09-07T20:30+02:00,2178.1,4026.3,10657.2,3522.4,425.4,6132.4,10,161.7,4379.3,194.6,1106.2,4552.5,16543.4,2.8,57089.6 +2023-09-07T20:45+02:00,2174.5,4022.4,10587.1,3482,425.4,6039.2,10.2,157,2700.8,195.2,1110.4,4528.5,17537.5,2.4,56509.9 +2023-09-07T21:00+02:00,2165.4,3983.9,10772.7,3439.2,425.4,6161.7,10.3,278.6,3640.2,191.2,1103.4,4298.7,18050.1,2.2,55565.7 +2023-09-07T21:15+02:00,2165,3962.1,10687.7,3329.8,425.4,6023.6,10.4,231.4,2273.8,176.4,1105.4,4309,18510,3,54962.6 +2023-09-07T21:30+02:00,2160.8,3956.8,10396.4,3135.9,425.4,5958.5,10.6,129.8,1234,173,1114.6,4296.1,18989.4,1.9,53934.3 +2023-09-07T21:45+02:00,2155.4,3942.1,10165,3025.2,425.4,5871.5,10.7,77.6,475.9,172.9,1099.9,4281.4,19216.2,1.8,52512.1 +2023-09-07T22:00+02:00,2149.9,3870.1,10178.8,2983.9,425.4,5851.8,10.8,68.5,573.6,164.4,1103.3,4351.6,18656,2.6,51579.9 +2023-09-07T22:15+02:00,2149.1,3866.5,10040.1,2877.4,425.4,5788.5,10.9,45.3,148.5,157.7,1078.1,4383.8,18644.3,2.7,50672.8 +2023-09-07T22:30+02:00,2148.2,3855.9,9941.4,2725.3,426.1,5702.4,11,60.7,217.9,157.6,1096.1,4342.9,18464,2.3,49873.1 +2023-09-07T22:45+02:00,2153.1,3846.1,9263.3,2531.1,425.6,5559.5,11.1,75.6,157.9,157.6,1118.6,4270.5,18125.8,1.6,48858.2 +2023-09-07T23:00+02:00,2159.4,3784.4,8297.7,2458,425.4,4873.7,11.1,64.6,393.2,157.5,1126.2,4426.9,17725,2.3,47505.3 +2023-09-07T23:15+02:00,2170.8,3764.3,7909.9,2470.8,425.4,4755.3,11.2,55.8,317.1,157.6,1135,4320.2,17346.4,1.6,46754.4 +2023-09-07T23:30+02:00,2180.9,3754,7976.8,2457.9,426.1,4747.1,11.3,72,134.9,157.6,1133.4,4128.2,16946.7,1.6,45936.4 +2023-09-07T23:45+02:00,2188.1,3736,7696.8,2415.1,425.6,4585.1,11.4,76.1,382.4,157.6,1127.3,3976.1,16554.9,1.6,45586.6 +2023-09-08T00:00+02:00,2194.3,3660.6,7237.8,2262.2,426.2,4406.4,11.4,109.1,283.1,160.8,1159.8,4253.8,16050,1.7,44800.9 +2023-09-08T00:15+02:00,2200.2,3659.2,7074.8,2110.6,427,4104.3,11.5,80.8,251.9,160.9,1158.9,4120.1,15762.2,1.6,44014.3 +2023-09-08T00:30+02:00,2210.4,3652.1,7096.9,2047.9,426.1,4019.7,11.6,44.4,259.1,160.8,1158.8,4028.5,15344.5,1.6,43604.5 +2023-09-08T00:45+02:00,2214.1,3656.5,7019.1,1978.4,427.4,3973,11.7,35.8,148.1,160.8,1156.1,4022.2,15010.8,1.6,43090.9 +2023-09-08T01:00+02:00,2217.4,3637.7,7053.2,1939.8,426.1,3880.1,11.7,127.6,358.6,160.7,1155.3,3820.6,14602,1.5,42773.1 +2023-09-08T01:15+02:00,2224.3,3641.6,7034.9,1877,426.1,3888,11.7,59.7,309.5,160.8,1155.6,3693.2,14239.3,1.5,42155.9 +2023-09-08T01:30+02:00,2231.8,3645.8,6994.7,1844.4,426.1,3827.8,11.8,94.6,50.1,160.8,1156.2,3616.2,13881.2,1.5,41816 +2023-09-08T01:45+02:00,2229.1,3636.3,6997.9,1796.7,426.1,3812.4,11.8,100.8,41.5,160.7,1135.5,3527.1,13565.7,1.6,41718.8 +2023-09-08T02:00+02:00,2229.3,3630.5,6941.1,1790.2,426.1,3819.8,11.9,97.4,11.8,161,1137.9,3256.2,13195.4,1.5,41418.3 +2023-09-08T02:15+02:00,2232.9,3635.9,6895.7,1808.1,426.1,3796.3,11.9,76.6,10.6,160.9,1154.6,3225.4,12844,1.6,41074 +2023-09-08T02:30+02:00,2232.2,3637.6,6817,1763.4,426.1,3769.2,12,103.5,2.7,160.8,1152.9,3173.4,12529.9,1.6,41101.3 +2023-09-08T02:45+02:00,2230.5,3637.5,6827.6,1621.1,426.1,3800.3,12,161,114.1,160.8,1152.6,3049.5,12124.4,1.6,40917.8 +2023-09-08T03:00+02:00,2228.8,3637.9,6891.7,1609.2,426.1,3771.2,12,89.2,10.5,160.8,1146.5,2767.8,11717.3,1.5,40914.2 +2023-09-08T03:15+02:00,2222.9,3643.5,6923.5,1578.7,426.1,3817.7,12,125.1,2.2,160.8,1141.9,2670.4,11332.7,1.4,40829.6 +2023-09-08T03:30+02:00,2216.4,3647.2,6973.8,1423.7,426.8,3845.2,12.1,153.3,71.5,160.8,1144.2,2487.3,10976,1.5,40870.1 +2023-09-08T03:45+02:00,2207.9,3642.2,6983.3,1444.9,426.6,3903.5,12.1,117.6,301.1,160.8,1134.6,2285.6,10653.6,1.6,40859.7 +2023-09-08T04:00+02:00,2204,3643.2,6917.2,1428.8,426.1,4001.1,12.1,44.3,241.2,160.8,1149.2,2194.4,10379.3,1.5,41392 +2023-09-08T04:15+02:00,2198.7,3642.5,7016.4,1426.5,426.1,3994.3,12.1,47.4,213.2,160.9,1145.5,2112.4,10083.8,1.5,41387.9 +2023-09-08T04:30+02:00,2198.2,3658,7418.2,1460.1,426.1,4037.4,12.1,49.9,202.5,160.8,1153.7,2227.8,9769.8,1.6,41742.4 +2023-09-08T04:45+02:00,2204.7,3668.7,7975.3,1683.5,426.1,4131.5,12.2,40.8,173.7,162.5,1146.9,2241.9,9450.5,1.6,42177.2 +2023-09-08T05:00+02:00,2205.8,3704.1,8700.1,1953.5,426.1,4374.4,12.1,41,219.4,176.6,1145.7,2121.3,9234.7,1.6,43201.9 +2023-09-08T05:15+02:00,2209,3727.3,9646.8,2000,426.1,4469.4,12.1,51.2,293.4,181.6,1139.5,2013.1,9043.9,2,43703.9 +2023-09-08T05:30+02:00,2207.3,3739.4,10290.5,2027.5,426.1,4659.8,12.1,81.2,441.9,181.8,1149.1,1883.8,8810.9,2.2,44863.7 +2023-09-08T05:45+02:00,2206.6,3776.3,10525.5,2059.2,426.1,4767.6,12,127.3,961.6,181.7,1135.9,1752.8,8707.1,3.1,46398 +2023-09-08T06:00+02:00,2205.4,3870.6,10410.2,2101.3,426.1,4987.7,12.1,128,1040.8,182.3,1144.2,1669,8662.6,2,49409.9 +2023-09-08T06:15+02:00,2205.3,3926.5,10553.2,2244.3,424.8,5322.2,12,135,1855.4,185.4,1142.8,1613.1,8410.2,13,51123.5 +2023-09-08T06:30+02:00,2205.7,3950.5,10586.6,2286,423,5425.9,12.1,131,2921.5,185.3,1159.8,1586.2,8184.1,42.1,52189.8 +2023-09-08T06:45+02:00,2204.3,3965.3,10577.9,2456.8,421.5,5486.4,12,222.3,3677.2,185.4,1152.9,1589.8,8314.8,219.3,52869.5 +2023-09-08T07:00+02:00,2204.7,4002.5,10598.4,2695.4,421.5,5564.8,12,271.8,5175.5,185.3,1157.2,1535.1,8328.5,850.9,54298.2 +2023-09-08T07:15+02:00,2197.9,4025,10604.4,2752.8,419.4,5603.6,11.8,320.9,5209,185.3,1153,1543,8018.4,1972.4,55220.1 +2023-09-08T07:30+02:00,2201.5,4038.3,10653.6,2783.9,416.4,5622.5,11.7,306.5,4551.4,185.3,1153.1,1576.7,7726,3491,56188.2 +2023-09-08T07:45+02:00,2221.1,4051.1,10754.1,2802.3,416,5566.2,11.5,222.6,3759.8,185.3,1152,1561.1,7547.4,5362.4,57025 +2023-09-08T08:00+02:00,2230.9,4036.7,10809.4,2788.3,415.6,5563.2,11.4,153.6,3960.8,185.2,1152.7,1545.8,7205.2,7484.6,57976.2 +2023-09-08T08:15+02:00,2239.5,4039.5,10738.5,2700.8,415.4,5528.7,11.1,175.1,2953.9,185.3,1149.7,1520.5,6684.3,9826.9,58763 +2023-09-08T08:30+02:00,2243.2,4026.7,10677.6,2625.6,414.4,5451.7,10.8,131.8,2482.6,185.4,1146.6,1527.2,6066.8,12312.8,59370.3 +2023-09-08T08:45+02:00,2244,3994.7,10598.1,2545,414.1,5350.7,10.5,97.4,1492.2,185.4,1145.4,1442.4,5311.5,14763.1,59806.9 +2023-09-08T09:00+02:00,2245.2,3908.8,10479,2471.4,415.9,5224.8,10.3,161.9,2001.7,190.5,1144,1386,4483.8,17152,59602.5 +2023-09-08T09:15+02:00,2247.8,3882.1,10286.1,2425.5,415.4,5193,10.1,126.2,967.3,190.9,1138.2,1395.5,3709,19453.6,59879.2 +2023-09-08T09:30+02:00,2258.6,3856.1,10034.5,2310.7,415.4,5184.3,9.9,68.7,384.8,190.9,1131.1,1410.8,3036.5,21450.3,60151.3 +2023-09-08T09:45+02:00,2276.7,3857.6,9672.3,2246.8,415.4,5046,9.7,89.9,418.1,190.5,1140.8,1397.8,2519.6,23566.8,60090.3 +2023-09-08T10:00+02:00,2291.3,3773.5,9432.9,2239.6,415.4,4670.7,9.6,184.7,975.1,178.5,1156,1292.4,2156.6,25381.3,60056.5 +2023-09-08T10:15+02:00,2291.5,3728.3,8708.5,2175.1,415.4,4614.6,9.5,159.4,680.1,168.6,1159.5,1205.3,1968,27120.9,60092 +2023-09-08T10:30+02:00,2232.5,3723,8262.1,2128.3,414.7,4611.6,9.4,121.1,335.6,168.5,1155.4,1168,1857.1,28784.1,60312.2 +2023-09-08T10:45+02:00,2225.3,3745.2,8124.5,2118.6,415.3,4598.8,9.2,95.7,160.8,168.5,1148.2,1075.5,1828.1,30320.3,60494 +2023-09-08T11:00+02:00,2229.9,3716.2,7947.8,2033.4,415.4,4439.5,9.1,116.4,418.9,164.9,1145.7,1065.6,1862.4,31647.5,60393.1 +2023-09-08T11:15+02:00,2241.3,3713,7684.6,2013.7,415.4,4415.2,9,130.6,335.2,162.7,1144.3,1064.6,1975.9,32861.6,60478.1 +2023-09-08T11:30+02:00,2245.2,3696.6,7428.6,1904.8,415.4,4386.6,8.8,125.1,180.3,162.4,1152.2,996.5,2081.4,33865,60546 +2023-09-08T11:45+02:00,2257.3,3689.4,7172.7,1867.6,415.4,4194.1,8.8,133,79.1,162,1152.8,908.8,2208.6,34649.6,60698 +2023-09-08T12:00+02:00,2267.4,3639.5,7071.8,1812.6,415.5,3871.1,8.7,240.8,267.2,159.4,1134.4,859.7,2267.9,35364.1,60319.6 +2023-09-08T12:15+02:00,2268.2,3632.2,6816,1758.8,416.9,3791.1,8.5,146.9,157.7,158.6,1135,847.2,2291.7,35920,59995.8 +2023-09-08T12:30+02:00,2271.8,3633.4,6814.5,1719.7,416.9,3709.7,8.4,158.1,166.5,158.6,1134.2,821.2,2289.9,36344.4,59714.9 +2023-09-08T12:45+02:00,2276.8,3629.4,6769,1703.7,416.9,3696.8,8.4,127.8,146.2,158.6,1131.2,785.1,2316.2,36575.7,59257 +2023-09-08T13:00+02:00,2281.8,3622.3,6772,1738.8,418.4,3747.3,8.3,209.9,224.5,162.6,1118.6,598.8,2492.1,36689.1,59012.2 +2023-09-08T13:15+02:00,2297.8,3620.5,6798,1741.8,418.4,3568.4,8.2,182.9,170.4,162.6,1133.6,653.1,2656.7,36647.5,58463.7 +2023-09-08T13:30+02:00,2303.3,3620.6,6616,1753.7,418.4,3589.7,8.2,181.5,172.5,162.6,1130.7,607.7,2784.1,36421.6,57857.8 +2023-09-08T13:45+02:00,2300.1,3620.7,6666.1,1742.3,418.4,3557.5,8.1,116.5,106,162.6,1107.8,537,2878.8,36083.7,57060.8 +2023-09-08T14:00+02:00,2300.5,3611.5,6808.5,1734.2,418.4,3789,8,64.1,48.2,162.6,1076.1,475.8,2911.5,35606.1,56748.5 +2023-09-08T14:15+02:00,2301.9,3613.1,6928.5,1715.7,418.4,3706,8,160.5,88.7,162.6,1056.1,457.9,2856.2,35023.6,56519.5 +2023-09-08T14:30+02:00,2285.4,3611.1,6972.6,1807.6,418.4,3639.3,8,262.2,122,162.7,1090.3,446.5,2829.6,34229.1,56340.1 +2023-09-08T14:45+02:00,2272.7,3602.7,7004.3,1916.4,418.4,3676.3,7.9,264.8,129.4,162.6,1090.9,437.3,2714.1,33304.3,55839.7 +2023-09-08T15:00+02:00,2264.9,3620.3,6964.3,1925.4,418.4,3560.4,7.9,210,141.6,162.7,1118,455.4,2530.9,32401.1,55952.9 +2023-09-08T15:15+02:00,2278.2,3632.4,7130.4,1962.4,418.4,3573,7.9,247.8,141.5,162.6,1119.7,476.7,2371.6,31300.2,55580.8 +2023-09-08T15:30+02:00,2305.6,3627.9,7201.4,2053.3,418.4,3587.5,7.9,241.6,147.9,162.6,1127.1,455.2,2267,29912.7,55275.1 +2023-09-08T15:45+02:00,2346.6,3632.6,7222.6,2311.7,418.4,3633.6,7.8,152.5,212.7,162.6,1128.2,385.7,2129.2,28391.9,55112.8 +2023-09-08T16:00+02:00,2360.6,3651.9,7532.6,2480.4,418.4,4078.6,7.9,116.4,193.9,163.5,1123.1,325.3,2017.7,26689.5,54452.1 +2023-09-08T16:15+02:00,2361.4,3675.7,7947.2,2637,418.4,4199.5,7.9,159.8,150.7,171.7,1106.3,320.6,1894.7,24794.9,54228.2 +2023-09-08T16:30+02:00,2358.7,3685.6,8646,3015.8,418.4,4549.2,7.9,182.4,273.8,172.1,1092.2,329.8,1794.5,22816.1,54498.8 +2023-09-08T16:45+02:00,2362.8,3696.8,9392.7,3420.1,418.4,4762.5,7.9,201.5,485.4,172.1,1103.8,342,1724.6,20712.4,54929.4 +2023-09-08T17:00+02:00,2348.2,3741.6,9749,3744,418.4,5151.4,7.9,125.2,320.8,178.5,1110.5,365.5,1677.9,18412.8,55018.2 +2023-09-08T17:15+02:00,2319.9,3787.4,10632,3995.7,418.4,5197.9,7.9,158.8,519.2,192.8,1100.5,381.7,1654.2,15998,54794.7 +2023-09-08T17:30+02:00,2297,3811.5,10996,4274,418.4,5566.9,7.9,286.6,1364.9,194.4,1105,374.6,1659.7,13563.4,55071.3 +2023-09-08T17:45+02:00,2287.3,3870.6,11174.9,4605.8,418.4,5728.7,8,349.2,3425.8,194.5,1121.4,408.6,1671.9,11117.8,55168.8 +2023-09-08T18:00+02:00,2278.8,3954.7,11165.2,4852.3,418.4,6117.5,8.1,142.4,3235.4,194.4,1116.9,428.9,1733.8,8737.9,55328.8 +2023-09-08T18:15+02:00,2262.9,4006.6,11245.4,5033.6,418.4,6510.9,8.2,112.4,4921.5,194.5,1115,441.8,1772.1,6509.1,55170.5 +2023-09-08T18:30+02:00,2254.6,4027.5,11274.2,5119,418.4,6646.4,8.3,257.4,6109,194.4,1103.4,484.3,1863.2,4508.8,55172.2 +2023-09-08T18:45+02:00,2245.4,4037.1,11266.5,5150.4,418.4,6720.6,8.4,346,6476.9,191,1054.3,519,1944.2,2860.6,55067.3 +2023-09-08T19:00+02:00,2241.7,4053.6,11246.4,5165.9,418.4,6740.6,8.6,326.9,6130.8,191.4,1067.1,563.2,2046.6,1594.1,55113.8 +2023-09-08T19:15+02:00,2238.2,4071.8,11277.6,5174.6,418.4,6837.8,8.7,303.3,6072.6,200.7,1092.6,617.5,2407.3,752.7,54946.1 +2023-09-08T19:30+02:00,2232,4075.1,11295.6,5187.9,418.4,6963.6,8.9,300.8,6117.3,202.2,1101.1,650.8,2832,218.3,54879.2 +2023-09-08T19:45+02:00,2230.6,4081.3,11297.2,5186.5,418.4,6963.3,9.1,299.8,6123.5,202.2,1094.8,644.7,3194.6,29.9,54910.8 +2023-09-08T20:00+02:00,2225.3,4063.2,11296.5,5181.3,419.2,6902,9.2,283,6012.9,201.8,1088.6,632.1,3321.8,6.7,54648.5 +2023-09-08T20:15+02:00,2219.7,4055.8,11295.9,5155.1,420,6749.8,9.4,354.7,5665.6,198.4,1076.8,652.1,3715,4.1,54610 +2023-09-08T20:30+02:00,2218.5,4057.3,11304.1,5150.1,420,6600.5,9.5,271.5,5436.1,201.5,1077.5,672,4033.6,2.6,54248.1 +2023-09-08T20:45+02:00,2210.7,4047.9,11284.9,5120.8,420,6435.7,9.7,232,4880.9,201.4,1091.5,678.8,4455.5,2.4,53433.5 +2023-09-08T21:00+02:00,2199.6,4018.4,11337.3,5106.3,420,6395.6,9.9,314.4,5578.9,201.5,1092.1,676.4,4785.3,4.7,52430.5 +2023-09-08T21:15+02:00,2195.2,4015.2,11344.1,4941.1,420,6328.3,10,265.1,5028.2,201.5,1102.5,670.7,5071.8,2.7,51836.7 +2023-09-08T21:30+02:00,2190.1,4002.8,11322.4,4728.1,420,6188.2,10.2,173,4206.6,201.5,1110.2,666.1,5368.2,1.8,50740.7 +2023-09-08T21:45+02:00,2184.2,3981.7,11354.9,4525.5,420.7,6038,10.3,171.6,2938.1,201.5,1125.8,673.5,5591.9,1.7,49977.9 +2023-09-08T22:00+02:00,2184.9,3922.8,11392.7,4382.4,420,6132.3,10.4,260.6,2564.5,197.5,1151.2,689.1,5765.6,1.8,48957.7 +2023-09-08T22:15+02:00,2191.9,3905.9,11333.2,4253.2,418.7,6075.1,10.5,193.5,1644.3,194.1,1143.1,708.1,5860.2,1.6,48042.2 +2023-09-08T22:30+02:00,2202.3,3896.4,11349.9,4144.3,418.4,6029.4,10.6,129.7,1336.8,194.1,1122.8,741.8,5948.2,1.5,47033 +2023-09-08T22:45+02:00,2215,3882.3,11133.2,4068.1,418,5967.6,10.6,146.5,641.3,194.1,1132.1,764.9,6040.8,1.5,46368.2 +2023-09-08T23:00+02:00,2220.5,3823.7,10997.2,3921,415.4,5851.7,10.7,267,1168,194.1,1122.3,769.1,6131.5,1.7,45344.2 +2023-09-08T23:15+02:00,2227.6,3797.6,10938.4,3810.7,415.4,5745.8,10.8,220.4,895.9,194.1,1119.5,707,6160.5,1.4,44804.9 +2023-09-08T23:30+02:00,2234.6,3792,10913.6,3758.2,415.4,5663.1,10.8,186.1,547.6,190.9,1119.9,647.1,6127.6,1.5,43958.2 +2023-09-08T23:45+02:00,2242,3783.6,10851.6,3653,415.4,5561.9,10.9,88.8,272.9,188.4,1133.3,619.6,6091.2,1.5,43424.8 +2023-09-09T00:00+02:00,2247.7,3737.6,10837.4,3333.5,412.3,5459.9,10.9,127.4,855.6,183.9,1139.6,580.7,5984.4,2,43009.5 +2023-09-09T00:15+02:00,2257.1,3732.1,10810.6,3144.4,413.2,5032.8,11,201.9,724.6,183.8,1141.9,565.4,5904.9,1.3,42220.1 +2023-09-09T00:30+02:00,2261.4,3741.7,10792.6,2997.3,412.5,4793,11,168.5,704.5,183.8,1144.6,556.4,5832,1.3,41674.2 +2023-09-09T00:45+02:00,2262.2,3734.9,10772.1,2822.3,412.3,4677.1,11,164.1,492,183.9,1160.8,529.3,5713.2,1.3,41164 +2023-09-09T01:00+02:00,2264.5,3710.4,10843.9,2750.7,412.3,4574.4,11.1,146.5,499.4,183.9,1157,510,5514.5,2,40729 +2023-09-09T01:15+02:00,2264.5,3705,10801.7,2688.4,412.3,4568.7,11.1,175.5,159.9,187.2,1162,481.8,5283,1.3,40071 +2023-09-09T01:30+02:00,2268.7,3707.7,10823.7,2541,412.3,4556.7,11.1,194.9,150.7,187.2,1168,449.8,4997.9,1.3,39816.9 +2023-09-09T01:45+02:00,2273.3,3704,10728.5,2280.8,412.3,4538.3,11.1,195,221.7,187.2,1169.5,424.8,4702.7,1.3,39358.1 +2023-09-09T02:00+02:00,2277.6,3683.1,10765.9,2127.2,412.3,4550.9,11.1,185.2,234.3,181.6,1166.7,373.3,4444.2,1.5,38668.8 +2023-09-09T02:15+02:00,2275,3681.9,10757.9,2129.1,412.3,4543.9,11.2,179.6,252.4,172.3,1169.7,327.3,4206.5,1.3,38546.2 +2023-09-09T02:30+02:00,2273.8,3681.3,10786,2132.4,412.3,4569.4,11.2,187,331.5,172.3,1152,287.8,3887.4,1.3,38444 +2023-09-09T02:45+02:00,2273.9,3687.8,10759.6,2142.1,413.2,4569.4,11.2,167.1,384.6,172.3,1140.7,262.6,3615.8,1.1,38239.5 +2023-09-09T03:00+02:00,2274.6,3673,10767.4,2143.3,413.8,4565.4,11.2,152.5,290,172.2,1139.7,253.1,3320,1.4,38098.8 +2023-09-09T03:15+02:00,2270.8,3678.7,10799.4,2141.8,413.8,4545.6,11.1,144.3,183.5,172.2,1165.1,249.8,3107.2,1.4,37922.4 +2023-09-09T03:30+02:00,2270.6,3683.9,10834.2,2134.3,413.8,4542.6,11.1,161.6,343.1,172.2,1163.7,241.2,2912.7,2.2,37605.6 +2023-09-09T03:45+02:00,2271.3,3690.4,10818.8,2068.3,413.8,4532.8,11.1,164.2,473.3,172.2,1164,229.8,2759.8,1.1,37654.7 +2023-09-09T04:00+02:00,2263,3686,10806.7,1925,413.8,4510.4,11.1,100.4,247.3,172.2,1171.9,197.5,2636.1,1.1,37682.8 +2023-09-09T04:15+02:00,2253.3,3690.7,10806.5,1934.5,413.8,4515.9,11.2,66.9,261.4,172.2,1172.9,164.5,2501.3,1.1,37561.7 +2023-09-09T04:30+02:00,2247.6,3693.9,10831.2,1927.8,413.8,4525.7,11.2,108.4,276.5,172.2,1175.3,144.2,2359.7,1.1,37633.6 +2023-09-09T04:45+02:00,2246.6,3700,10826.4,1927.8,413.8,4484.6,11.2,165.2,574.9,172.4,1178.4,126.1,2242.1,1.4,37626.8 +2023-09-09T05:00+02:00,2241,3704.7,10840.9,1932.6,413.8,4404.7,11.3,138.6,379.9,180.8,1186.5,115.2,2164.7,1.1,37912.6 +2023-09-09T05:15+02:00,2229.5,3709,10887,1925.9,413.8,4405.4,11.4,143.6,279.3,183.5,1176.7,115.7,2103.2,1.1,37958.7 +2023-09-09T05:30+02:00,2223.6,3719.4,10920.2,1938.9,413.8,4431.6,11.4,167.3,377.4,183.5,1174.5,126.6,2097.2,1.3,38346.4 +2023-09-09T05:45+02:00,2225.8,3738.7,10923.6,1972,414.8,4442.6,11.4,171.4,482,184,1184.2,123.8,2134.3,1.3,38742.5 +2023-09-09T06:00+02:00,2229.7,3836.5,10775.8,1991.1,414.8,4390.7,11.4,136,266.4,190.7,1192.8,128.5,2135.1,1.4,39776.7 +2023-09-09T06:15+02:00,2228.3,3870.4,10844.8,1988.7,413.8,4425.5,11.4,163.7,401.7,190.9,1193.6,129.6,2126.1,14.2,40281.5 +2023-09-09T06:30+02:00,2225.6,3891.2,10932.6,1967.6,413.8,4363.7,11.5,143.9,557.8,190.9,1201.2,119.1,2126.9,32.2,40345.9 +2023-09-09T06:45+02:00,2226.3,3898.5,10939.3,1963.7,414.4,4280.9,11.4,167.5,696.7,190.8,1179,109.5,2219.4,190,40626.2 +2023-09-09T07:00+02:00,2230.1,3915.7,10947.9,1980.4,414.1,4144.1,11.4,167.5,871.2,180.4,1196.9,105.8,2269,762.3,41537 +2023-09-09T07:15+02:00,2233.2,3933.8,10969.4,1984.5,413.8,4150.4,11.3,133.8,584.6,175.9,1199,104.9,2288.2,1815.2,42087.2 +2023-09-09T07:30+02:00,2236.9,3937.6,10963.8,1977.6,413.8,4151.8,11.2,99.8,386.8,175.9,1190.3,104.4,2320.3,3284.3,43189.3 +2023-09-09T07:45+02:00,2244.3,3946.9,10858.7,1874.3,413.8,3929.7,11.1,81.2,337,180,1196.6,101.9,2438.9,5081.7,43903.4 +2023-09-09T08:00+02:00,2248.6,3933,10922.1,1777.4,413.8,3868.3,10.8,258.9,1203.4,192,1197,104.6,2391.2,7150,45044.7 +2023-09-09T08:15+02:00,2253.4,3937.5,10795.2,1652.6,413.6,3691.7,10.5,104.5,578.2,192.7,1196.1,112,2298.6,9391.3,45941.3 +2023-09-09T08:30+02:00,2256.5,3919.9,10434.8,1628.5,412.3,3483.8,10.3,54.1,240,192.7,1196.5,114,2171.6,11754.7,46929.3 +2023-09-09T08:45+02:00,2259.8,3908.6,9988.1,1614.8,412.3,3004,10,94.9,219.4,192.6,1191.5,135.2,1933.5,14163.8,47566.8 +2023-09-09T09:00+02:00,2260.5,3837.5,9642.6,1616.5,413.2,2471.5,9.7,160.1,831.6,183,1192.4,155.1,1588,16571.7,48054.5 +2023-09-09T09:15+02:00,2260.5,3823.4,9198.7,1611.9,413.2,2197.3,9.5,69,380.9,176,1188.1,170.3,1232.4,18932.9,48629.7 +2023-09-09T09:30+02:00,2221.9,3836.2,8596.4,1604.7,412.3,2009,9.3,58.2,351.8,175.8,1179.1,175.5,918.7,21079.1,49351.9 +2023-09-09T09:45+02:00,2224.1,3825.4,7965.8,1603.6,412.3,1987.7,9.2,73.9,327.7,175.9,1182.4,178,677.9,22934.1,49839.8 +2023-09-09T10:00+02:00,2235.5,3771.3,7611.6,1626.3,412.3,1961.3,9,221.5,1328.3,175.9,1226.4,182.3,511.8,24784.2,49992.6 +2023-09-09T10:15+02:00,2243,3769.8,7248.4,1638.1,412.3,1912.7,8.9,131.2,664.6,175.8,1225,170.6,416.4,26555.7,50043.9 +2023-09-09T10:30+02:00,2242.7,3768.9,6826,1644,412.5,1903.6,8.8,93,415.6,175.9,1220.7,156.7,372.4,28180.5,49962.9 +2023-09-09T10:45+02:00,2213.6,3760.5,6459.1,1641.7,413.1,1921.3,8.7,107.9,286.6,171.9,1221.8,137,385.6,29624.9,50518.3 +2023-09-09T11:00+02:00,2208.1,3735.8,6209.3,1591.4,412.3,1891.3,8.7,95.7,410.9,169.2,1226.7,144.8,486.7,30962.5,50464.2 +2023-09-09T11:15+02:00,2211.7,3721.9,5868.4,1522.3,412.9,1872.9,8.6,61.1,257.3,168.2,1222.2,155.5,628.9,32095,50740.5 +2023-09-09T11:30+02:00,2212.1,3705.2,5678.6,1484.3,412.8,1882.8,8.4,112.3,4,168.2,1222,137.4,799.5,33133.9,50825.2 +2023-09-09T11:45+02:00,2219.4,3693,5426.1,1493.1,412.3,1814.7,8.3,68.7,2.6,168.2,1220.1,133.3,931.1,33998.7,50546.8 +2023-09-09T12:00+02:00,2224.7,3648.8,5365.8,1474.1,412.3,1724.7,8.3,127.3,2.6,168.2,1216,145.1,1084.6,34657.2,50559.8 +2023-09-09T12:15+02:00,2226.2,3633.4,5280.2,1471.1,412.3,1689.3,8.3,60.2,4.2,166.4,1213.1,150.2,1226.1,35240.7,50333.4 +2023-09-09T12:30+02:00,2226.8,3630.1,5256.8,1464.7,413.2,1673.6,8.1,28.2,2.8,166.4,1210.1,152,1401.1,35546,49848.4 +2023-09-09T12:45+02:00,2227.8,3624.8,5219.8,1463.7,412.6,1669.9,8.1,84.5,3.3,164.5,1204.2,146.2,1520.4,35677.2,49605.7 +2023-09-09T13:00+02:00,2224.4,3612.5,5293.8,1462.3,412.4,1679.8,8.1,146.3,3.4,162.5,1204.4,144.3,1599.8,35808.2,49293.8 +2023-09-09T13:15+02:00,2229.3,3624,5370.5,1458.6,413.4,1682.2,8,52.8,2.6,160.7,1205.3,135.6,1661.7,35681.8,48539.1 +2023-09-09T13:30+02:00,2225.3,3615.5,5406.3,1458,412.3,1694.1,8,71.3,2.6,160.5,1205.7,117.6,1602.9,35596.2,48127.3 +2023-09-09T13:45+02:00,2227.8,3614.7,5337.5,1454.2,413.2,1715.3,8,80.4,2.5,158.9,1203.4,106.5,1412.9,35262.4,47617.2 +2023-09-09T14:00+02:00,2220.6,3602.6,5377,1449.3,412.3,1719.9,8.2,96.8,2.6,158.5,1199,96.7,1277.9,34776.7,47275 +2023-09-09T14:15+02:00,2211.8,3611.2,5560.8,1445.4,412.3,1721.1,8.3,162.5,2.6,157.7,1187.9,82.7,1184.3,34216.8,47078.4 +2023-09-09T14:30+02:00,2205.1,3619.7,5715.7,1444.9,412.3,1733.6,8.3,147.1,2.6,157.6,1188.7,70.5,1145.1,33488.9,46823.2 +2023-09-09T14:45+02:00,2253.5,3623.3,5797,1446.4,412.3,1772.9,8.1,113.3,2.6,157.3,1203.2,71.7,1111.1,32525.5,46224.3 +2023-09-09T15:00+02:00,2277.8,3622.5,5657,1458,412.3,1767.8,8.1,30.4,2.6,157,1205.1,73.5,1025.6,31394.6,46087.7 +2023-09-09T15:15+02:00,2275.4,3631.4,5736.5,1451.1,412.3,1759,8.2,99.9,9.5,157,1201.8,89,976.5,30212.5,45996.5 +2023-09-09T15:30+02:00,2261.4,3631.7,5920.6,1458.5,412.3,1806.5,8,135.5,7.8,157,1183.8,111.5,881.3,28839.3,45976 +2023-09-09T15:45+02:00,2251.5,3640.1,6351.7,1515.8,412.3,1866.7,8.2,112.7,2.6,157,1204.4,104.2,800.5,27373.4,45463.3 +2023-09-09T16:00+02:00,2234.9,3652.7,6557.1,1619.8,412.3,1978.4,8.1,189.2,2.7,157.1,1282.8,105.6,708.4,25759.5,45945.1 +2023-09-09T16:15+02:00,2226.4,3663.1,7164.4,1659.9,412.3,2128.6,8.1,161.7,3.4,157.1,1280.5,128.1,650.7,23955.5,46378.4 +2023-09-09T16:30+02:00,2213.7,3671.7,7445.1,1734.6,412.3,2333,8.1,192.8,51.9,157.1,1276.6,134.3,573.9,21931.3,45891.2 +2023-09-09T16:45+02:00,2209.1,3674.7,7743.8,1795.7,412.9,2720.2,8.1,94.9,308.5,157,1274.7,147.8,521.1,19820,46110.7 +2023-09-09T17:00+02:00,2192.2,3714.7,8317.6,1898.7,413.8,3005.3,8.2,71.2,8.9,162.6,1275,175.7,496.4,17595.3,46448 +2023-09-09T17:15+02:00,2178,3742.7,9561.1,2008,413.8,3288.9,8.2,119.3,58.7,177.1,1276.2,241.2,477.3,15228.3,46776.8 +2023-09-09T17:30+02:00,2163.2,3782.9,10353.1,2363,413.8,3768.8,8.2,241.7,625.2,179.5,1275.4,261.3,467.2,12821.8,47003.7 +2023-09-09T17:45+02:00,2149.6,3814.3,10792.6,2836.4,413.8,4066.9,8.4,223.8,1650.9,179.4,1272.4,258.8,472.1,10458.7,47112.6 +2023-09-09T18:00+02:00,2138.2,3893.3,10778.8,2931.3,413.8,4548.8,8.4,131.5,652.8,179.4,1287,246.7,489.6,8150.9,48208 +2023-09-09T18:15+02:00,2130.2,3942.4,10916.8,3216.4,413.8,4701.9,8.5,217.9,2581.8,188.4,1282.5,240.2,502.9,6004.9,47763.1 +2023-09-09T18:30+02:00,2120.2,3971.3,10946.6,3408.5,413.8,4880.9,8.6,266.6,4426,201.1,1276.7,252.1,515.3,4109.1,47886.8 +2023-09-09T18:45+02:00,2112.3,3990.7,10935.1,3537.6,413.8,5045.6,8.8,212.1,5347.7,202.2,1283.1,272.2,514.5,2572,47860.9 +2023-09-09T19:00+02:00,2104.8,4004.4,10947.7,3645.5,413.8,5070.6,9,112.8,4417.6,204.7,1264.4,278.5,562.1,1437.4,48019.6 +2023-09-09T19:15+02:00,2102,4031.5,10986.6,3759.9,413.8,5090.5,9.1,133.9,4863.5,206.1,1275,281.2,666.5,662,47717.7 +2023-09-09T19:30+02:00,2098.5,4040.4,10984.2,3869.6,413.8,5100.7,9.3,167.2,5081.7,206,1264.2,280.9,748.8,194.6,47634.3 +2023-09-09T19:45+02:00,2098.2,4046.3,10953.5,3883.1,413.8,5152.5,9.6,212.6,5035.1,205.9,1263.8,290.7,842,34.4,47692.8 +2023-09-09T20:00+02:00,2098.7,4050.5,10956.1,3902.1,413.8,5177.5,9.9,189.5,5003.5,205.9,1278.8,292.1,809.8,8.8,48002.8 +2023-09-09T20:15+02:00,2100.2,4059.9,10976,3907.1,413.8,5179.3,10,208.8,5084,205.6,1293.6,291.4,887.2,4.7,48193.9 +2023-09-09T20:30+02:00,2097.9,4053.2,10987.6,3897.8,413.8,5191.9,10.2,262.3,5004.7,205.9,1285.4,317.3,980.2,2.5,47702.6 +2023-09-09T20:45+02:00,2096.3,4047.6,10979.8,3891.4,413.8,5184.1,10.3,160.8,4279.3,205.9,1296.2,334.1,1054,2.2,47118.1 +2023-09-09T21:00+02:00,2091.1,4006.3,10987.7,3856.5,413.8,5117.4,10.4,248.1,4530.4,205.7,1297,351.2,1096.7,4.4,46172.8 +2023-09-09T21:15+02:00,2089.6,4003.3,10974.2,3712.2,413.8,5068.9,10.5,176.4,4148.6,205.6,1297.9,392.5,1128.2,2.9,45750 +2023-09-09T21:30+02:00,2092.6,3996.5,11003.9,3562.9,413.8,4932.5,10.7,227.1,3333.8,205.6,1296.6,416.3,1166.8,2.7,45121.7 +2023-09-09T21:45+02:00,2096.4,3985.6,10983.9,3411.2,414.7,4934.1,10.8,121.2,2668.3,205.7,1298.4,416.3,1204.3,1.6,44549.7 +2023-09-09T22:00+02:00,2099.2,3934.2,10974.1,3239.6,413.8,5106.1,10.9,123.3,2826.8,197.7,1301.7,396.3,1189.9,2,43986.7 +2023-09-09T22:15+02:00,2102.7,3922.6,10931.5,3082.2,413.8,5010.3,10.9,51.7,2011.6,194.5,1302.9,387,1201.6,1.4,43207.9 +2023-09-09T22:30+02:00,2109.6,3911.4,10932.9,2840.3,413.8,4938.9,11,56.8,1915.3,194.5,1303,406.3,1192,1.5,42449.6 +2023-09-09T22:45+02:00,2112.9,3892.2,10960.1,2754.9,413.8,4833.8,11,101.1,1461,194.4,1305.2,414.6,1195.9,1.4,41968.1 +2023-09-09T23:00+02:00,2117.9,3840.7,10971.3,2666,413.8,4660.4,11.1,156.9,1669.6,194.4,1307.7,446.8,1208.1,2.4,41097.6 +2023-09-09T23:15+02:00,2130.3,3835.6,10932.8,2589.7,413.8,4601.3,11.1,106.1,1170.4,194.5,1312,457.4,1227,1.4,40521.1 +2023-09-09T23:30+02:00,2143.1,3824.2,10892.8,2556.4,413.8,4484.6,11.2,114.1,913.3,194.5,1310.7,467.7,1219.2,1.5,39974.8 +2023-09-09T23:45+02:00,2151.3,3795.1,10707.2,2433,413.8,4460.3,11.3,121.1,772.3,194.5,1306.1,458,1192.9,1.4,39542.6 +2023-09-10T00:00+02:00,2160.7,3754.2,10551.9,2204.3,414.6,4045.5,11.3,149.6,651.6,192.8,1192,455.8,1158.6,1.5,38245.3 +2023-09-10T00:15+02:00,2175.9,3749.6,10346,2103.9,415.1,3978.4,11.4,118.6,714.6,192.6,1193.1,471,1144.7,1.5,38019.3 +2023-09-10T00:30+02:00,2184.4,3748.9,10328.9,2048.8,415.1,3745.5,11.4,102.6,425.6,192.6,1191.8,460.8,1165.1,1.5,38016.3 +2023-09-10T00:45+02:00,2191.8,3759.7,10319.5,1990,414.6,3474,11.4,102.1,467.6,192.6,1194.6,393.7,1177.3,2.2,37518.9 +2023-09-10T01:00+02:00,2198.4,3746.2,10352.2,1963.5,415.6,3409.1,11.5,326.4,805.3,192.6,1195.1,350.6,1189.1,1.4,36946.5 +2023-09-10T01:15+02:00,2202.8,3742.6,10251.3,1901.1,416.7,3442.6,11.5,239.2,638.2,192.6,1180.4,318.6,1178,1.4,36584.7 +2023-09-10T01:30+02:00,2201.4,3743.9,10121.4,1887.1,416.8,3621.3,11.6,215,450.2,192.6,1194.4,288.7,1134.5,2.2,36204.8 +2023-09-10T01:45+02:00,2197,3752.7,10133.4,1890.5,416.1,3498.6,11.6,199.7,472.1,192.5,1192.9,243.6,1078.2,1.2,35933 +2023-09-10T02:00+02:00,2192.1,3717,10147.8,1873.6,416.1,3324.2,11.7,142.8,317.9,186.1,1190,196.5,1006.9,1.9,35128.3 +2023-09-10T02:15+02:00,2189.8,3718.7,10122,1875.2,416.1,3184.7,11.7,153,274.8,185.1,1191.4,157.9,932.6,1.2,34640.1 +2023-09-10T02:30+02:00,2186.8,3712.5,9961.8,1876.3,416.1,3193.8,11.8,122.5,333.4,185.1,1182.5,139.8,872.9,1.6,34554 +2023-09-10T02:45+02:00,2186.2,3712.8,9906.4,1873.1,416.1,3205,11.8,136.2,275.2,185.1,1172.4,126.7,821.5,1.3,34459.7 +2023-09-10T03:00+02:00,2187.2,3689.8,9815.6,1799.5,416.1,3120.1,11.8,86.7,226.5,177.4,1169.3,127.4,774.1,1.2,34316.4 +2023-09-10T03:15+02:00,2191.5,3695.8,9786.2,1767,416.1,3106.8,11.8,74.2,221.6,173.9,1183.7,111.1,755.3,1.2,34233 +2023-09-10T03:30+02:00,2191,3693.6,9778.1,1787,416.1,3111.2,11.8,49.2,173.3,173.9,1204.2,91.5,718.2,1.2,33989 +2023-09-10T03:45+02:00,2185.2,3694.3,9779.7,1805.5,416.1,3170.9,11.9,46.1,190.6,173.8,1193.8,68.6,704.9,1.2,33977.5 +2023-09-10T04:00+02:00,2175.6,3711.6,9811.4,1870.1,416.1,3197.6,11.9,85.7,289.6,173.9,1192.8,46.2,703.3,1.1,33909.4 +2023-09-10T04:15+02:00,2165.4,3694.8,9752,1873,416.1,3179.7,11.9,57,280.5,173.9,1196.7,28.4,701.6,1.2,33787.6 +2023-09-10T04:30+02:00,2158,3698.2,9644.6,1870.1,416.1,3170.2,11.9,69.6,341.7,173.9,1207.1,11,662.7,1.2,33782.6 +2023-09-10T04:45+02:00,2151.5,3718.2,9686.3,1871.7,416.1,3173.3,12,59.5,378.6,173.9,1205.8,4.4,620.3,1.2,33813 +2023-09-10T05:00+02:00,2146,3738.9,9701.3,1865.2,416.1,3171.9,12,75,333.3,177.2,1204.8,7.7,588.8,1.1,34069 +2023-09-10T05:15+02:00,2147.2,3750.1,9707.6,1867.7,416.1,3162.2,12,57.5,317.7,177.7,1198.2,6.2,557.3,1.2,34049.1 +2023-09-10T05:30+02:00,2148.2,3760.1,9710.8,1868.4,416.1,3171.2,12,93.8,422.2,177.6,1200.9,2.9,534.5,1.2,34300.7 +2023-09-10T05:45+02:00,2149.5,3776.1,9713.7,1871.5,416.1,3192.9,12.1,106.1,525.3,179.9,1189.7,3.7,537.4,1.3,34554.1 +2023-09-10T06:00+02:00,2149.1,3850.9,9722.6,1863.3,415.4,3211.1,12.1,145.3,583.6,192.4,1205.1,4.7,531.4,1.4,35050 +2023-09-10T06:15+02:00,2146,3863.5,9710.7,1860.1,414.6,3232.8,12,167.2,637.9,194.5,1208.5,5.1,545.1,11.4,35140.1 +2023-09-10T06:30+02:00,2142.4,3871.2,9742.8,1860.5,414.6,3230,12,146.9,555,194.5,1209.6,4.7,540,24,34951.1 +2023-09-10T06:45+02:00,2143.1,3876.1,9680.4,1850.1,414.6,3232.9,12.1,154.1,625.4,194.4,1206.1,3.7,548.5,162.8,35046.1 +2023-09-10T07:00+02:00,2142.6,3876.6,9688.4,1731.1,414.6,3137,12.1,154.4,439.5,184.8,1203.3,3.4,573,660.7,35897 +2023-09-10T07:15+02:00,2145.4,3898.4,9698,1690.4,414.6,3006,12,142.5,231.2,179.7,1204.3,5.6,554.2,1606.1,36316.1 +2023-09-10T07:30+02:00,2149.9,3895,9610.1,1630.9,414.6,2922.1,11.9,113.5,189.3,179.7,1193.3,6.5,543.7,2914.7,37378.3 +2023-09-10T07:45+02:00,2150,3889.9,9356.4,1543.8,414.6,2873.8,11.8,97.6,45.6,179.6,1188.1,8.5,553.3,4562.3,37915.7 +2023-09-10T08:00+02:00,2150.5,3859,9222.6,1543.2,414.6,2648.6,11.6,231.8,601.6,173,1159.4,14.3,550.1,6492.8,39101.2 +2023-09-10T08:15+02:00,2153.8,3866.7,9217,1547,414.6,2334.7,11.3,221.5,157.1,172.2,1136.1,11.4,542.6,8542.5,39919.7 +2023-09-10T08:30+02:00,2159.1,3851.7,9030.8,1394.1,415.4,2043,11.1,90.9,123.6,172.2,1113.1,10.7,520.6,10705.2,41155.8 +2023-09-10T08:45+02:00,2165,3858,8445.8,1391.2,414.7,2038.1,10.8,106.5,142.2,172.2,1157.2,8.5,468.1,12927,42067.1 +2023-09-10T09:00+02:00,2169.8,3805.7,8002.4,1389.5,414.6,2010.9,10.6,202.1,305.9,172.2,1170.1,6.3,383.4,15198.2,42875.9 +2023-09-10T09:15+02:00,2179.2,3788.5,7450.5,1376.1,414.6,2003.6,10.3,131,85.1,172.1,1171.5,3.1,295.4,17449,43536.2 +2023-09-10T09:30+02:00,2183.1,3776.8,6858.3,1378.3,414.6,2023.8,10.1,78.3,2.9,172,1165.1,2.8,229.1,19500.7,44264.4 +2023-09-10T09:45+02:00,2173.9,3788.1,6296.4,1379.5,415.5,1998.9,9.9,159,6.4,170.9,1154,2.3,167.4,21320.8,44485.1 +2023-09-10T10:00+02:00,2177.8,3738.9,6194.4,1328.8,414.9,1869.7,9.6,271.9,169.1,162.9,1155.9,1.6,168.2,23098.1,44821.4 +2023-09-10T10:15+02:00,2180.4,3741.1,5778.4,1268.7,414.9,1820.3,9.4,80.3,10.4,162.6,1149.6,2.9,145.5,24870.9,45126.3 +2023-09-10T10:30+02:00,2181.3,3724.4,5557,1262.2,414.2,1812.5,9.3,47.6,2.9,162.6,1148.8,6.6,130.2,26549.7,45345.1 +2023-09-10T10:45+02:00,2178.8,3724.6,5283.4,1262.1,414.6,1817.5,9.1,41.3,2.9,165.3,1112,10,135,28024,45715.6 +2023-09-10T11:00+02:00,2178.5,3705.8,5092.6,1263.5,414.6,1717.5,9,92,4.1,172,1123.7,11.3,160.2,29422.7,46075.2 +2023-09-10T11:15+02:00,2178.5,3706.3,4933.1,1265.5,414.6,1707,8.9,65.2,3,172,1147.9,14.3,154.7,30683.4,46392.5 +2023-09-10T11:30+02:00,2182.9,3695.8,4817,1261.5,414.6,1717,8.8,42,2.7,172.1,1141.5,17.8,152.2,31708.6,46611.7 +2023-09-10T11:45+02:00,2192.6,3695.7,4830.2,1259,414.6,1711.8,8.7,138.5,2.6,171.9,1136.1,15.9,165.8,32401.1,46593.4 +2023-09-10T12:00+02:00,2199.9,3665.2,4689.7,1250.9,415.4,1689.8,8.6,79.3,3.4,164.2,1132.2,10,184,33027.6,46442.1 +2023-09-10T12:15+02:00,2209.9,3657.9,4680.3,1251.4,416.1,1699.6,8.6,44.7,2.6,162.5,1147.2,9.5,159.8,33232.5,45969 +2023-09-10T12:30+02:00,2204.9,3654.1,4690.2,1247,416.1,1704.5,8.6,45.5,2.5,162.6,1150,11.2,186.9,33572.8,45739.7 +2023-09-10T12:45+02:00,2199.3,3646.1,4589.9,1251.2,415.5,1702.4,8.5,29.3,2.5,162.6,1142,9.5,186.1,33646.7,45049.8 +2023-09-10T13:00+02:00,2195.8,3633.4,4727.9,1253.2,415.9,1706,8.4,70,2.7,162.6,1142.1,10.5,260,34245.2,44791.5 +2023-09-10T13:15+02:00,2193.8,3641.4,4715.4,1251.7,416.1,1697.4,8.4,60.5,2.6,162.6,1143.1,12.1,320.7,34244,44310.2 +2023-09-10T13:30+02:00,2194.2,3639.6,4685.2,1252.5,416.1,1702.6,8.4,48.4,2.6,162.6,1124.9,14.5,357.8,34374.5,43961 +2023-09-10T13:45+02:00,2196.8,3625.5,4679.4,1251.4,416.1,1710.5,8.3,50.9,2.5,162.6,1125.3,17.9,342.2,33943.2,43499.5 +2023-09-10T14:00+02:00,2201.2,3620.2,4644.9,1255.4,416.1,1696.4,8.3,45.8,2.5,162.6,1132.1,25.9,313.5,33294,43100.7 +2023-09-10T14:15+02:00,2199,3617.2,4721.4,1259.1,416.1,1702.3,8.3,53.9,2.5,162.6,1121.9,23.5,311.7,32767.2,42702.1 +2023-09-10T14:30+02:00,2190.3,3615.5,4721.2,1262.9,416.1,1696.3,8.3,66.6,2.5,162.6,1136.6,17.5,300.1,31849.6,42624.2 +2023-09-10T14:45+02:00,2186.9,3627,4819.7,1262.3,416.1,1698.3,8.3,78.2,2.9,161.3,1140.1,17.8,336.3,31291.7,42348.2 +2023-09-10T15:00+02:00,2175.8,3627.3,4880.5,1255.6,416.1,1717,8.2,67.2,2.5,163.9,1138,18,363.2,30390.8,42375.3 +2023-09-10T15:15+02:00,2164.4,3618.7,4995.1,1259,416.1,1722.5,8.3,82.9,2.8,164.6,1137.4,17,383.2,29406.3,42229.1 +2023-09-10T15:30+02:00,2166.6,3564.5,5023.5,1260.8,416.1,1726.6,8.2,170.8,101.8,164.5,1135.9,17.9,370,28169.3,42173.3 +2023-09-10T15:45+02:00,2161.3,3573.7,5285.1,1300.7,416.1,1704.1,8.2,165.9,428.6,164.5,1136.2,22.4,353.7,26737,42083.6 +2023-09-10T16:00+02:00,2155.1,3603.4,5466.1,1589.2,416.1,1787.8,8.2,51.2,42.4,164.5,1140,27.2,338,24858.4,42400.5 +2023-09-10T16:15+02:00,2158.8,3652.3,5988,1714.1,416.1,1924.9,8.2,70,121.8,164.5,1137,36.7,325.2,23100.5,42410.6 +2023-09-10T16:30+02:00,2156.7,3665.9,6714.2,1920.7,416.1,2024.7,8.2,138.9,39.2,164.5,1133.2,48,309.2,20997.4,42274.6 +2023-09-10T16:45+02:00,2149,3699,7520.6,2106.9,416.1,2422.9,8.3,295.7,257.4,164.5,1095,69.1,285.7,18913.1,42672.9 +2023-09-10T17:00+02:00,2142.6,3719.3,7997.8,2322.9,416.1,3027,8.3,89.3,43.4,171.6,1115.8,80.4,286.2,16667.6,43313.7 +2023-09-10T17:15+02:00,2132.2,3741.3,9091.5,2584.3,416.1,3520,8.4,209.4,117.9,185.5,1133,72.7,318.5,14347.8,43838.7 +2023-09-10T17:30+02:00,2122.1,3776.5,9730.7,2782.6,416.1,4004.6,8.4,260.1,523.7,186.8,1122.7,85.9,314.5,12020.8,44316.1 +2023-09-10T17:45+02:00,2109.9,3815.6,9927.1,3135.1,416.1,4274.7,8.5,310,1741.5,187.5,1123.9,99.5,334.4,9718.4,44976.9 +2023-09-10T18:00+02:00,2094.3,3866.3,9887,3343.9,416.1,4747,8.5,81.2,318.9,198.5,1118.9,131.9,362.1,7578.3,45998 +2023-09-10T18:15+02:00,2086.1,3901.5,9975.8,3633.7,416.1,4944.6,8.7,140.7,797.2,202.2,1122.6,177.7,380.5,5564.1,46205.6 +2023-09-10T18:30+02:00,2081.6,3930.2,10120.4,4026.7,416.1,5076.2,8.8,269.2,2793.6,202.3,1120.9,216.2,400.5,3735.3,46430.6 +2023-09-10T18:45+02:00,2075.3,3956.4,10133.8,4178.5,416.1,5263.6,8.9,251.6,4245.5,205.9,1126.4,248.9,420.5,2296.7,46567.1 +2023-09-10T19:00+02:00,2070.1,3971.7,10127.1,4218.6,416.1,5375.1,9.1,271.9,3946.7,205.9,1129.4,268.7,447.4,1235,46672.3 +2023-09-10T19:15+02:00,2067.8,3991.3,10172.8,4263.2,416.1,5411.4,9.3,298.9,4969.8,205.9,1109.8,267.1,524.6,539.6,46533.8 +2023-09-10T19:30+02:00,2067.3,3997.4,10184.2,4300.7,416.1,5436.7,9.5,305.9,5467.4,205.9,1102.2,279.6,605.1,161.8,46657.8 +2023-09-10T19:45+02:00,2062.4,4000.1,10201.2,4303.2,416.1,5508.3,9.7,344.1,5712,205.9,1119,326.3,642.3,30.4,46845.4 +2023-09-10T20:00+02:00,2057.9,4004,10171.9,4306.3,416.1,5547.2,9.9,327.2,5689.9,208.6,1133.6,358.7,565.8,8.1,47345.8 +2023-09-10T20:15+02:00,2054.7,4012.9,10167.6,4326.1,416.1,5565.5,10.1,357.3,5644.6,209.7,1138.4,416.4,652.1,3.9,47487.3 +2023-09-10T20:30+02:00,2049,4010.4,10170.1,4340.5,416.1,5553,10.3,325.8,5495.4,209.7,1131.9,475.6,687.5,3,47364.8 +2023-09-10T20:45+02:00,2046,4018,10174.3,4381.6,416.1,5548.8,10.5,216.6,4529.8,209.7,1131.7,571.2,730.2,2.2,46580.4 +2023-09-10T21:00+02:00,2041.2,4003.4,10197.3,4395.4,416.1,5517.9,10.7,206.8,4348.5,209.7,1132,740.8,762.4,2.8,46362.2 +2023-09-10T21:15+02:00,2040.7,3995.3,10166.9,4319.2,416.1,5503.3,10.9,149.5,2861.7,209.6,1136.6,934.8,813.2,2.5,45876.3 +2023-09-10T21:30+02:00,2034,3974.1,10171.3,4206.8,416.1,5496.4,10.9,231.7,1967.1,209.6,1111.1,1013.4,878.5,1.6,45461 +2023-09-10T21:45+02:00,2027.7,3965.6,10168.9,4098.6,417.9,5475.6,11,207.1,1271.2,208.7,1114.3,1123.8,966.5,1.6,45050.9 +2023-09-10T22:00+02:00,2026.8,3929.9,10180.8,3966.7,419.2,5466.2,11.2,233.1,1892.6,199.2,1130.1,1206.6,1014.9,2.2,44660.6 +2023-09-10T22:15+02:00,2027,3914.5,10159.1,3727.6,419.2,5392.6,11.3,154,1570.1,198.2,1119.5,1298.5,1092.5,1.5,44005 +2023-09-10T22:30+02:00,2026.8,3888.8,10152.8,3558.5,419.2,5257.1,11.4,135.7,1143.9,198.1,1140.9,1304.7,1143.4,1.5,43218.7 +2023-09-10T22:45+02:00,2033.3,3878.9,10121,3466.7,419.2,5102,11.4,149.3,486.4,198.1,1150.8,1242.8,1192.7,1.4,42635.6 +2023-09-10T23:00+02:00,2043.5,3824.8,10152.1,3406.6,419.2,4859.2,11.5,254.3,1070.8,198.1,1145.9,1299.2,1238.3,2.8,42090.1 +2023-09-10T23:15+02:00,2049.6,3811.3,10142.5,3336.4,419.2,4801.7,11.5,119.1,654.2,198.2,1135.6,1360.9,1290.4,1.4,41641 +2023-09-10T23:30+02:00,2058.5,3799,10143.8,3302.2,419.2,4802.6,11.6,153.7,457.5,198.2,1144.9,1509.9,1281.5,1.4,41344.8 +2023-09-10T23:45+02:00,2070,3800.6,10121.7,3283.3,419.2,4791.6,11.6,76.6,412.3,198.2,1144.4,1668.2,1310.8,1.4,40854.7 \ No newline at end of file diff --git a/data/energy.rda b/data/energy.rda index af03144b..835b18a3 100644 Binary files a/data/energy.rda and b/data/energy.rda differ diff --git a/man/add_areastack_absolute.Rd b/man/add_areastack_absolute.Rd index 3a554ffc..e3e20e0a 100644 --- a/man/add_areastack_absolute.Rd +++ b/man/add_areastack_absolute.Rd @@ -54,22 +54,22 @@ energy \%>\% add_areastack_relative() # for a `sum` provide `x`, `y` and `color` -# `sum` of `power` in each `energy_type` category +# `sum` of `energy` in each `energy_type` category energy \%>\% - tidyplot(x = year, y = power, color = energy_type) \%>\% + tidyplot(x = year, y = energy, color = energy_type) \%>\% add_areastack_absolute() energy \%>\% - tidyplot(x = year, y = power, color = energy_type) \%>\% + tidyplot(x = year, y = energy, color = energy_type) \%>\% add_areastack_relative() # Flip x and y-axis energy \%>\% - tidyplot(x = power, y = year, color = energy_type) \%>\% + tidyplot(x = energy, y = year, color = energy_type) \%>\% add_areastack_absolute(orientation = "y") energy \%>\% - tidyplot(x = power, y = year, color = energy_type) \%>\% + tidyplot(x = energy, y = year, color = energy_type) \%>\% add_areastack_relative(orientation = "y") } diff --git a/man/add_barstack_absolute.Rd b/man/add_barstack_absolute.Rd index 609791dd..38b8afea 100644 --- a/man/add_barstack_absolute.Rd +++ b/man/add_barstack_absolute.Rd @@ -36,31 +36,31 @@ energy \%>\% add_barstack_relative() # for a `sum` provide `color` and `y` -# `sum` of `power` in each `energy_type` category +# `sum` of `energy` in each `energy_type` category energy \%>\% - tidyplot(y = power, color = energy_type) \%>\% + tidyplot(y = energy, color = energy_type) \%>\% add_barstack_absolute() energy \%>\% - tidyplot(y = power, color = energy_type) \%>\% + tidyplot(y = energy, color = energy_type) \%>\% add_barstack_relative() # Include variable on second axis energy \%>\% - tidyplot(x = year, y = power, color = energy_type) \%>\% + tidyplot(x = year, y = energy, color = energy_type) \%>\% add_barstack_absolute() energy \%>\% - tidyplot(x = year, y = power, color = energy_type) \%>\% + tidyplot(x = year, y = energy, color = energy_type) \%>\% add_barstack_relative() # Flip x and y-axis energy \%>\% - tidyplot(x = power, y = year, color = energy_type) \%>\% + tidyplot(x = energy, y = year, color = energy_type) \%>\% add_barstack_absolute(orientation = "y") energy \%>\% - tidyplot(x = power, y = year, color = energy_type) \%>\% + tidyplot(x = energy, y = year, color = energy_type) \%>\% add_barstack_relative(orientation = "y") } diff --git a/man/add_histogram.Rd b/man/add_histogram.Rd index e6dd7e04..d22ee232 100644 --- a/man/add_histogram.Rd +++ b/man/add_histogram.Rd @@ -34,11 +34,11 @@ Add histogram } \examples{ energy \%>\% - tidyplot(x = power) \%>\% + tidyplot(x = energy) \%>\% add_histogram() energy \%>\% - tidyplot(x = power, color = energy_type) \%>\% + tidyplot(x = energy, color = energy_type) \%>\% add_histogram() } diff --git a/man/add_pie.Rd b/man/add_pie.Rd index 8edf9acb..cb1418d2 100644 --- a/man/add_pie.Rd +++ b/man/add_pie.Rd @@ -36,13 +36,13 @@ energy \%>\% add_donut() # for a `sum` provide `color` and `y` -# `sum` of `power` in each `energy_type` category +# `sum` of `energy` in each `energy_type` category energy \%>\% - tidyplot(y = power, color = energy_type) \%>\% + tidyplot(y = energy, color = energy_type) \%>\% add_pie() energy \%>\% - tidyplot(y = power, color = energy_type) \%>\% + tidyplot(y = energy, color = energy_type) \%>\% add_donut() } diff --git a/man/figures/README-unnamed-chunk-3-1.png b/man/figures/README-unnamed-chunk-3-1.png index 9f4698cd..f3550606 100644 Binary files a/man/figures/README-unnamed-chunk-3-1.png and b/man/figures/README-unnamed-chunk-3-1.png differ diff --git a/man/figures/README-unnamed-chunk-4-1.png b/man/figures/README-unnamed-chunk-4-1.png index 3498c2b3..89f48398 100644 Binary files a/man/figures/README-unnamed-chunk-4-1.png and b/man/figures/README-unnamed-chunk-4-1.png differ diff --git a/man/flip_plot.Rd b/man/flip_plot.Rd index 489a9f49..cbba1516 100644 --- a/man/flip_plot.Rd +++ b/man/flip_plot.Rd @@ -30,7 +30,7 @@ study \%>\% flip_plot() energy \%>\% - tidyplot(x = year, y = power, color = energy_type) \%>\% + tidyplot(x = year, y = energy, color = energy_type) \%>\% add_barstack_absolute() \%>\% flip_plot() @@ -42,7 +42,7 @@ study \%>\% add_sem_errorbar() energy \%>\% - tidyplot(x = power, y = year, color = energy_type) \%>\% + tidyplot(x = energy, y = year, color = energy_type) \%>\% add_barstack_absolute(orientation = "y") } diff --git a/man/split_plot.Rd b/man/split_plot.Rd index 76d4b786..93cc3642 100644 --- a/man/split_plot.Rd +++ b/man/split_plot.Rd @@ -62,27 +62,27 @@ Split plot into multiple subplots # Before splitting energy \%>\% dplyr::filter(year \%in\% c(2005, 2010, 2015, 2020)) \%>\% - tidyplot(y = power, color = energy_source) \%>\% + tidyplot(y = energy, color = energy_source) \%>\% add_donut() # Split by year energy \%>\% dplyr::filter(year \%in\% c(2005, 2010, 2015, 2020)) \%>\% - tidyplot(y = power, color = energy_source) \%>\% + tidyplot(y = energy, color = energy_source) \%>\% add_donut() \%>\% split_plot(by = year) # Change dimensions of subplots energy \%>\% dplyr::filter(year \%in\% c(2005, 2010, 2015, 2020)) \%>\% - tidyplot(y = power, color = energy_source) \%>\% + tidyplot(y = energy, color = energy_source) \%>\% add_donut() \%>\% split_plot(by = year, widths = 15, heights = 15) # Spread plots across multiple pages energy \%>\% dplyr::filter(year \%in\% c(2005, 2010, 2015, 2020)) \%>\% - tidyplot(y = power, color = energy_source) \%>\% + tidyplot(y = energy, color = energy_source) \%>\% add_donut() \%>\% split_plot(by = year, ncol = 2, nrow = 1) diff --git a/vignettes/articles/Color-schemes.Rmd b/vignettes/articles/Color-schemes.Rmd index cb877d94..eafb5260 100644 --- a/vignettes/articles/Color-schemes.Rmd +++ b/vignettes/articles/Color-schemes.Rmd @@ -48,7 +48,7 @@ Similarly, when more colors are provided than needed, tidyplots will select the ```{r} energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() ``` @@ -56,31 +56,31 @@ And here are some alternative color schemes. ```{r} energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() %>% adjust_colors(colors_discrete_seaside) energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() %>% adjust_colors(colors_discrete_friendly_long) energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() %>% adjust_colors(colors_discrete_apple) energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() %>% adjust_colors(colors_discrete_ibm) energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() %>% adjust_colors(colors_discrete_candy) energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() %>% adjust_colors(colors_discrete_alger) energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() %>% adjust_colors(colors_discrete_rainbow) @@ -191,7 +191,7 @@ Than you can use your scheme as input to the `adjust_colors()` function. ```{r} energy %>% - tidyplot(year, power, color = energy_source) %>% + tidyplot(year, energy, color = energy_source) %>% add_barstack_absolute() %>% adjust_colors(new_colors = my_colors) ``` diff --git a/vignettes/articles/Visualizing-data.Rmd b/vignettes/articles/Visualizing-data.Rmd index a8410f73..605b6aa0 100644 --- a/vignettes/articles/Visualizing-data.Rmd +++ b/vignettes/articles/Visualizing-data.Rmd @@ -317,7 +317,7 @@ When looking at a single distribution of values, a classical approach for visual ```{r} energy %>% - tidyplot(x = power) %>% + tidyplot(x = energy) %>% add_histogram() ``` @@ -339,7 +339,7 @@ energy %>% dplyr::glimpse() ``` -As you might appreciate, this dataset contains the `power` in gigawatt produced per `energy_source` in Germany between `year` 2002 and 2023. Let's start with a `pie` plot. +As you might appreciate, this dataset contains the `energy` in terawatt hours (TWh) produced per `energy_source` in Germany between `year` 2002 and 2024. Let's start with a `pie` plot. ```{r} energy %>% @@ -349,51 +349,47 @@ energy %>% The above plot represents the `count` of values across the different `energy_type` categories. -However, we might be more interested, in the `sum` contribution of each `energy_type` to the total `power` production. Therefore, we have to provide the variable `power` as a `y` argument to the `tidyplots()` function. +However, we might be more interested, in the `sum` contribution of each `energy_type` to the total `energy` production. Therefore, we have to provide the variable `energy` as a `y` argument to the `tidyplots()` function. ```{r} energy %>% - tidyplot(y = power, color = energy_type) %>% + tidyplot(y = energy, color = energy_type) %>% add_donut() ``` Now we can appreciate the contribution of each energy type. Note that I also changed the `pie` for a `donut` plot, which is basically a pie chart with a white hole in the center. -The main criticism of `pie` and `donut` plots is that the human brain struggles to accurately interpret the proportions represented. For example, it's challenging to determine whether fossil or renewable power has a larger share in the plot. - -Another graphical representation is a `barstack` plot. +The main criticism of `pie` and `donut` plots is that the human brain struggles to accurately interpret the proportions represented. A slightly better option might be a `barstack` plot. ```{r} energy %>% - tidyplot(y = power, color = energy_type) %>% + tidyplot(y = energy, color = energy_type) %>% add_barstack_absolute() ``` -Here it might be slightly easier to compare the energy types. However, to really pinpoint this, we probably need to go back to a classical bar plot. +However, for a direct comparison, a classical bar plot is probably still the best option. ```{r} energy %>% - tidyplot(x = energy_type, y = power, color = energy_type) %>% + tidyplot(x = energy_type, y = energy, color = energy_type) %>% add_sum_bar() %>% add_sum_value() %>% - reorder_x_axis_labels("Renewable") + sort_x_axis_labels() ``` -Now we can see that renewable power production had a slightly larger overall share than fossil power production in the period between 2002 and 2023. - -If we want to visualize proportional data across time or another variable, `barstack` plots are a great way to. +Nevertheless, to visualize proportional data across time or another variable, `barstack` plots are the way to go. ```{r} energy %>% - tidyplot(x = year, y = power, color = energy_type) %>% + tidyplot(x = year, y = energy, color = energy_type) %>% add_barstack_absolute() ``` -Moreover, to see the relative instead of the absolute contribution, we can use the `add_barstack_relative()` function. +If we want to focus more on the relative instead of the absolute contribution, we can use the `add_barstack_relative()` function. ```{r} energy %>% - tidyplot(x = year, y = power, color = energy_type) %>% + tidyplot(x = year, y = energy, color = energy_type) %>% add_barstack_relative() ``` @@ -401,7 +397,7 @@ A similar plot can be achieved using an `areastack`. ```{r} energy %>% - tidyplot(x = year, y = power, color = energy_type) %>% + tidyplot(x = year, y = energy, color = energy_type) %>% add_areastack_relative() ``` @@ -414,7 +410,7 @@ energy %>% # downsample to 4 representative years dplyr::filter(year %in% c(2005, 2010, 2015, 2020)) %>% # start plotting - tidyplot(y = power, color = energy_type) %>% + tidyplot(y = energy, color = energy_type) %>% add_donut() %>% adjust_colors(new_colors = c("Fossil" = "grey", "Nuclear" = "#F6C54D", @@ -423,7 +419,7 @@ energy %>% split_plot(by = year) ``` -Now, let’s examine a related dataset that presents one week of energy data with higher time resolution. +Now, let's examine a related dataset that presents one week of energy data with higher time resolution. ```{r} energy_week %>%