sources
Data license: CC-BY
1 row where datasetId = 516 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 |
---|---|---|---|---|---|---|---|---|
652 | Air pollution by city - Fouquet and DPCC (2011) | { "link": "Fouquet (2011):\nhttp://www.sciencedirect.com/science/article/pii/S0921800911002953\nGovernment of India's Economic Survey of Delhi (2012-13):\nhttp://delhi.gov.in/DoIT/DoIT_Planning/ES2012-13/EN/ES_chapter8.pdf", "retrievedDate": "15/02/2016", "additionalInfo": "Raw data and extension of this set to 2016 was generously supplied through personal communication with the author.\nData trends for Delhi have a shorter coverage, and are not available post-2010 (later measurements are now reported based on particle size rather than total suspended particulate matter).", "dataPublishedBy": "Fouquet, R. (2011). Long run trends in energy-related external costs. Ecological Economics 70(12), 2380\u20132389 and the DPCC.", "dataPublisherSource": "This dataset combines air pollution data for London, representative of the UK from Foquet (2011) and Delhi, representative of India (Government of India, 2012-13)." } |
2017-06-03 19:05:54 | 2017-11-02 13:04:39 | Air pollution by city - Fouquet and DPCC (2011) 516 | Raw data and extension of this set to 2016 was generously supplied through personal communication with the author. Data trends for Delhi have a shorter coverage, and are not available post-2010 (later measurements are now reported based on particle size rather than total suspended particulate matter). | Fouquet (2011): http://www.sciencedirect.com/science/article/pii/S0921800911002953 Government of India's Economic Survey of Delhi (2012-13): http://delhi.gov.in/DoIT/DoIT_Planning/ES2012-13/EN/ES_chapter8.pdf | Fouquet, R. (2011). Long run trends in energy-related external costs. Ecological Economics 70(12), 2380–2389 and the DPCC. |
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");