Tous les jeux de données

Concentrations of fine particulate matter (PM2.5)

Concentrations of fine particulate matter (PM2.5) Source: WHO Global Health Observatory (indicator SDGPM25). Rows are country x year; sex-disaggregated rows carry a sex label.

Source: WHO Global Health Observatory14,896 lignesMis à jour: 21/09/2026
air-qualitypm25pollutionwho

Qualité

97

Attribution

World Health Organization (WHO)

Schéma

ColonneTypeDescription
country_codestringCountry code (WHO GHO API field SpatialDim, country-level rows only).
country_namestringCountry name from the WHO GHO COUNTRY dimension labels.
yearintegerYear of observation (WHO GHO API field TimeDim).
valuefloatEstimate value for the country, year (and sex where present), as defined by the WHO GHO indicator (see the dataset description; WHO GHO API field NumericValue).
lowfloatLower bound of the published uncertainty interval (WHO GHO API field Low). Only present when the indicator publishes uncertainty intervals.
highfloatUpper bound of the published uncertainty interval (WHO GHO API field High). Only present when the indicator publishes uncertainty intervals.

Exemple de lignes

country_codecountry_nameyearvaluelowhigh
ABWABW201018.6485572948.77528074139.542685204
ABWABW201018.4636743088.77528074139.542685204
ABWABW201017.8026813998.58137144835.257839472
ABWABW201018.4636743088.77528074139.542685204
ABWABW201116.9491425048.37661401337.174765363

Utiliser avec un LLM

Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/who_gho/pm25_concentration" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/who_gho/pm25_concentration").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

Point d’accès API: https://datazimuts.com/v1/datasets/who_gho/pm25_concentration

Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.