sources
Data license: CC-BY
1 row where datasetId = 972 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 |
---|---|---|---|---|---|---|---|---|
6831 | Gas production - Etemad & Luciana | { "link": "http://www.tsp-data-portal.org/", "retrievedDate": "16/10/2017", "additionalInfo": "Data from 1900-1980 is sourced from Bouda Etemad and Jean Luciani, World Energy Production 1800 \u2013 1985, ISBN 2-600-56007-6.\n\nData from 1980 onwards is source from U.S. Energy Information Administration, International Energy Statistics.", "dataPublishedBy": "The SHIFT Project Data Portal", "dataPublisherSource": "Etemad & Luciana; US IEA Historical Statistics" } |
2017-10-16 12:14:21 | 2017-11-02 13:04:39 | Gas production - Etemad & Luciana 972 | Data from 1900-1980 is sourced from Bouda Etemad and Jean Luciani, World Energy Production 1800 – 1985, ISBN 2-600-56007-6. Data from 1980 onwards is source from U.S. Energy Information Administration, International Energy Statistics. | http://www.tsp-data-portal.org/ | The SHIFT Project Data Portal |
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");