sources
Data license: CC-BY
2 rows where datasetId = 6132 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
29207 | U.S. Energy Information Administration (EIA); Energy Institute Statistical Review of World Energy (2023) | { "link": "https://www.eia.gov/opendata/bulkfiles.php ; https://www.energyinst.org/statistical-review/", "retrievedDate": "2023-07-10", "additionalInfo": "\nThe Energy Institute Statistical Review of World Energy analyses data on world energy markets from the prior year.\n", "dataPublishedBy": "U.S. Energy Information Administration (EIA); Energy Institute Statistical Review of World Energy (2023)" } |
2023-11-07 09:44:22 | 2023-12-19 13:29:53 | Primary energy consumption (EI & EIA, 2023) 6132 | The Energy Institute Statistical Review of World Energy analyses data on world energy markets from the prior year. | https://www.eia.gov/opendata/bulkfiles.php ; https://www.energyinst.org/statistical-review/ | U.S. Energy Information Administration (EIA); Energy Institute Statistical Review of World Energy (2023) |
29206 | Energy Institute Statistical Review of World Energy (2023) | { "link": "https://www.energyinst.org/statistical-review/", "retrievedDate": "2023-06-27", "additionalInfo": "Primary energy consumption data was compiled by Our World in Data based on two key data sources:\n1. [Energy Institute (EI) Statistical Review of World Energy](https://www.energyinst.org/statistical-review).\n2. [International energy data from the U.S. Energy Information Administration (EIA)](https://www.eia.gov/international/data/world/total-energy/more-total-energy-data).\n\nEI provides the longest and most up-to-date time-series of primary energy. However, it does not provide data for all countries. We have therefore supplemented this dataset with energy data from the EIA. Where EI provides data for a given country, this data is adopted; for countries where this data is missing, we rely on EIA energy figures.\n\nPer capita figures have been calculated using a population dataset that is built and maintained by Our World in Data, based on [different sources](https://ourworldindata.org/population-sources).\n\nTo calculate energy per unit of GDP, we use total real GDP figures from [the Maddison Project Database, version 2020](https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-project-database-2020).\n\nThe Energy Institute Statistical Review of World Energy analyses data on world energy markets from the prior year.\n", "dataPublishedBy": "Energy Institute Statistical Review of World Energy (2023)" } |
2023-11-07 09:44:22 | 2023-12-19 13:29:51 | Primary energy consumption (EI & EIA, 2023) 6132 | Primary energy consumption data was compiled by Our World in Data based on two key data sources: 1. [Energy Institute (EI) Statistical Review of World Energy](https://www.energyinst.org/statistical-review). 2. [International energy data from the U.S. Energy Information Administration (EIA)](https://www.eia.gov/international/data/world/total-energy/more-total-energy-data). EI provides the longest and most up-to-date time-series of primary energy. However, it does not provide data for all countries. We have therefore supplemented this dataset with energy data from the EIA. Where EI provides data for a given country, this data is adopted; for countries where this data is missing, we rely on EIA energy figures. Per capita figures have been calculated using a population dataset that is built and maintained by Our World in Data, based on [different sources](https://ourworldindata.org/population-sources). To calculate energy per unit of GDP, we use total real GDP figures from [the Maddison Project Database, version 2020](https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-project-database-2020). The Energy Institute Statistical Review of World Energy analyses data on world energy markets from the prior year. | https://www.energyinst.org/statistical-review/ | Energy Institute Statistical Review of World Energy (2023) |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");