sources
Data license: CC-BY
1 row where datasetId = 3039 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 |
---|---|---|---|---|---|---|---|---|
15696 | Volcanic eruption deaths (NGDC/NOAA) | { "link": "https://www.ngdc.noaa.gov/nndc/servlet/ShowDatasets?dataset=102557&search_look=50&display_look=50", "retrievedDate": "21st September 2018", "additionalInfo": "Data represents the estimated number of deaths from volcanic eruption events. This includes direct deaths from volcanic eruptions, in addition to secondary impacts (such as a tsunami or earthquake triggered by an eruption).\n\nOur World in Data have aggregated significant earthquake numbers by country/location per year. \n\nDue to data availability, reporting and evidence, it's expected that more recent data will be more complete than the long historical record.", "dataPublishedBy": "National Geophysical Data Center / World Data Service (NGDC/WDS): Significant Volcanic Eruptions Database. National Geophysical Data Center, NOAA." } |
2018-09-21 12:49:52 | 2018-09-21 12:49:52 | Volcanic eruption deaths (NGDC/NOAA) 3039 | Data represents the estimated number of deaths from volcanic eruption events. This includes direct deaths from volcanic eruptions, in addition to secondary impacts (such as a tsunami or earthquake triggered by an eruption). Our World in Data have aggregated significant earthquake numbers by country/location per year. Due to data availability, reporting and evidence, it's expected that more recent data will be more complete than the long historical record. | https://www.ngdc.noaa.gov/nndc/servlet/ShowDatasets?dataset=102557&search_look=50&display_look=50 | National Geophysical Data Center / World Data Service (NGDC/WDS): Significant Volcanic Eruptions Database. National Geophysical Data Center, NOAA. |
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");