sources
Data license: CC-BY
1 row where datasetId = 5027 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 |
---|---|---|---|---|---|---|---|---|
17758 | Emissions - Agriculture: Rice Cultivation | { "link": "http://www.fao.org/faostat/en/?#data/", "retrievedDate": "13-Feb-2020", "additionalInfo": "GHG emissions from rice cultivation consist of methane gas (CH4) emitted by anaerobic decomposition of organic matter in paddy fields.", "dataPublishedBy": "Food and Agriculture Organization of the United Nations (FAO) (2020)", "dataPublisherSource": "FAOSTAT Emissions data are computed based on Activity Data from official statistics in the FAOSTAT Production/Crops domain (collected from country statistics offices through questionnaires) and on conversion factors in IPCC, 1997 Vol. 3, Ch. 4 (http://www.ipcc-nggip.iges.or.jp/public/gl/invs1.html) and IPCC, 2000, Ch. 4. (http://www.ipcc-nggip.iges.or.jp/public/gp/english/)." } |
2020-02-14 02:43:01 | 2020-02-14 02:43:01 | Emissions - Agriculture: Rice Cultivation 5027 | GHG emissions from rice cultivation consist of methane gas (CH4) emitted by anaerobic decomposition of organic matter in paddy fields. | http://www.fao.org/faostat/en/?#data/ | Food and Agriculture Organization of the United Nations (FAO) (2020) |
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");