sources
Data license: CC-BY
1 row where datasetId = 949 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 |
---|---|---|---|---|---|---|---|---|
6808 | Lighting efficiency in UK - OWID based on Fouquet & Pearson (2007) | { "link": null, "retrievedDate": null, "additionalInfo": "Data was calculated by OWID based on published figures by Fouquet & Pearson (2006). Calculated as the weighted-average efficiency of lighting in the United Kingdom. Calculated based on percentage share and efficiency data of lighting sources from Fouquet & Pearson (2006). Data represents the national average efficiency, calculated as the sum of (% share * efficiency) of each source.\n\nFor example: (share of lighting from candles * efficiency of candles) + (share of lighting from whale oil * efficiency of whale oil) + (share of lighting from kerosene * efficiency of kerosene).\n\nEfficiency is measured in lumen-hours per kilowatt-hour.\n\nReference:\n\nFouquet, R and Pearson, P J G (2006): \u2018Seven Centuries of Energy Services: The Price and Use of Light in the United Kingdom (1300-2000)\u2019, The Energy Journal, 27(1). Available at: http://eprints.lse.ac.uk/50460/ [accessed 3rd October 2017].", "dataPublishedBy": "Lighting efficiency in UK - OWID based on Fouquet & Pearson (2007)", "dataPublisherSource": null } |
2017-10-03 15:03:38 | 2017-11-02 13:04:39 | Lighting efficiency in UK - OWID based on Fouquet & Pearson (2007) 949 | Data was calculated by OWID based on published figures by Fouquet & Pearson (2006). Calculated as the weighted-average efficiency of lighting in the United Kingdom. Calculated based on percentage share and efficiency data of lighting sources from Fouquet & Pearson (2006). Data represents the national average efficiency, calculated as the sum of (% share * efficiency) of each source. For example: (share of lighting from candles * efficiency of candles) + (share of lighting from whale oil * efficiency of whale oil) + (share of lighting from kerosene * efficiency of kerosene). Efficiency is measured in lumen-hours per kilowatt-hour. Reference: Fouquet, R and Pearson, P J G (2006): ‘Seven Centuries of Energy Services: The Price and Use of Light in the United Kingdom (1300-2000)’, The Energy Journal, 27(1). Available at: http://eprints.lse.ac.uk/50460/ [accessed 3rd October 2017]. | Lighting efficiency in UK - OWID based on Fouquet & Pearson (2007) |
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");