sources
Data license: CC-BY
1 row where datasetId = 671 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 |
---|---|---|---|---|---|---|---|---|
2831 | FAO 2030-50 Projections of Arable Land (FAO (2017)) | { "link": null, "retrievedDate": null, "additionalInfo": "This series is based on the combination of two datasets--both produced by the UN Food and Agricultural Organization (FAO).\n\nData from 1961-2014 is derived from the UN FAO statistical database, and is given as the variable \"Arable land and permanent crops\". Available at: http://www.fao.org/faostat/en/#data [accessed 17th August 2017].\n\nData from 2020-2050 is based on UN FAO projections of arable land and permanent crop area from its report: Alexandratos, N. and J. Bruinsma. 2012. World agriculture towards 2030/2050: the 2012 revision. ESA Working paper No. 12-03. Rome, FAO. Available at: http://www.fao.org/docrep/016/ap106e/ap106e.pdf [accessed 17th August 2017].", "dataPublishedBy": "FAO 2030-50 Projections of Arable Land (FAO (2017))", "dataPublisherSource": null } |
2017-08-17 09:55:30 | 2017-11-02 13:04:39 | FAO 2030-50 Projections of Arable Land - FAO (2017) 671 | This series is based on the combination of two datasets--both produced by the UN Food and Agricultural Organization (FAO). Data from 1961-2014 is derived from the UN FAO statistical database, and is given as the variable "Arable land and permanent crops". Available at: http://www.fao.org/faostat/en/#data [accessed 17th August 2017]. Data from 2020-2050 is based on UN FAO projections of arable land and permanent crop area from its report: Alexandratos, N. and J. Bruinsma. 2012. World agriculture towards 2030/2050: the 2012 revision. ESA Working paper No. 12-03. Rome, FAO. Available at: http://www.fao.org/docrep/016/ap106e/ap106e.pdf [accessed 17th August 2017]. | FAO 2030-50 Projections of Arable Land (FAO (2017)) |
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");