sources
Data license: CC-BY
1 row where datasetId = 3010 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 |
---|---|---|---|---|---|---|---|---|
6841 | Our World In Data based on GGDC-10 (2015) | { "link": "http://www.rug.nl/ggdc/productivity/10-sector/\n", "retrievedDate": "03/08/2017", "additionalInfo": "\n\nThe only changes we applied to the GGDC 10-sector database were: (i) dropping observations for GDP shares in Peru 1950-1985 since these are reported as negative in the original; and (ii) dropping observations for GDP shares in the Netherlands 1949-1959, since these are comparable to the period after 1960, as suggested by a marked jump in levels in the original series.\n", "dataPublishedBy": "Our World In Data based on GGDC-10 (2015)", "dataPublisherSource": "Various sources. Check documentation for details. " } |
2017-10-25 14:38:10 | 2017-11-02 13:04:40 | Share of industry in GDP at constant 2005 prices (GGDC) (split) 3010 | The only changes we applied to the GGDC 10-sector database were: (i) dropping observations for GDP shares in Peru 1950-1985 since these are reported as negative in the original; and (ii) dropping observations for GDP shares in the Netherlands 1949-1959, since these are comparable to the period after 1960, as suggested by a marked jump in levels in the original series. | http://www.rug.nl/ggdc/productivity/10-sector/ | Our World In Data based on GGDC-10 (2015) |
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");