sources
Data license: CC-BY
2 rows where datasetId = 5786 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 |
---|---|---|---|---|---|---|---|---|
29063 | Robbie Andrew, based on the Global Carbon Project | { "link": "https://folk.universitetetioslo.no/roberan/t/global_mitigation_curves.shtml", "retrievedDate": "2022-09-28", "additionalInfo": "\nData comes from historical emissions to 2017 from CDIAC/Global Carbon Project, projection to 2018 from Global Carbon Project (Le Qu\u00e9r\u00e9 et al. 2018)", "dataPublishedBy": "Robbie Andrew" } |
2023-10-17 14:51:05 | 2024-07-25 10:13:11 | CO2 mitigation curves for 1.5°C 5786 | Data comes from historical emissions to 2017 from CDIAC/Global Carbon Project, projection to 2018 from Global Carbon Project (Le Quéré et al. 2018) | https://folk.universitetetioslo.no/roberan/t/global_mitigation_curves.shtml | Robbie Andrew |
29062 | Robbie Andrew, based on the Global Carbon Project | { "link": "https://folk.universitetetioslo.no/roberan/t/global_mitigation_curves.shtml", "retrievedDate": "2022-09-28", "additionalInfo": "Data comes from historical emissions to 2017 from CDIAC/Global Carbon Project, projection to 2018 from Global Carbon Project (Le Qu\u00e9r\u00e9 et al. 2018)", "dataPublishedBy": "Robbie Andrew" } |
2023-10-17 14:51:04 | 2024-07-25 10:13:10 | CO2 mitigation curves for 1.5°C 5786 | Data comes from historical emissions to 2017 from CDIAC/Global Carbon Project, projection to 2018 from Global Carbon Project (Le Quéré et al. 2018) | https://folk.universitetetioslo.no/roberan/t/global_mitigation_curves.shtml | Robbie Andrew |
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");