sources
Data license: CC-BY
2 rows where datasetId = 6136 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 |
---|---|---|---|---|---|---|---|---|
28991 | International Renewable Energy Agency (IRENA) | { "link": "https://irena.org/publications/2022/Jul/Renewable-Power-Generation-Costs-in-2021", "retrievedDate": "2023-07-19", "additionalInfo": "", "dataPublishedBy": "International Renewable Energy Agency \u00a9 IRENA 2022" } |
2023-10-08 13:37:32 | 2023-12-14 12:03:29 | Renewable power generation costs (IRENA, 2023b) 6136 | https://irena.org/publications/2022/Jul/Renewable-Power-Generation-Costs-in-2021 | International Renewable Energy Agency © IRENA 2022 | |
28067 | International Renewable Energy Agency (IRENA) | { "link": "https://irena.org/publications/2022/Jul/Renewable-Power-Generation-Costs-in-2021", "retrievedDate": "2023-07-19", "additionalInfo": "Levelized cost of energy (LCOE) estimates the average cost per unit of energy generated across the lifetime of a new power plant. It is measured in 2021 US$ per kilowatt-hour.\n", "dataPublishedBy": "International Renewable Energy Agency \u00a9 IRENA 2022" } |
2023-07-20 13:41:28 | 2023-12-14 12:03:26 | Renewable power generation costs (IRENA, 2023b) 6136 | Levelized cost of energy (LCOE) estimates the average cost per unit of energy generated across the lifetime of a new power plant. It is measured in 2021 US$ per kilowatt-hour. | https://irena.org/publications/2022/Jul/Renewable-Power-Generation-Costs-in-2021 | International Renewable Energy Agency © IRENA 2022 |
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");