sources
Data license: CC-BY
1 row where datasetId = 2755 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 |
---|---|---|---|---|---|---|---|---|
15488 | Our World in Data based on the International Institute for Strategic Studies (via the World Bank) | { "link": "https://github.com/owid/notebooks/tree/main/HannahRitchie/armed-forces", "additionalInfo": "This dataset has been constructed by Our World in Data based on two variables.\n\n\u2013 Armed forces personnel as published by the International Institute for Strategic Studies - The Military Balance. This is made available via the World Bank World Development Indicators: http://data.worldbank.org/data-catalog/world-development-indicators\n\u2013 The Our World in Data population series. Details on how this is constructed are available here: https://ourworldindata.org/population-sources\n\nArmed forces as a share of total population is then calculated by dividing total armed forces personnel by population and multiplying by 100. \n\nThe input and output files, and script used to calculate this data is available on GitHub here: https://github.com/owid/notebooks/tree/main/HannahRitchie/armed-forces\n\n-----\nArmed forces personnel are active duty military personnel, including paramilitary forces if the training, organization, equipment, and control suggest they may be used to support or replace regular military forces.\n\nLimitations and exceptions: Data excludes personnel not on active duty, therefore it underestimates the share of the labor force working for the defense establishment. The cooperation of governments of all countries listed in \u201cThe Military Balance\u201d has been sought by IISS and, in many cases, received. However, some data in \u201cThe Military Balance\u201d is estimated.\n\nStatistical concept and methodology: Military data on manpower represent quantitative assessment of the personnel strengths of the world's armed forces. The IISS collects the data from a wide variety of sources. The numbers are based on the most accurate data available to, or on the best estimate that can be made by the International Institute for Strategic Studies (IISS) at the time of its annual publication. The current WDI indicator includes active armed forces and active paramilitary (but not reservists). Armed forces personnel comprise all servicemen and women on full-time duty, including conscripts and long-term assignments from the Reserves (\u201cReserve\u201d describes formations and units not fully manned or operational in peacetime, but which can be mobilized by recalling reservists in an emergency). The indicator includes paramilitary forces. The source of the data (IISS) reports armed forces and paramilitary forces separately, however these figures are added for the purpose of computing this series. Home Guard units are counted as paramilitary.", "dataPublishedBy": "Our World in Data based on the International Institute for Strategic Studies (via the World Bank)" } |
2018-04-11 17:52:07 | 2018-04-18 15:36:41 | Armed forces personnel as a share of the total population (OWID based on World Bank) 2755 | This dataset has been constructed by Our World in Data based on two variables. – Armed forces personnel as published by the International Institute for Strategic Studies - The Military Balance. This is made available via the World Bank World Development Indicators: http://data.worldbank.org/data-catalog/world-development-indicators – The Our World in Data population series. Details on how this is constructed are available here: https://ourworldindata.org/population-sources Armed forces as a share of total population is then calculated by dividing total armed forces personnel by population and multiplying by 100. The input and output files, and script used to calculate this data is available on GitHub here: https://github.com/owid/notebooks/tree/main/HannahRitchie/armed-forces ----- Armed forces personnel are active duty military personnel, including paramilitary forces if the training, organization, equipment, and control suggest they may be used to support or replace regular military forces. Limitations and exceptions: Data excludes personnel not on active duty, therefore it underestimates the share of the labor force working for the defense establishment. The cooperation of governments of all countries listed in “The Military Balance” has been sought by IISS and, in many cases, received. However, some data in “The Military Balance” is estimated. Statistical concept and methodology: Military data on manpower represent quantitative assessment of the personnel strengths of the world's armed forces. The IISS collects the data from a wide variety of sources. The numbers are based on the most accurate data available to, or on the best estimate that can be made by the International Institute for Strategic Studies (IISS) at the time of its annual publication. The current WDI indicator includes active armed forces and active paramilitary (but not reservists). Armed forces personnel comprise all servicemen and women on full-time duty, including conscripts and long-term assignments from the Reserves (“Reserve” des… | https://github.com/owid/notebooks/tree/main/HannahRitchie/armed-forces | Our World in Data based on the International Institute for Strategic Studies (via the World Bank) |
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");