sources
Data license: CC-BY
1 row where datasetId = 5192 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 |
---|---|---|---|---|---|---|---|---|
17922 | Calculated by Our World in Data based on WHO/UNICEF or IHME and UN Population Division (2019) | { "link": "http://data.worldbank.org/data-catalog/world-development-indicators; http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017; https://population.un.org/wpp/", "additionalInfo": "This dataset was calculated by Our World in Data based on the combination of multiple input sources. It uses rate or coverage estimates (e.g. electricity access rates, or prevalence of childhood stunting) and converts them to absolute numbers (e.g. the number of people without access to electricity) by combining with UN population estimates.\n\nAll conversions are based on population figures from the UN Population Division (2019 Revision): https://population.un.org/wpp/\n\nWHO/UNICEF estimates on the prevalence of electricity access; access to clean cooking fuels; sanitation access; improved water access; childhood stunting; wasting; and underweight is sourced via the World Bank, World Development Indicators: http://data.worldbank.org/data-catalog/world-development-indicators\n\nChildhood stunting; wasting; and maternal mortality estimates from the Institute for Health Metrics and Evaluation (IHME) is sourced from: http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017", "dataPublishedBy": "Calculated by Our World in Data based on WHO/UNICEF or IHME and UN Population Division (2019)" } |
2020-10-03 08:37:54 | 2023-04-21 10:42:18 | Global Health Indicators – Number of People (2020) 5192 | This dataset was calculated by Our World in Data based on the combination of multiple input sources. It uses rate or coverage estimates (e.g. electricity access rates, or prevalence of childhood stunting) and converts them to absolute numbers (e.g. the number of people without access to electricity) by combining with UN population estimates. All conversions are based on population figures from the UN Population Division (2019 Revision): https://population.un.org/wpp/ WHO/UNICEF estimates on the prevalence of electricity access; access to clean cooking fuels; sanitation access; improved water access; childhood stunting; wasting; and underweight is sourced via the World Bank, World Development Indicators: http://data.worldbank.org/data-catalog/world-development-indicators Childhood stunting; wasting; and maternal mortality estimates from the Institute for Health Metrics and Evaluation (IHME) is sourced from: http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017 | http://data.worldbank.org/data-catalog/world-development-indicators; http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017; https://population.un.org/wpp/ | Calculated by Our World in Data based on WHO/UNICEF or IHME and UN Population Division (2019) |
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");