sources
Data license: CC-BY
1 row where datasetId = 450 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 |
---|---|---|---|---|---|---|---|---|
572 | Renewable Energy Capacity by Technology - IRENA (2017) | { "link": "http://resourceirena.irena.org/gateway/dashboard/", "retrievedDate": "28/04/2017", "additionalInfo": "The data presented in the IRENA REsource database comes from a variety of sources. Most of the data are official statistics submitted by countries to IRENA using the IRENA renewable energy statistics questionnaire during its annual data collection cycle or taken from official publications. Where official statistics are unavailable, the statistics are supplemented with IRENA estimates or third party data such as that from industry associations.", "dataPublishedBy": "International Renewable Energy Agency (IRENA)", "dataPublisherSource": null } |
2017-04-29 17:57:34 | 2017-11-20 14:54:23 | Renewable Energy Capacity by Technology - IRENA (2017) 450 | The data presented in the IRENA REsource database comes from a variety of sources. Most of the data are official statistics submitted by countries to IRENA using the IRENA renewable energy statistics questionnaire during its annual data collection cycle or taken from official publications. Where official statistics are unavailable, the statistics are supplemented with IRENA estimates or third party data such as that from industry associations. | http://resourceirena.irena.org/gateway/dashboard/ | International Renewable Energy Agency (IRENA) |
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");