sources
Data license: CC-BY
1 row where datasetId = 2925 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 |
---|---|---|---|---|---|---|---|---|
15653 | Our World In Data based on: IHME (2017); UCDP (2018); Correlates of War (2018); Brecke (1999) | { "link": "IHME: http://ghdx.healthdata.org/gbd-results-tool ; UCDP: ucdp.uu.se ; COW: correlatesofwar.org ; Brecke (1999): https://brecke.inta.gatech.edu/research/conflict/", "retrievedDate": "5/09/2018", "additionalInfo": "Some sources release data only at the conflict level. In these cases we have assumed an even death toll across the duration of the conflict and aggregated by year across all conflicts.", "dataPublishedBy": "IHME: Global Burden of Disease Study 2016 (GBD 2016) Results; UCDP: Pettersson, Ther\u00e9se and Kristine Eck (2018) Organized violence, 1989-2017. Journal of Peace Research 55(4); COW: Sarkees, Meredith Reid and Frank Wayman (2010). Resort to War: 1816 - 2007. Washington DC: CQ Press; Brecke: Violent Conflicts 1400 A.D. to the Present in Different Regions of the World (Paper prepared for the 1999 Meeting of the Peace Science Society) ", "dataPublisherSource": null } |
2018-09-06 15:54:47 | 2018-09-06 15:54:47 | World conflict death rate since 1989 (various sources) 2925 | Some sources release data only at the conflict level. In these cases we have assumed an even death toll across the duration of the conflict and aggregated by year across all conflicts. | IHME: http://ghdx.healthdata.org/gbd-results-tool ; UCDP: ucdp.uu.se ; COW: correlatesofwar.org ; Brecke (1999): https://brecke.inta.gatech.edu/research/conflict/ | IHME: Global Burden of Disease Study 2016 (GBD 2016) Results; UCDP: Pettersson, Therése and Kristine Eck (2018) Organized violence, 1989-2017. Journal of Peace Research 55(4); COW: Sarkees, Meredith Reid and Frank Wayman (2010). Resort to War: 1816 - 2007. Washington DC: CQ Press; Brecke: Violent Conflicts 1400 A.D. to the Present in Different Regions of the World (Paper prepared for the 1999 Meeting of the Peace Science Society) |
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");