Baselight

Global Energy Consumption & Renewable Generation

Global Energy Consumption (1990-2020) & Renewable Energy Generation (1997-2017)

@kaggle.jamesvandenberg_renewable_power_generation

About this Dataset

Global Energy Consumption & Renewable Generation

Content

4 of these datasets outline the quantity of terawatt hours (TWh) produced through various sources of energy, comparing both renewable and non-renewable sources, while highlighting the renewable use of the top 20 countries. The Renewables Power Generation dataset includes a 1997-2017 timeline that outlines the progress of the main renewable energy sectors : Hydro, Wind, Biofuel, Solar PV, and Geothermal. Additionally, the Top 20 Countries Power Generation dataset includes the national data for each of the renewable categories as outlined above. The last 2 datasets include the global TWh generated from renewable and non-renewable sources.

In the latest version, I added two datasets which contain the global consumption figures on national and continental/international group levels, which help provide context about the quantity of energy required, how that is changing over time, and how we are doing in terms of transitioning from non-renewable to renewable energy use.

Source

Renewable Energy: Reddy, Vamsi., Kalananda, Aala., Komanapalli, Narayana. "Nature Inspired Optimization Algorithms for Renewable Energy Generation, Distribution and Management - A Comprehensive Review. 2021.

Consumption: https://yearbook.enerdata.net/total-energy/world-consumption-statistics.html (data converted from mTOE to TWh)

Inspiration

As temperatures rise and storms grow more fierce, improving the efficiency and increasing the use of renewable energy sources is critical. In turn, understanding which nations are leading the way and which require more immediate transformations will help target efforts and hopefully, reach global goals.

Which types of renewables are improving the fastest? Which countries using which types of renewables? At the increasing rate of returns on renewables, how long will it take to meet global demands and eliminate non-renewables, or atleast, break 50%?

Tables

Continent Consumption Twh

@kaggle.jamesvandenberg_renewable_power_generation.continent_consumption_twh
  • 11.05 KB
  • 31 rows
  • 12 columns
Loading...

CREATE TABLE continent_consumption_twh (
  "year" BIGINT,
  "world" DOUBLE,
  "oecd" DOUBLE,
  "brics" DOUBLE,
  "europe" DOUBLE,
  "north_america" DOUBLE,
  "latin_america" DOUBLE,
  "asia" DOUBLE,
  "pacific" DOUBLE,
  "africa" DOUBLE,
  "middle_east" DOUBLE,
  "cis" DOUBLE
);

Country Consumption Twh

@kaggle.jamesvandenberg_renewable_power_generation.country_consumption_twh
  • 35.02 KB
  • 33 rows
  • 45 columns
Loading...

CREATE TABLE country_consumption_twh (
  "year" DOUBLE,
  "china" DOUBLE,
  "united_states" DOUBLE,
  "brazil" DOUBLE,
  "belgium" DOUBLE,
  "czechia" DOUBLE,
  "france" DOUBLE,
  "germany" DOUBLE,
  "italy" DOUBLE,
  "netherlands" DOUBLE,
  "poland" DOUBLE,
  "portugal" DOUBLE,
  "romania" DOUBLE,
  "spain" DOUBLE,
  "sweden" DOUBLE,
  "united_kingdom" DOUBLE,
  "norway" DOUBLE,
  "turkey" DOUBLE,
  "kazakhstan" DOUBLE,
  "russia" DOUBLE,
  "ukraine" DOUBLE,
  "uzbekistan" DOUBLE,
  "argentina" DOUBLE,
  "canada" DOUBLE,
  "chile" DOUBLE,
  "colombia" DOUBLE,
  "mexico" DOUBLE,
  "venezuela" DOUBLE,
  "indonesia" DOUBLE,
  "japan" DOUBLE,
  "malaysia" DOUBLE,
  "south_korea" DOUBLE,
  "taiwan" DOUBLE,
  "thailand" DOUBLE,
  "india" DOUBLE,
  "australia" DOUBLE,
  "new_zealand" DOUBLE,
  "algeria" DOUBLE,
  "egypt" DOUBLE,
  "nigeria" DOUBLE,
  "south_africa" DOUBLE,
  "iran" DOUBLE,
  "kuwait" DOUBLE,
  "saudi_arabia" DOUBLE,
  "united_arab_emirates" DOUBLE
);

Nonrenewablestotalpowergeneration

@kaggle.jamesvandenberg_renewable_power_generation.nonrenewablestotalpowergeneration
  • 2.37 KB
  • 8 rows
  • 2 columns
Loading...

CREATE TABLE nonrenewablestotalpowergeneration (
  "mode_of_generation" VARCHAR,
  "contribution_twh" DOUBLE
);

Renewablepowergeneration97–17

@kaggle.jamesvandenberg_renewable_power_generation.renewablepowergeneration97_17
  • 5.08 KB
  • 28 rows
  • 5 columns
Loading...

CREATE TABLE renewablepowergeneration97_17 (
  "year" BIGINT,
  "hydro_twh" DOUBLE,
  "biofuel_twh" DOUBLE,
  "solar_pv_twh" DOUBLE,
  "geothermal_twh" DOUBLE
);

Renewablestotalpowergeneration

@kaggle.jamesvandenberg_renewable_power_generation.renewablestotalpowergeneration
  • 2.4 KB
  • 9 rows
  • 2 columns
Loading...

CREATE TABLE renewablestotalpowergeneration (
  "mode_of_generation" VARCHAR,
  "contribution_twh" DOUBLE
);

Top20countriespowergeneration

@kaggle.jamesvandenberg_renewable_power_generation.top20countriespowergeneration
  • 5.64 KB
  • 20 rows
  • 6 columns
Loading...

CREATE TABLE top20countriespowergeneration (
  "country" VARCHAR,
  "hydro_twh" DOUBLE,
  "biofuel_twh" DOUBLE,
  "solar_pv_twh" DOUBLE,
  "geothermal_twh" DOUBLE,
  "total_twh" DOUBLE
);