sources
Data license: CC-BY
1 row where datasetId = 5366 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 |
---|---|---|---|---|---|---|---|---|
20599 | Natural disasters (EMDAT) | { "link": "www.emdat.be", "additionalInfo": "This data has been aggregated by Our World in Data by country and year based on the raw database of disasters published by EM-DAT, CRED / UCLouvain, Brussels, Belgium \u2013 www.emdat.be (D. Guha-Sapir).\n\nOur World in Data has also calculated each metric, adjusted for population, using a long-run population dataset constructed from Gapminder and UN Population Prospects.\nhttps://www.gapminder.org/\nhttps://population.un.org/wpp/\n\nOur World in Data has also calculated economic damage metrics adjusted for gross domestic product (GDP), using GDP data from the World Bank.\nhttp://data.worldbank.org/data-catalog/world-development-indicators\n", "dataPublishedBy": "EM-DAT, CRED / UCLouvain, Brussels, Belgium \u2013 www.emdat.be (D. Guha-Sapir)" } |
2021-09-07 16:08:57 | 2021-09-07 16:08:57 | Natural disasters (EMDAT) 5366 | This data has been aggregated by Our World in Data by country and year based on the raw database of disasters published by EM-DAT, CRED / UCLouvain, Brussels, Belgium – www.emdat.be (D. Guha-Sapir). Our World in Data has also calculated each metric, adjusted for population, using a long-run population dataset constructed from Gapminder and UN Population Prospects. https://www.gapminder.org/ https://population.un.org/wpp/ Our World in Data has also calculated economic damage metrics adjusted for gross domestic product (GDP), using GDP data from the World Bank. http://data.worldbank.org/data-catalog/world-development-indicators | www.emdat.be | EM-DAT, CRED / UCLouvain, Brussels, Belgium – www.emdat.be (D. Guha-Sapir) |
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");