sources
Data license: CC-BY
1 row where datasetId = 3037 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 |
---|---|---|---|---|---|---|---|---|
15694 | Earthquake deaths (NGDC-NOAA) | { "link": "https://www.ngdc.noaa.gov/nndc/struts/form?t=101650&s=1&d=1", "retrievedDate": "21st September 2018", "additionalInfo": "Estimated number of deaths from earthquake events. This is estimated as the total number from the earthquake event plus secondary impacts (such as a tsunami triggered by an earthquake).\n\nA significant earthquake is classified as one that meets at least one of the following criteria: caused deaths, caused moderate damage (approximately $1 million or more), magnitude 7.5 or greater, Modified Mercalli Intensity (MMI) X or greater, or the earthquake generated a tsunami.\n\nOur World in Data have aggregated significant earthquake deaths 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 Earthquake Database. National Geophysical Data Center, NOAA." } |
2018-09-21 12:17:25 | 2018-09-21 12:17:25 | Earthquake deaths (NGDC-NOAA) 3037 | Estimated number of deaths from earthquake events. This is estimated as the total number from the earthquake event plus secondary impacts (such as a tsunami triggered by an earthquake). A significant earthquake is classified as one that meets at least one of the following criteria: caused deaths, caused moderate damage (approximately $1 million or more), magnitude 7.5 or greater, Modified Mercalli Intensity (MMI) X or greater, or the earthquake generated a tsunami. Our World in Data have aggregated significant earthquake deaths 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/struts/form?t=101650&s=1&d=1 | National Geophysical Data Center / World Data Service (NGDC/WDS): Significant Earthquake 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");