sources
Data license: CC-BY
1 row where datasetId = 5539 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 |
---|---|---|---|---|---|---|---|---|
21937 | OWID based on PRIO and UCDP | { "link": "https://www.prio.org/data/1; https://ucdp.uu.se/downloads/index.html#battlerelated", "retrievedDate": "25/02/2022", "additionalInfo": "The UCDP Battle-related Deaths Dataset provides data on direct deaths arising from 'state-based' conflicts. UCDP defines state-based armed conflict as: \u201ca contested incompatibility that concerns government and/or territory where the use of armed force between two parties, of which at least one is the government of a state, results in at least 25 battle-related deaths in a calendar year.\u201d\n\nBoth civilian and military deaths are included. Deaths due to disease or famine caused by conflict, as well as extra-judicial killings in custody, are excluded.\n\nThe data is organised by year and conflict. We aggregate this to provide total numbers of deaths each year, broken down by the conflict type and region. \nThis dataset runs from 1989 and aims to have global coverage over this period. Accordingly, we add a zero deaths observation for year-region-conflict type combinations that do appear in the dataset.\n\nThe labels for the conflict types we have used paraphrase UCDP/PRIO's technical definitions of 'Extrasystemic', 'Internal', 'Internationalised internal' and 'Interstate'.\n\nNote that in this dataset the location refers not (necessarily) to where fighting and deaths took place, but rather to the location of the 'incompatibility' between the participants that defines the conflict: usually the country or territory whose possession or governance is in dispute.\n\nTo extend the data back further in time we rely on the PRIO Battledeaths Datset, produced according to the same definitions and structure as the UCDP Battle-related Deaths Dataset. The PRIO data runs from 1946 to 2008 and is no longer maintained. We aggregated the PRIO data in the same way as the UCDP data, and then constructed a final joint series which consists of the PRIO data from 1946 to 1988 and the UCDP data from 1989 onwards.\n\n\n", "dataPublishedBy": "Pettersson, Therese, Shawn Davis, Amber Deniz, Garoun Engstr\u00f6m, Nanar Hawach, Stina H\u00f6gbladh, Margareta Sollenberg & Magnus \u00d6berg (2021). Organized violence 1989-2020, with a special emphasis on Syria. Journal of Peace Research 58(4).; Bethany Lacina & and Nils Petter Gleditsch, 2005. \u201eMonitoring Trends in Global Combat: A New Dataset of Battle Deaths\u201f, European Journal of Population 21(2\u20133): 145\u2013116. ", "dataPublisherSource": "Global newswire reporting; Global monitoring and translation of local news performed by the BBC; Secondary sources such as local media, NGO and IGO reports, field reports, books etc." } |
2022-02-26 13:32:21 | 2022-02-26 13:32:21 | State-based conflict deaths since 1946, by region and conflict type (PRIO; UCDP 2022) 5539 | The UCDP Battle-related Deaths Dataset provides data on direct deaths arising from 'state-based' conflicts. UCDP defines state-based armed conflict as: “a contested incompatibility that concerns government and/or territory where the use of armed force between two parties, of which at least one is the government of a state, results in at least 25 battle-related deaths in a calendar year.” Both civilian and military deaths are included. Deaths due to disease or famine caused by conflict, as well as extra-judicial killings in custody, are excluded. The data is organised by year and conflict. We aggregate this to provide total numbers of deaths each year, broken down by the conflict type and region. This dataset runs from 1989 and aims to have global coverage over this period. Accordingly, we add a zero deaths observation for year-region-conflict type combinations that do appear in the dataset. The labels for the conflict types we have used paraphrase UCDP/PRIO's technical definitions of 'Extrasystemic', 'Internal', 'Internationalised internal' and 'Interstate'. Note that in this dataset the location refers not (necessarily) to where fighting and deaths took place, but rather to the location of the 'incompatibility' between the participants that defines the conflict: usually the country or territory whose possession or governance is in dispute. To extend the data back further in time we rely on the PRIO Battledeaths Datset, produced according to the same definitions and structure as the UCDP Battle-related Deaths Dataset. The PRIO data runs from 1946 to 2008 and is no longer maintained. We aggregated the PRIO data in the same way as the UCDP data, and then constructed a final joint series which consists of the PRIO data from 1946 to 1988 and the UCDP data from 1989 onwards. | https://www.prio.org/data/1; https://ucdp.uu.se/downloads/index.html#battlerelated | Pettersson, Therese, Shawn Davis, Amber Deniz, Garoun Engström, Nanar Hawach, Stina Högbladh, Margareta Sollenberg & Magnus Öberg (2021). Organized violence 1989-2020, with a special emphasis on Syria. Journal of Peace Research 58(4).; Bethany Lacina & and Nils Petter Gleditsch, 2005. „Monitoring Trends in Global Combat: A New Dataset of Battle Deaths‟, European Journal of Population 21(2–3): 145–116. |
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");