// Source: https://www.gov.uk/government/statistics/renewable-sources-of-energy-chapter-6-digest-of-united-kingdom-energy-statistics-dukes
export function getData() {
  return [
    {
      year: "2017",
      "Onshore wind": 2470,
      "Offshore wind": 1798,
      "Solar photovoltaics": 985,
      "Small scale Hydro": 112,
      "Large scale Hydro": 394,
      "Landfill gas": 1405,
    },
    {
      year: "2018",
      "Onshore wind": 2612,
      "Offshore wind": 2281,
      "Solar photovoltaics": 1089,
      "Small scale Hydro": 111,
      "Large scale Hydro": 357,
      "Landfill gas": 1284,
    },
    {
      year: "2019",
      "Onshore wind": 2739,
      "Offshore wind": 2749,
      "Solar photovoltaics": 1068,
      "Small scale Hydro": 120,
      "Large scale Hydro": 390,
      "Landfill gas": 866,
    },
    {
      year: "2020",
      "Onshore wind": 3004,
      "Offshore wind": 3498,
      "Solar photovoltaics": 1109,
      "Small scale Hydro": 134,
      "Large scale Hydro": 456,
      "Landfill gas": 835,
    },
    {
      year: "2021",
      "Onshore wind": 2507,
      "Offshore wind": 3053,
      "Solar photovoltaics": 1044,
      "Small scale Hydro": 119,
      "Large scale Hydro": 353,
      "Landfill gas": 791,
    },
  ];
}
