tl;dr: download either the csv or xlsx SDG_Target_Indicator_UNSD_2023.csv or SDG_Target_Indicator_UNSD_2023.xlsx
2023 updated list of SDGs, targets & indicators with target search keywords from the JRC SDG Mapper ready for data processing. Data sources below.
SDG targets & indicator get yearly updates and are hence quickly outdated. This repo holds data sources, a processing script and the final table you can freely use for any purpose: SDG_Target_Indicator_UNSD_2023.csv or SDG_Target_Indicator_UNSD_2023.xlsx. You can either download the final files (watch out for the "last modified" date) or rerun the scripts yourself to make sure to get the latest version from the UN.
You can load the csv in pandas with:
import pandas as pd
df = pd.read_csv("SDG_Target_Indicator_UNSD_2023.csv",delimiter=";")
df
Or load the table directly in your script with pandas without cloning this repo or downloading any file manually:
import pandas as pd
df = pd.read_csv("https://raw.githubusercontent.com/do-me/SDG/main/SDG_Target_Indicator_UNSD_2023.csv",delimiter=";")
df
- Main indicator table homepage: https://unstats.un.org/sdgs/indicators/indicators-list/ (xlsx)
- Logos: https://www.un.org/sustainabledevelopment/news/communications-material/
- SGD Names from 2023 report: https://unstats.un.org/sdgs/report/2023/ (pdf)
Attention: as of 2023 be aware that target 11.c does not have an indicator/UNSD code yet. Check here too. Be careful when processing.
11.c Support least developed countries, including through financial and technical assistance, in building sustainable and resilient buildings utilizing local materials
No suitable replacement indicator was proposed. The global statistical community is encouraged to work to develop an indicator that could be proposed for the 2025 comprehensive review. See E/CN.3/2020/2, paragraph 23.
PR's very welcome. Please indicate what you corrected and why, possibly with the right data source. Else, feel free to file an issue.