원클릭으로
co2
Iceland's climate action plan (co2.is) — 106 numbered actions with status, ministry, start/end years.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Iceland's climate action plan (co2.is) — 106 numbered actions with status, ministry, start/end years.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Iceland energy authority — electricity generation, use, fuel sales, power plants and licences. Use for energy-system analysis.
Fiskistofa — public WFS layers for fishing closures, regulations and fishing areas; paid REST catch/quota data is excluded.
Hafrannsóknastofnun / MFRI — annual fish-stock assessments, advice, landings and survey series in embedded tables.
Environment Agency of Iceland GIS — open WFS layers for contaminated land, water, protected areas, noise and wastewater.
Icelandic Met Office (Veðurstofa) — weather observations, stations, forecasts and earthquakes via the modern JSON API at api.vedur.is.
Iceland Tax Authority — annual reports (ársreikningar), company registry, ownership chain mapping by kennitala.
| name | co2 |
| description | Iceland's climate action plan (co2.is) — 106 numbered actions with status, ministry, start/end years. |
Iceland's climate action plan tracker, covering every numbered action through
2035. Published at co2.is by Umhverfis-, orku- og loftslagsráðuneytið.
Each action has a title, goal, start/end years, status, and responsible ministry. The tracker is the primary public accountability mechanism for Iceland's nationally determined contribution (NDC) under the Paris Agreement.
Four-level hierarchy; actions are coded <Kerfi>.<Málaflokkur>.<Viðfangsefni>.<Index>.
| Level | Example | Meaning |
|---|---|---|
| Kerfi (system) | S | One of four accounting systems |
| Málaflokkur | S.5 | Sub-sector |
| Viðfangsefni (focus area) | S.5.C | Specific target |
| Aðgerð (action) | S.5.C.1 | Individual measure (catalog row) |
| Code | Kerfi | Meaning | Actions (2026-04) |
|---|---|---|---|
S | Samfélagslosun | Community emissions (covered by Iceland's EU effort-sharing commitment) | 61 |
V | Viðskiptakerfi | ETS — EU emissions-trading system sectors (stationary industry, aviation, maritime) | 9 |
L | Landnotkun | Land use, land-use change and forestry (LULUCF) | 12 |
Þ | Þverlægar aðgerðir | Cross-cutting actions (financial incentives, social) | 24 |
| Total | 106 |
Webflow-hosted SPA-ish site (static HTML output from Webflow CMS) at
co2.is. The action catalog lives on /allar-adgerdir, which references 32
viðfangsefni pages (/adgerdir/<slug>). Each viðfangsefni page contains
1–11 individual action accordion blocks. The scraper discovers all 32 slugs
from /allar-adgerdir then crawls each.
No API, no JSON endpoint — all data is rendered server-side into the HTML. Regex parsing of the Webflow accordion blocks is the reliable path.
Each action block has:
<div id="s5c1" class="adgerd-accordion">
...
<h3 class="title-6">Full orkuskipti ríkisflota og samgönguþjónustu fyrir 2030</h3>
<p class="text-small">Ríkið sé fyrirmynd í innkaupum hreinorkuökutækja ...</p>
<div class="label-big strong">Markmið aðgerðar</div>
<div class="text-small">Full orkuskipti ríkisflota ...</div>
<div class="label-big strong">Upphaf / Endir</div>
<div class="adgerd-meta-dates">
<div class="text-small">2023</div><div>–</div><div class="text-small">2030</div>
</div>
<div class="label-big strong">Staða aðgerðar</div>
<div status-color="Í framkvæmd" class="status-color"></div>
<div class="label-big strong">Ábyrgðaraðili</div>
<div class="text-small">Fjármála- og efnahagsráðuneyti</div>
</div>
The status-color attribute on the status marker is the authoritative status string (avoids ambiguity when the label is truncated for layout).
| Status | Meaning | Color on the site |
|---|---|---|
Lokið | Completed | Green |
Í framkvæmd | In progress | Yellow |
Samþykkt | Approved (not yet started) | Dark grey |
Fyrirhugað | Planned | Light grey |
Á hugmyndastigi | Conceptual | Very light grey |
# Crawl all 32 viðfangsefni pages, write data/processed/co2_actions.csv
uv run python scripts/co2.py fetch
# List the catalog, optionally filtered
uv run python scripts/co2.py list
uv run python scripts/co2.py list --kerfi S
uv run python scripts/co2.py list --status "Í framkvæmd"
uv run python scripts/co2.py list --ministry Fjármála
data/processed/co2_actions.csv:
| Column | Description |
|---|---|
code | Canonical action code (e.g. S.5.C.1) |
id | Lowercase id from the HTML anchor (e.g. s5c1) |
kerfi | S, V, L, or Þ |
malaflokkur_nr | Second-level digit (1–7) |
vidfangsefni_letter | Third-level letter (A–D) |
action_idx | Action number within its viðfangsefni |
vidfangsefni_slug | URL slug of the parent viðfangsefni |
title | Short title |
description | First-paragraph summary |
markmid | Goal (Markmið aðgerðar) |
upphaf | Start year (integer) |
endir | End year (integer, blank if open-ended) |
stada | Status enum (Lokið, Í framkvæmd, Samþykkt, Fyrirhugað, Á hugmyndastigi) |
abyrgdaradili | Responsible ministry / ministries (pipe-separated) |
vidfangsefni_url | Source URL |
/adlogun/ (adaptation plan) tree, which this skill does not yet
scrape.endir is blank for those — don't
default-fill with upphaf.th2b-…. The scraper maps th → Þ for the kerfi
column so catalogs are human-readable; id keeps the ASCII prefix.Upphaf / Endir (U+00A0 between / and Endir). The scraper
normalises whitespace before matching.adgerd-accordion, label-big strong, adgerd-meta-dates) that
appear stable, but CSS refactors could break the scraper. Re-save one
viðfangsefni HTML and diff against the cached data/raw/co2/*.html to
verify before blaming the regex./adlogun. Those are a
distinct catalog (fewer actions, different vocabulary) and are out of
scope for this skill."Byggir á upplýsingum frá Umhverfis-, orku- og loftslagsráðuneytinu (co2.is)."