diff --git a/.prettierrc b/.prettierrc index ea1460f2..ecaa2b9c 100644 --- a/.prettierrc +++ b/.prettierrc @@ -4,6 +4,6 @@ "singleQuote": true, "printWidth": 90, "tabWidth": 2, - "bracketSameLine": true, + "bracketSameLine": false, "endOfLine": "auto" } diff --git a/Atoms.tsx b/Atoms.tsx deleted file mode 100644 index cd2ab4be..00000000 --- a/Atoms.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { atom } from 'jotai' - -// Fixme revisit -// eslint-disable-next-line import/prefer-default-export -export const firstAtom = atom('') diff --git a/components/Map/Map.tsx b/components/Map/Map.tsx index b59a5607..33389ae3 100644 --- a/components/Map/Map.tsx +++ b/components/Map/Map.tsx @@ -8,6 +8,7 @@ import NextNProgress from 'nextjs-progressbar' import { colorTheme } from '../../Theme' import { mapColors } from '../shared' import { replaceLetters } from '../../utils/shared' +import { CurrentDataPoints } from '../../utils/types' const INITIAL_VIEW_STATE = { longitude: 17.062927, @@ -41,6 +42,17 @@ const getColor = ( return dataPoint === boundaries[0] ? colors[0] : colors[colors.length - 1] } + // Special case for KPIs with three cases + if (boundaries.length === 3) { + if (dataPoint > boundaries[1]) { + return colors[colors.length - 1] + } + if (dataPoint > boundaries[0]) { + return colors[4] + } + return colors[0] + } + // Special case for invalid dates const invalidDate = (possibleDate: unknown) => possibleDate instanceof Date && Number.isNaN(possibleDate.getTime()) if (invalidDate(dataPoint)) { @@ -66,17 +78,13 @@ const getColor = ( return colors[5] } -type Props = { - data: Array<{ - name: string - dataPoint: number | string | Date - formattedDataPoint: number | string - }> +type MapProps = { + data: Array boundaries: number[] | string[] | Date[] children?: ReactNode } -function Map({ data, boundaries, children }: Props) { +function Map({ data, boundaries, children }: MapProps) { const [municipalityData, setMunicipalityData] = useState({}) const router = useRouter() @@ -117,8 +125,9 @@ function Map({ data, boundaries, children }: Props) { const municipalityLines = municipalityData?.features?.flatMap( ({ geometry, properties }: { geometry: any; properties: any }) => { const name = replaceLetters(properties.name) - const dataPoint = data.find((e) => e.name === name)?.dataPoint - const formattedDataPoint = data.find((e) => e.name === name)?.formattedDataPoint + const currentMunicipality = data.find((e) => e.name === name) + const dataPoint = currentMunicipality?.primaryDataPoint + const formattedDataPoint = currentMunicipality?.formattedPrimaryDataPoint if (geometry.type === 'MultiPolygon') { return geometry.coordinates.map((coords: any) => ({ diff --git a/components/Map/MapLabels.tsx b/components/Map/MapLabels.tsx index 96b1ba7f..71943fa2 100644 --- a/components/Map/MapLabels.tsx +++ b/components/Map/MapLabels.tsx @@ -74,7 +74,15 @@ type MapLabelsProps = { } function MapLabels({ labels, rotations }: MapLabelsProps) { - const labelColors = labels.length === 2 ? [mapColors[0], mapColors[mapColors.length - 1]] : mapColors + let labelColors = mapColors + + // Special cases for binary KPIs and KPIs with three cases + if (labels.length === 2) { + labelColors = [mapColors[0], mapColors[mapColors.length - 1]] + } + if (labels.length === 3) { + labelColors = [mapColors[0], mapColors[4], mapColors[mapColors.length - 1]] + } return ( diff --git a/components/Municipality/MunicipalityScorecard.tsx b/components/Municipality/MunicipalityScorecard.tsx index 386ad852..e43e3831 100644 --- a/components/Municipality/MunicipalityScorecard.tsx +++ b/components/Municipality/MunicipalityScorecard.tsx @@ -6,6 +6,7 @@ import { H4, H5, ParagraphItalic } from '../Typography' import Icon from '../../public/icons/boxedArrow.svg' import PlanIcon from '../../public/icons/climatePlan.svg' import FactSection from '../FactSection' +import { climatePlanMissing } from '../../utils/datasetDefinitions' const StyledDiv = styled.div` display: flex; @@ -128,14 +129,14 @@ function Scorecard({ politicalRule, climatePlan, }: Props) { - const climatePlanYearFormatted = climatePlan.YearAdapted !== 'Saknas' + const climatePlanYearFormatted = climatePlan.YearAdapted !== climatePlanMissing ? `Antagen ${climatePlan.YearAdapted}` : climatePlan.YearAdapted const rankFormatted = `${rank} av 290` const politicalRuleFormatted = politicalRule ? politicalRule.join(', ') : 'Data saknas' const handleButtonClick = () => { - if (climatePlan.Link !== 'Saknas') { + if (climatePlan.Link !== climatePlanMissing) { window.open(climatePlan.Link, '_blank') } } @@ -156,7 +157,7 @@ function Scorecard({ Öppna diff --git a/components/Municipality/MunicipalitySolutions.tsx b/components/Municipality/MunicipalitySolutions.tsx index 86b8cef6..75314d80 100644 --- a/components/Municipality/MunicipalitySolutions.tsx +++ b/components/Municipality/MunicipalitySolutions.tsx @@ -6,6 +6,8 @@ import EVCar from '../../public/icons/evcars_32.svg' import Bike from '../../public/icons/bikelanes_32.svg' import Basket from '../../public/icons/consumtion_32.svg' import Charger from '../../public/icons/charger.svg' +import Procurements from '../../public/icons/kpis/procurements_32.svg' +import { requirementsInProcurement } from '../../utils/datasetDefinitions' const StyledH2 = styled(H2)` margin-top: 32px; @@ -27,7 +29,7 @@ type SolutionSectionProps = { title: string heading: string data: string - info: string + info: string | JSX.Element } function SolutionSection({ @@ -55,6 +57,32 @@ function MunicipalitySolutions({ municipality }: SolutionsProps) { Här visas nyckeltal för hur det går med klimatomställningen i kommunerna. + } + title="Hushållens konsumtionsutsläpp" + heading="CO₂e per person och år" + data={`${municipality.TotalConsumptionEmission.toFixed(1)} ton`} + info="Hushållens konsumtionsutsläpp (CO₂e) i ton per invånare år 2019." + /> + } + title="Klimatkrav i upphandlingar" + heading="Ställer kommunen klimatkrav i sina upphandlingar?" + data={requirementsInProcurement(municipality.ProcurementScore)} + info={( + <> + Kommuner som ställer klimatkrav vid offentliga upphandlingar. + “Ja” innebär principbeslut och underlag som tillstyrker. + “Kanske” innebär ja-svar i enkätundersökning eller via mejl, men utan underlag som tillstyrker. + {' '} + + Mejla oss + + {' '} + för att redigera informationen. + + )} + /> } title="Elbilarna" @@ -63,20 +91,6 @@ function MunicipalitySolutions({ municipality }: SolutionsProps) { info="Ökningstakten för andelen nyregistrerade laddbara bilar sedan Parisavtalet 2015 i procentenheter per år." /> - } - title="Cyklarna" - heading="Antal meter cykelväg per invånare" - data={`${municipality.BicycleMetrePerCapita.toFixed(1)} meter`} - info="Antal meter cykelväg per invånare år 2022 totalt för alla väghållare (statlig, kommunal, enskild)." - /> - } - title="Hushållens konsumtionsutsläpp" - heading="CO₂e per person och år" - data={`${municipality.TotalConsumptionEmission.toFixed(1)} ton`} - info="Hushållens konsumtionsutsläpp (CO₂e) i ton per invånare år 2019." - /> } title="Laddarna" @@ -84,6 +98,13 @@ function MunicipalitySolutions({ municipality }: SolutionsProps) { data={`${municipality.ElectricVehiclePerChargePoints < 1e10 ? municipality.ElectricVehiclePerChargePoints.toFixed(1) : 'Laddare saknas'}`} info="Antal registrerade laddbara bilar per offentliga laddpunkter år 2023. EU rekommenderar max 10 bilar per laddare." /> + } + title="Cyklarna" + heading="Antal meter cykelväg per invånare" + data={`${municipality.BicycleMetrePerCapita.toFixed(1)} meter`} + info="Antal meter cykelväg per invånare år 2022 totalt för alla väghållare (statlig, kommunal, enskild)." + /> ) } diff --git a/components/RadioButtonMenu.tsx b/components/RadioButtonMenu.tsx index 612a8209..c91b1c1d 100644 --- a/components/RadioButtonMenu.tsx +++ b/components/RadioButtonMenu.tsx @@ -1,6 +1,6 @@ import { Fragment } from 'react' import styled from 'styled-components' -import { datasetDescriptions } from '../utils/datasetDescriptions' +import { dataDescriptions } from '../utils/datasetDefinitions' import { SelectedData } from '../utils/types' import { devices } from '../utils/devices' @@ -47,7 +47,7 @@ const RadioInput = styled.input` } ` -const datasetKeys = Object.keys(datasetDescriptions) +const datasetKeys = Object.keys(dataDescriptions) type MenuProps = { selectedData: SelectedData diff --git a/data/README.md b/data/README.md index 68bdb0d9..e2847d92 100644 --- a/data/README.md +++ b/data/README.md @@ -30,7 +30,7 @@ To recalculate and refresh the site's data, navigate to the `/data` folder and e `python3 climate_data_calculations.py` -The results will be saved in the `/data/output` folder, primarily in the `climate-data.json` file. The climate data is sourced using a TypeScript utility service located at `utils/climateDataService.tsx`. This service is responsible for fetching and manipulating the data found in `climate-data.json` for use throughout the website. To add or edit the descriptions of datasets that appear in the national overview on the website's homepage, make the necessary changes in `utils/datasetDescriptions.tsx`. +The results will be saved in the `/data/output` folder, primarily in the `climate-data.json` file. The climate data is sourced using a TypeScript utility service located at `utils/climateDataService.tsx`. This service is responsible for fetching and manipulating the data found in `climate-data.json` for use throughout the website. To add or edit the descriptions of datasets that appear in the national overview on the website's homepage, make the necessary changes in `utils/datasetDefinitions.tsx`. #### Handling Data Inconsistencies for Municipalities diff --git a/data/climate_data_calculations.py b/data/climate_data_calculations.py index f79413be..1413ef30 100644 --- a/data/climate_data_calculations.py +++ b/data/climate_data_calculations.py @@ -1,14 +1,13 @@ # -*- coding: utf-8 -*- import json -import numpy as np -import pandas as pd from solutions.cars.electric_car_change_rate import get_electric_car_change_rate from solutions.cars.electric_vehicle_per_charge_points import get_electric_vehicle_per_charge_points from solutions.bicycles.bicycle_data_calculations import bicycle_calculations from facts.plans.plans_data_prep import get_climate_plans from facts.municipalities_counties import get_municipalities +from facts.procurements.climate_requirements_in_procurements import get_procurement_data from issues.emissions.emission_data_calculations import emission_calculations from issues.consumption.consumption_data_calculations import get_consumption_emissions @@ -21,10 +20,10 @@ print('1. Municipalities loaded and prepped') df = emission_calculations(df) -print('2. Climate data and calculations all done') +print('2. Climate data and calculations added') df = get_electric_car_change_rate(df) -print('3. Hybrid car data and calculations finished') +print('3. Hybrid car data and calculations added') df = get_climate_plans(df) print('4. Climate plans added') @@ -34,16 +33,17 @@ df = get_consumption_emissions(df) print('6. Consumption emission data added') - + df_evpc = get_electric_vehicle_per_charge_points() df = df.merge(df_evpc, on='Kommun', how='left') -print('7. Add CPEV for December 2023') +print('7. CPEV for December 2023 added') -# MERGE ALL DATA IN ONE LIST TO RULE THEM ALL +df_procurements = get_procurement_data() +df = df.merge(df_procurements, on='Kommun', how='left') +print('8. Climate requirements in procurements added') -temp = [] # remane the columns -for i in range(len(df)): - temp.append({ +temp = [ + { 'kommun': df.iloc[i]['Kommun'], 'län': df.iloc[i]['Län'], 'emissions': { @@ -57,7 +57,7 @@ '2018': df.iloc[i][2018], '2019': df.iloc[i][2019], '2020': df.iloc[i][2020], - '2021': df.iloc[i][2021] + '2021': df.iloc[i][2021], }, 'budget': df.iloc[i]['Budget'], 'emissionBudget': df.iloc[i]['parisPath'], @@ -65,8 +65,12 @@ 'totalApproximatedHistoricalEmission': df.iloc[i]['totalApproximatedHistorical'], 'trend': df.iloc[i]['trend'], 'trendEmission': df.iloc[i]['trendEmission'], - 'historicalEmissionChangePercent': df.iloc[i]['historicalEmissionChangePercent'], - 'neededEmissionChangePercent': df.iloc[i]['neededEmissionChangePercent'], + 'historicalEmissionChangePercent': df.iloc[i][ + 'historicalEmissionChangePercent' + ], + 'neededEmissionChangePercent': df.iloc[i][ + 'neededEmissionChangePercent' + ], 'hitNetZero': df.iloc[i]['hitNetZero'], 'budgetRunsOut': df.iloc[i]['budgetRunsOut'], 'electricCarChangePercent': df.iloc[i]['electricCarChangePercent'], @@ -77,9 +81,14 @@ 'bicycleMetrePerCapita': df.iloc[i]['metrePerCapita'], 'totalConsumptionEmission': df.iloc[i]['Total emissions'], 'electricVehiclePerChargePoints': df.iloc[i]['EVPC'], - }) + 'procurementScore': df.iloc[i]['procurementScore'], + 'procurementLink': df.iloc[i]['procurementLink'], + } + for i in range(len(df)) +] -with open('output/climate-data.json', 'w', encoding='utf8') as json_file: # save dataframe as json file +with open('output/climate-data.json', 'w', encoding='utf8') as json_file: + # save dataframe as json file json.dump(temp, json_file, ensure_ascii=False, default=str) print('Climate data JSON file created and saved') diff --git a/data/facts/plans/plans_data_prep.py b/data/facts/plans/plans_data_prep.py index 77e02cf2..853022d7 100644 --- a/data/facts/plans/plans_data_prep.py +++ b/data/facts/plans/plans_data_prep.py @@ -1,36 +1,10 @@ # -*- coding: utf-8 -*- -import numpy as np import pandas as pd -import re +from helpers import clean_kommun -PATH_PLANS_DATA = 'facts/plans/klimatplaner.xlsx' - -MUNICIPALITIES_W_S = ['Alingsås kommun', 'Bengtsfors kommun', 'Bollnäs kommun', 'Borås stad', 'Degerfors kommun', 'Grums kommun', - 'Hagfors kommun', 'Hofors kommun', 'Hällefors kommun', 'Höganäs kommun', 'Kramfors kommun', 'Munkfors kommun', - 'Mönsterås kommun', 'Robertsfors kommun', 'Sotenäs kommun', 'Storfors kommun', 'Strängnäs kommun', 'Torsås kommun', - 'Tranås kommun', 'Vännäs kommun', 'Västerås stad'] - - -def clean_kommun(kommun): - # Remove any whitespace - kommun = kommun.strip() - - # Replace 'Falu kommun' with 'Falun' - if kommun == 'Falu kommun': - return 'Falun' - if kommun == 'Region Gotland (kommun)': - return 'Gotland' - - # Remove 'kommun' or 'stad' from municipalities in the list 'municipalities_w_s' - if kommun in MUNICIPALITIES_W_S: - kommun = re.sub(r'( kommun| stad)', '', kommun) - - # Remove 'kommun', 'stad', 's kommun', or 's stad' from all other municipalities - kommun = re.sub(r'( kommun| stad|s kommun|s stad)', '', kommun) - - return kommun +PATH_PLANS_DATA = 'facts/plans/klimatplaner.xlsx' def get_climate_plans(df): @@ -48,7 +22,7 @@ def get_climate_plans(df): df_plans = df_plans.rename( columns={df_plans.columns[6]: 'cred'}) - df_plans = df_plans.where(pd.notnull(df_plans), 'Saknas') + df_plans = df_plans.where(pd.notnull(df_plans), 'Saknar plan') df = df.merge(df_plans, on='Kommun', how='left') diff --git "a/data/facts/procurements/Klimatkrav offentlig upphandling kartl\303\244ggning.xlsx" "b/data/facts/procurements/Klimatkrav offentlig upphandling kartl\303\244ggning.xlsx" new file mode 100644 index 00000000..88debee2 Binary files /dev/null and "b/data/facts/procurements/Klimatkrav offentlig upphandling kartl\303\244ggning.xlsx" differ diff --git a/data/facts/procurements/climate_requirements_in_procurements.py b/data/facts/procurements/climate_requirements_in_procurements.py new file mode 100644 index 00000000..b7a5eb3a --- /dev/null +++ b/data/facts/procurements/climate_requirements_in_procurements.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +import os +import pandas as pd +from helpers import clean_kommun + + +PATH_GREENPEACE_DATA = 'facts/procurements/Klimatkrav offentlig upphandling kartläggning.xlsx' + +RELATIVE_PATH_NUR_DATA = os.path.join( + os.path.dirname(__file__), + "../../../public/data/procurements/NUE2022_DATA_2023-12-20.xlsx" +) +NORMALIZED_PATH_NUR_DATA = os.path.normpath(RELATIVE_PATH_NUR_DATA) + +def get_greenpeace_data(): + df_greenpeace = pd.read_excel(PATH_GREENPEACE_DATA) + df_greenpeace['procurementLink'] = df_greenpeace['Länk\nKlimat\nkrav'] + df_greenpeace['procurementLink'] = df_greenpeace['procurementLink'].fillna('') + return df_greenpeace[['Kommun', 'procurementLink']] + +def get_nur_data(): + df_nur = pd.read_excel(NORMALIZED_PATH_NUR_DATA) + df_nur['Kommun'] = df_nur['ORG_NAMN'].apply(clean_kommun) + return df_nur[['Kommun', 'BINÄRT_UTFALL']] + +def calculate_procurement_score(df_greenpeace, df_nur): + df_merge = pd.merge(df_greenpeace, df_nur, on='Kommun', how='left') + df_merge['procurementScore'] = df_merge.apply( + lambda row: 2 if row['procurementLink'] != '' else 1 if row['BINÄRT_UTFALL'] > 0 else 0, axis=1 + ) + df_fill = df_merge.fillna(0) + return df_fill[['Kommun', 'procurementLink', 'procurementScore']] + +def get_procurement_data(): + """ + Retrieves climate requirements in procurement data. + """ + + # Read and clean Greenpeace data + df_greenpeace = get_greenpeace_data() + + # Read and clean NUR data + df_nur = get_nur_data() + + # Return df with calculated procurement scores + return calculate_procurement_score(df_greenpeace, df_nur) diff --git a/data/helpers.py b/data/helpers.py new file mode 100644 index 00000000..e0150567 --- /dev/null +++ b/data/helpers.py @@ -0,0 +1,39 @@ +import re + + +MUNICIPALITIES_W_S = ['Alingsås kommun', 'Bengtsfors kommun', 'Bollnäs kommun', 'Borås stad', + 'Degerfors kommun', 'Grums kommun', 'Hagfors kommun', 'Hofors kommun', + 'Hällefors kommun', 'Höganäs kommun', 'Kramfors kommun', 'Munkfors kommun', + 'Mönsterås kommun', 'Robertsfors kommun', 'Sotenäs kommun', 'Storfors kommun', + 'Strängnäs kommun', 'Torsås kommun', 'Tranås kommun', 'Vännäs kommun', 'Västerås stad'] + + +def clean_kommun(kommun): + """ + Clean the municipality name by removing whitespace and specific keywords. + + Args: + kommun (str): The municipality name to be cleaned. + + Returns: + str: The cleaned municipality name. + """ + + # Remove any whitespace + kommun = kommun.strip() + + # Replace 'Falu kommun' with 'Falun' + if kommun == 'Falu kommun': + return 'Falun' + + if kommun == 'Region Gotland (kommun)': + return 'Gotland' + + # Remove 'kommun' or 'stad' from municipalities in the list 'municipalities_w_s' + if kommun in MUNICIPALITIES_W_S: + kommun = re.sub(r'( kommun| stad)', '', kommun) + + # Remove 'kommun', 'stad', 's kommun', or 's stad' from all other municipalities + kommun = re.sub(r'( kommun| stad|s kommun|s stad)', '', kommun) + + return kommun diff --git a/data/output/climate-data.json b/data/output/climate-data.json index 1feec51b..5ba2c679 100644 --- a/data/output/climate-data.json +++ b/data/output/climate-data.json @@ -1,30452 +1 @@ -[ - { - "kommun": "Ale", - "län": "Västra Götalands län", - "emissions": { - "1990": 101590.559135861, - "2000": 129092.491313099, - "2005": 119368.612155635, - "2010": 144365.891847528, - "2015": 136462.136971346, - "2016": 134669.06421295, - "2017": 138470.229479528, - "2018": 144292.391846819, - "2019": 150954.120325987, - "2020": 133270.126574324, - "2021": 140535.25077554 - }, - "budget": 289908.68069823575, - "emissionBudget": { - "2024": 144501.62223702623, - "2025": 87781.63609896503, - "2026": 53325.46110500813, - "2027": 32394.07384542086, - "2028": 19678.705041783996, - "2029": 11954.391225056608, - "2030": 7262.03625992023, - "2031": 4411.531264750496, - "2032": 2679.910620562625, - "2033": 1627.988220686575, - "2034": 988.9679254070874, - "2035": 600.7768023478204, - "2036": 364.9590213865651, - "2037": 221.70477749959093, - "2038": 134.68089699330994, - "2039": 81.81575615778517, - "2040": 49.70131700268276, - "2041": 30.19248403739298, - "2042": 18.3412864552266, - "2043": 11.141938119965504, - "2044": 6.7684884248544215, - "2045": 4.111711541037541, - "2046": 2.4977765692293303, - "2047": 1.5173456910882261, - "2048": 0.9217549618436749, - "2049": 0.559946368631453, - "2050": 0.3401554086743564 - }, - "approximatedHistoricalEmission": { - "2021": 140535.25077554, - "2022": 142936.95388118387, - "2023": 143719.28805910517, - "2024": 144501.62223702623 - }, - "totalApproximatedHistoricalEmission": 429174.67844657216, - "trend": { - "2024": 144501.62223702623, - "2025": 145283.9564149473, - "2026": 146066.29059286858, - "2027": 146848.62477078964, - "2028": 147630.95894871093, - "2029": 148413.293126632, - "2030": 149195.6273045533, - "2031": 149977.96148247435, - "2032": 150760.2956603954, - "2033": 151542.6298383167, - "2034": 152324.96401623776, - "2035": 153107.29819415906, - "2036": 153889.63237208012, - "2037": 154671.96655000118, - "2038": 155454.30072792247, - "2039": 156236.63490584353, - "2040": 157018.96908376482, - "2041": 157801.30326168588, - "2042": 158583.63743960718, - "2043": 159365.97161752824, - "2044": 160148.3057954493, - "2045": 160930.6399733706, - "2046": 161712.97415129165, - "2047": 162495.30832921294, - "2048": 163277.642507134, - "2049": 164059.97668505507, - "2050": 164842.31086297636 - }, - "trendEmission": 4021471.130300033, - "historicalEmissionChangePercent": 0.6777828626744745, - "neededEmissionChangePercent": 39.25214489635509, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-12-30", - "electricCarChangePercent": 0.0776370481802374, - "electricCarChangeYearly": { - "2015": 0.026438569206842923, - "2016": 0.01288659793814433, - "2017": 0.01643835616438356, - "2018": 0.05028735632183908, - "2019": 0.07088607594936709, - "2020": 0.2733812949640288, - "2021": 0.4172767203513909, - "2022": 0.5561719833564494 - }, - "climatePlanLink": "https://www.ale.se/download/18.2dcf200c178661e144145a5/1617883886384/Energi-%20och%20klimatstrategi%202030.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Klimatstrategi 2030", - "bicycleMetrePerCapita": 2.881007594, - "totalConsumptionEmission": 5889.8, - "electricVehiclePerChargePoints": 151.88888888888889 - }, - { - "kommun": "Alingsås", - "län": "Västra Götalands län", - "emissions": { - "1990": 115453.473201118, - "2000": 103752.720914495, - "2005": 95231.4117268603, - "2010": 96655.8058687734, - "2015": 76554.4680501621, - "2016": 75086.0132397612, - "2017": 75800.5822749273, - "2018": 71234.921676589, - "2019": 75290.4132457419, - "2020": 66987.8963850153, - "2021": 63674.7692719455 - }, - "budget": 149487.40602048454, - "emissionBudget": { - "2024": 60230.11650487827, - "2025": 40256.09924495541, - "2026": 26906.033400889144, - "2027": 17983.22855288768, - "2028": 12019.479213710769, - "2029": 8033.478534955679, - "2030": 5369.348889756863, - "2031": 3588.720300239444, - "2032": 2398.5987235658795, - "2033": 1603.1552629799544, - "2034": 1071.5034457282936, - "2035": 716.1624707974165, - "2036": 478.6626553776999, - "2037": 319.92452410710337, - "2038": 213.82846557016987, - "2039": 142.91687333349424, - "2040": 95.52157907956041, - "2041": 63.84391049866544, - "2042": 42.67145651315756, - "2043": 28.520389599135832, - "2044": 19.062218385624664, - "2045": 12.740645372960019, - "2046": 8.515485513582224, - "2047": 5.691508664539631, - "2048": 3.804042743876703, - "2049": 2.5425141294081666, - "2050": 1.6993442328285504 - }, - "approximatedHistoricalEmission": { - "2021": 63674.7692719455, - "2022": 64183.36643868731, - "2023": 62206.74147178279, - "2024": 60230.11650487827 - }, - "totalApproximatedHistoricalEmission": 188342.55079888197, - "trend": { - "2024": 60230.11650487827, - "2025": 58253.49153797375, - "2026": 56276.86657106923, - "2027": 54300.24160416471, - "2028": 52323.61663726065, - "2029": 50346.99167035613, - "2030": 48370.36670345161, - "2031": 46393.74173654709, - "2032": 44417.11676964257, - "2033": 42440.49180273805, - "2034": 40463.86683583353, - "2035": 38487.241868929006, - "2036": 36510.616902024485, - "2037": 34533.991935119964, - "2038": 32557.366968215443, - "2039": 30580.742001310922, - "2040": 28604.1170344064, - "2041": 26627.49206750188, - "2042": 24650.86710059736, - "2043": 22674.24213369284, - "2044": 20697.617166788317, - "2045": 18720.992199883796, - "2046": 16744.367232979275, - "2047": 14767.742266074754, - "2048": 12791.117299170233, - "2049": 10814.492332265712, - "2050": 8837.867365361191 - }, - "trendEmission": 897883.7903131174, - "historicalEmissionChangePercent": -2.8783046082365495, - "neededEmissionChangePercent": 33.162840152077564, - "hitNetZero": "2054-06-13", - "budgetRunsOut": "2026-08-05", - "electricCarChangePercent": 0.056929129033027506, - "electricCarChangeYearly": { - "2015": 0.01273532668881506, - "2016": 0.020640956002172733, - "2017": 0.029882604055496264, - "2018": 0.033813747228381374, - "2019": 0.052089295935890095, - "2020": 0.2166796570537802, - "2021": 0.30501089324618735, - "2022": 0.41009681881051174 - }, - "climatePlanLink": "https://www.alingsas.se/wp-content/uploads/2022/06/Klimatstrategi-for-Alingsas-kommun.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatstrategi 2022–2030", - "bicycleMetrePerCapita": 2.865584307, - "totalConsumptionEmission": 6066.6, - "electricVehiclePerChargePoints": 77.65384615384616 - }, - { - "kommun": "Alvesta", - "län": "Kronobergs län", - "emissions": { - "1990": 103083.223526214, - "2000": 93492.4532103901, - "2005": 102419.965964148, - "2010": 77424.5893160572, - "2015": 64224.7143804819, - "2016": 62259.9566803873, - "2017": 62223.6445687622, - "2018": 58618.1780791033, - "2019": 58390.9318087649, - "2020": 52681.6073661213, - "2021": 52912.9774987249 - }, - "budget": 121843.88467875606, - "emissionBudget": { - "2024": 46560.7253330918, - "2025": 31773.197872728844, - "2026": 21682.13866595587, - "2027": 14795.965423840502, - "2028": 10096.817301847674, - "2029": 6890.102585845937, - "2030": 4701.829519564887, - "2031": 3208.5445108561526, - "2032": 2189.521724534547, - "2033": 1494.1370973624198, - "2034": 1019.6042545269444, - "2035": 695.7814230599222, - "2036": 474.8036177035168, - "2037": 324.0076091610916, - "2038": 221.10389828545948, - "2039": 150.88205478754986, - "2040": 102.96242912696904, - "2041": 70.2619130330196, - "2042": 47.94696924809171, - "2043": 32.719175451386825, - "2044": 22.327676994124978, - "2045": 15.236482982117664, - "2046": 10.397427987042562, - "2047": 7.095240343366341, - "2048": 4.841816225404095, - "2049": 3.30407191667643, - "2050": 2.254709952288356 - }, - "approximatedHistoricalEmission": { - "2021": 52912.9774987249, - "2022": 50626.769764077384, - "2023": 48593.747548584826, - "2024": 46560.7253330918 - }, - "totalApproximatedHistoricalEmission": 148957.36872857055, - "trend": { - "2024": 46560.7253330918, - "2025": 44527.70311759878, - "2026": 42494.68090210622, - "2027": 40461.6586866132, - "2028": 38428.63647112064, - "2029": 36395.61425562762, - "2030": 34362.592040134594, - "2031": 32329.569824642036, - "2032": 30296.547609149013, - "2033": 28263.52539365599, - "2034": 26230.50317816343, - "2035": 24197.48096267041, - "2036": 22164.45874717785, - "2037": 20131.436531684827, - "2038": 18098.414316191804, - "2039": 16065.392100699246, - "2040": 14032.369885206223, - "2041": 11999.3476697132, - "2042": 9966.325454220641, - "2043": 7933.303238727618, - "2044": 5900.28102323506, - "2045": 3867.258807742037, - "2046": 1834.2365922490135, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 533261.6994748753, - "historicalEmissionChangePercent": -3.106354699703534, - "neededEmissionChangePercent": 31.75965871359206, - "hitNetZero": "2046-11-20", - "budgetRunsOut": "2026-10-15", - "electricCarChangePercent": 0.08469554797215427, - "electricCarChangeYearly": { - "2015": 0.007389162561576354, - "2016": 0.01805869074492099, - "2017": 0.026373626373626374, - "2018": 0.06128133704735376, - "2019": 0.12158054711246201, - "2020": 0.2671232876712329, - "2021": 0.4394366197183099, - "2022": 0.6109589041095891 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Energi– och klimatplan planerad hösten 2023.", - "bicycleMetrePerCapita": 3.202529861, - "totalConsumptionEmission": 6030.8, - "electricVehiclePerChargePoints": 38.95 - }, - { - "kommun": "Aneby", - "län": "Jönköpings län", - "emissions": { - "1990": 30976.2025706933, - "2000": 26868.9873384187, - "2005": 27929.0102673057, - "2010": 22015.1931363693, - "2015": 18021.2990115579, - "2016": 17438.0922348438, - "2017": 19692.9216059549, - "2018": 17760.5917921573, - "2019": 17889.921167051, - "2020": 16054.3492661957, - "2021": 16087.2823225698 - }, - "budget": 36420.11395546903, - "emissionBudget": { - "2024": 15340.807533654734, - "2025": 10067.359296459828, - "2026": 6606.674582264999, - "2027": 4335.610536051416, - "2028": 2845.231513412243, - "2029": 1867.1747145182514, - "2030": 1225.3278505112564, - "2031": 804.1177558608481, - "2032": 527.6998845826417, - "2033": 346.30147905442084, - "2034": 227.25931518845812, - "2035": 149.13824936858174, - "2036": 97.87153237824644, - "2037": 64.22790190055738, - "2038": 42.149369508232255, - "2039": 27.660398321777972, - "2040": 18.152054093477858, - "2041": 11.912231486309512, - "2042": 7.817366467325015, - "2043": 5.130123483135085, - "2044": 3.366628270814556, - "2045": 2.2093397851159167, - "2046": 1.4498726599581016, - "2047": 0.951474618913672, - "2048": 0.6244023874917957, - "2049": 0.409762208844404, - "2050": 0.26890523028189284 - }, - "approximatedHistoricalEmission": { - "2021": 16087.2823225698, - "2022": 16081.702993880841, - "2023": 15711.255263767787, - "2024": 15340.807533654734 - }, - "totalApproximatedHistoricalEmission": 47507.0031857609, - "trend": { - "2024": 15340.807533654734, - "2025": 14970.359803541796, - "2026": 14599.912073428743, - "2027": 14229.464343315689, - "2028": 13859.016613202752, - "2029": 13488.568883089698, - "2030": 13118.121152976644, - "2031": 12747.673422863707, - "2032": 12377.225692750653, - "2033": 12006.777962637716, - "2034": 11636.330232524662, - "2035": 11265.882502411609, - "2036": 10895.434772298671, - "2037": 10524.987042185618, - "2038": 10154.539312072564, - "2039": 9784.091581959627, - "2040": 9413.643851846573, - "2041": 9043.19612173352, - "2042": 8672.748391620582, - "2043": 8302.300661507528, - "2044": 7931.852931394591, - "2045": 7561.405201281537, - "2046": 7190.957471168484, - "2047": 6820.509741055546, - "2048": 6450.062010942493, - "2049": 6079.614280829439, - "2050": 5709.166550716502 - }, - "trendEmission": 273649.66309682606, - "historicalEmissionChangePercent": -1.574180862670948, - "neededEmissionChangePercent": 34.375297556051, - "hitNetZero": "2065-05-20", - "budgetRunsOut": "2026-06-12", - "electricCarChangePercent": 0.08172603954176877, - "electricCarChangeYearly": { - "2015": 0.04054054054054054, - "2016": 0.0, - "2017": 0.007874015748031496, - "2018": 0.024793388429752067, - "2019": 0.06363636363636363, - "2020": 0.30973451327433627, - "2021": 0.3629032258064516, - "2022": 0.6271186440677966 - }, - "climatePlanLink": "https://www.aneby.se/download/18.10e76864165add3787c19774/1538745539859/Milj%C3%B6m%C3%A5l%20f%C3%B6r%20Aneby%20kommun%202011-2025.pdf", - "climatePlanYear": 2011, - "climatePlanComment": "Miljömål 2011–2025", - "bicycleMetrePerCapita": 2.482518504, - "totalConsumptionEmission": 6113.7, - "electricVehiclePerChargePoints": 2.619047619047619 - }, - { - "kommun": "Arboga", - "län": "Västmanlands län", - "emissions": { - "1990": 69902.3680079475, - "2000": 62822.5661516163, - "2005": 58075.7739081429, - "2010": 61125.1994459081, - "2015": 51797.2204629212, - "2016": 49636.9495525602, - "2017": 48089.1191695053, - "2018": 51827.8235005073, - "2019": 49958.9017792026, - "2020": 46614.3401380875, - "2021": 46192.2589353511 - }, - "budget": 101938.4406913109, - "emissionBudget": { - "2024": 44661.590333599364, - "2025": 28817.726739502785, - "2026": 18594.532085166014, - "2027": 11998.053371514274, - "2028": 7741.6997667042815, - "2029": 4995.303273119618, - "2030": 3223.2010465916514, - "2031": 2079.758608982605, - "2032": 1341.9565857398552, - "2033": 865.8925464871733, - "2034": 558.7139778062747, - "2035": 360.50813725388105, - "2036": 232.61654833938476, - "2037": 150.09497142979328, - "2038": 96.8482277350348, - "2039": 62.49096239579517, - "2040": 40.32206342315969, - "2041": 26.01766297666608, - "2042": 16.78780125073115, - "2043": 10.832266952139777, - "2044": 6.989480371487541, - "2045": 4.509936477678797, - "2046": 2.910019908728783, - "2047": 1.8776796327642218, - "2048": 1.2115658702959684, - "2049": 0.7817584173851164, - "2050": 0.5044267407459972 - }, - "approximatedHistoricalEmission": { - "2021": 46192.2589353511, - "2022": 46160.89896231075, - "2023": 45411.244647955056, - "2024": 44661.590333599364 - }, - "totalApproximatedHistoricalEmission": 136999.06824474104, - "trend": { - "2024": 44661.590333599364, - "2025": 43911.936019243905, - "2026": 43162.28170488821, - "2027": 42412.62739053252, - "2028": 41662.97307617706, - "2029": 40913.31876182137, - "2030": 40163.66444746568, - "2031": 39414.01013311022, - "2032": 38664.35581875453, - "2033": 37914.701504398836, - "2034": 37165.04719004338, - "2035": 36415.392875687685, - "2036": 35665.73856133199, - "2037": 34916.084246976534, - "2038": 34166.42993262084, - "2039": 33416.77561826515, - "2040": 32667.12130390969, - "2041": 31917.466989554, - "2042": 31167.812675198307, - "2043": 30418.158360842615, - "2044": 29668.504046487156, - "2045": 28918.849732131464, - "2046": 28169.195417775773, - "2047": 27419.541103420313, - "2048": 26669.88678906462, - "2049": 25920.23247470893, - "2050": 25170.57816035347 - }, - "trendEmission": 907818.1904213872, - "historicalEmissionChangePercent": -1.78675368142107, - "neededEmissionChangePercent": 35.47536815359906, - "hitNetZero": "2083-07-15", - "budgetRunsOut": "2026-04-30", - "electricCarChangePercent": 0.07658767428480581, - "electricCarChangeYearly": { - "2015": 0.009316770186335404, - "2016": 0.00963855421686747, - "2017": 0.01639344262295082, - "2018": 0.0196078431372549, - "2019": 0.10714285714285714, - "2020": 0.27319587628865977, - "2021": 0.42, - "2022": 0.5126903553299492 - }, - "climatePlanLink": "https://www.arboga.se/download/18.626a0440182c91de14a1a5/1661251036439/Energi-%20och%20klimatstrategi%202009%20kf.pdf", - "climatePlanYear": 2009, - "climatePlanComment": "Energi- och klimatstrategi antagen år 2009, vilken beskriver energiläget och befintliga utsläpp av växthusgaser, den innehåller också övergripande mål och strategier.", - "bicycleMetrePerCapita": 3.288451193, - "totalConsumptionEmission": 6176.1, - "electricVehiclePerChargePoints": 11.027777777777779 - }, - { - "kommun": "Arjeplog", - "län": "Norrbottens län", - "emissions": { - "1990": 38714.4456081638, - "2000": 38122.9399913677, - "2005": 35304.118413432, - "2010": 18716.2305096912, - "2015": 16607.8028956981, - "2016": 15818.1522583739, - "2017": 13633.6721821389, - "2018": 11336.9259223689, - "2019": 11891.8297815539, - "2020": 11029.4992977968, - "2021": 11742.698661745 - }, - "budget": 27271.31358103711, - "emissionBudget": { - "2024": 7598.4127806108445, - "2025": 5750.670574622076, - "2026": 4352.25263652571, - "2027": 3293.8946452153255, - "2028": 2492.9026046703166, - "2029": 1886.691611524143, - "2030": 1427.8958312799075, - "2031": 1080.6676048871843, - "2032": 817.8765191896368, - "2033": 618.9895927449294, - "2034": 468.46694694959797, - "2035": 354.5476094534469, - "2036": 268.3305795375109, - "2037": 203.07935519838958, - "2038": 153.69558169209114, - "2039": 116.32069546701806, - "2040": 88.03443823803174, - "2041": 66.62668482826689, - "2042": 50.42475672080188, - "2043": 38.16272859599508, - "2044": 28.88251622026708, - "2045": 21.859017263811023, - "2046": 16.54345598200687, - "2047": 12.520505040347969, - "2048": 9.47583422930969, - "2049": 7.171550512698944, - "2050": 5.427610436357244 - }, - "approximatedHistoricalEmission": { - "2021": 11742.698661745, - "2022": 9449.445710867876, - "2023": 8523.929245739244, - "2024": 7598.4127806108445 - }, - "totalApproximatedHistoricalEmission": 27643.930677785043, - "trend": { - "2024": 7598.4127806108445, - "2025": 6672.896315482212, - "2026": 5747.379850353813, - "2027": 4821.8633852251805, - "2028": 3896.346920096781, - "2029": 2970.830454968149, - "2030": 2045.3139898397494, - "2031": 1119.7975247111171, - "2032": 194.28105958271772, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 31267.915890565142, - "historicalEmissionChangePercent": -5.216881594416081, - "neededEmissionChangePercent": 24.317476022146643, - "hitNetZero": "2032-03-15", - "budgetRunsOut": "2029-04-19", - "electricCarChangePercent": 0.06399848551346246, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.01818181818181818, - "2017": 0.0, - "2018": 0.0, - "2019": 0.03225806451612903, - "2020": 0.047619047619047616, - "2021": 0.4583333333333333, - "2022": 0.42857142857142855 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.358501088, - "totalConsumptionEmission": 6239.6, - "electricVehiclePerChargePoints": 4.375 - }, - { - "kommun": "Arvidsjaur", - "län": "Norrbottens län", - "emissions": { - "1990": 48103.8636542163, - "2000": 50318.9568979694, - "2005": 49837.9192667041, - "2010": 43256.8715821136, - "2015": 40957.2197872647, - "2016": 38418.7806492463, - "2017": 39801.525345728, - "2018": 35893.1078223932, - "2019": 40378.1227315668, - "2020": 35540.2212823307, - "2021": 36324.1026555328 - }, - "budget": 79186.75677804596, - "emissionBudget": { - "2024": 34099.03873704001, - "2025": 22168.087877834056, - "2026": 14411.670779023008, - "2027": 9369.155147143825, - "2028": 6090.970957997592, - "2029": 3959.7943067982997, - "2030": 2574.2974412912013, - "2031": 1673.5736259989499, - "2032": 1088.0050753709484, - "2033": 707.3217608375994, - "2034": 459.83615764276334, - "2035": 298.9435693668823, - "2036": 194.34586902415674, - "2037": 126.34597521781984, - "2038": 82.13864042439579, - "2039": 53.39905951999514, - "2040": 34.715202770425655, - "2041": 22.568661587391915, - "2042": 14.672087304647322, - "2043": 9.538454242915972, - "2044": 6.201033803512295, - "2045": 4.031347140010692, - "2046": 2.620814573542127, - "2047": 1.7038148267411626, - "2048": 1.1076651485112616, - "2049": 0.7201029489649269, - "2050": 0.46814532153957283 - }, - "approximatedHistoricalEmission": { - "2021": 36324.1026555328, - "2022": 35461.88679012493, - "2023": 34780.46276358259, - "2024": 34099.03873704001 - }, - "totalApproximatedHistoricalEmission": 105453.92024999393, - "trend": { - "2024": 34099.03873704001, - "2025": 33417.61471049767, - "2026": 32736.190683955327, - "2027": 32054.766657412983, - "2028": 31373.342630870407, - "2029": 30691.918604328064, - "2030": 30010.49457778572, - "2031": 29329.070551243378, - "2032": 28647.646524701035, - "2033": 27966.22249815846, - "2034": 27284.798471616115, - "2035": 26603.374445073772, - "2036": 25921.95041853143, - "2037": 25240.526391988853, - "2038": 24559.10236544651, - "2039": 23877.678338904167, - "2040": 23196.254312361823, - "2041": 22514.83028581948, - "2042": 21833.406259276904, - "2043": 21151.98223273456, - "2044": 20470.558206192218, - "2045": 19789.134179649875, - "2046": 19107.7101531073, - "2047": 18426.286126564955, - "2048": 17744.862100022612, - "2049": 17063.43807348027, - "2050": 16382.014046937926 - }, - "trendEmission": 656253.6861917129, - "historicalEmissionChangePercent": -1.6164683626256438, - "neededEmissionChangePercent": 34.989112013430415, - "hitNetZero": "2074-01-02", - "budgetRunsOut": "2026-05-19", - "electricCarChangePercent": 0.030938974664856116, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.009900990099009901, - "2017": 0.05, - "2018": 0.009433962264150943, - "2019": 0.051094890510948905, - "2020": 0.0875, - "2021": 0.12903225806451613, - "2022": 0.2641509433962264 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Kommer under 2023.", - "bicycleMetrePerCapita": 3.522716618, - "totalConsumptionEmission": 6424.3, - "electricVehiclePerChargePoints": 4.631578947368421 - }, - { - "kommun": "Arvika", - "län": "Värmlands län", - "emissions": { - "1990": 117464.563078085, - "2000": 106423.210480105, - "2005": 90163.3318556664, - "2010": 91550.2691531705, - "2015": 69134.2424361178, - "2016": 68006.4746525317, - "2017": 69369.2521840349, - "2018": 65433.7332742731, - "2019": 65862.7243296078, - "2020": 59397.6057608309, - "2021": 62127.6159510355 - }, - "budget": 136068.850427894, - "emissionBudget": { - "2024": 56673.63299268857, - "2025": 37367.52621916241, - "2026": 24638.124327055764, - "2027": 16245.045679372875, - "2028": 10711.10388200754, - "2029": 7062.3221772058405, - "2030": 4656.5130059503535, - "2031": 3070.252649272875, - "2032": 2024.358424065702, - "2033": 1334.7523794357132, - "2034": 880.0634775096908, - "2035": 580.2662249412034, - "2036": 382.5961426785914, - "2037": 252.26318903425644, - "2038": 166.328693478733, - "2039": 109.66813818636632, - "2040": 72.30923469498515, - "2041": 47.676795727935996, - "2042": 31.435498667239777, - "2043": 20.72686642149923, - "2044": 13.666173907474207, - "2045": 9.010735413222172, - "2046": 5.941191238806834, - "2047": 3.9172999447170307, - "2048": 2.5828555655047105, - "2049": 1.7029951666722736, - "2050": 1.1228628408195174 - }, - "approximatedHistoricalEmission": { - "2021": 62127.6159510355, - "2022": 59655.35764219379, - "2023": 58164.495317440946, - "2024": 56673.63299268857 - }, - "totalApproximatedHistoricalEmission": 177220.47743149678, - "trend": { - "2024": 56673.63299268857, - "2025": 55182.77066793572, - "2026": 53691.90834318288, - "2027": 52201.0460184305, - "2028": 50710.18369367765, - "2029": 49219.32136892481, - "2030": 47728.45904417243, - "2031": 46237.596719419584, - "2032": 44746.73439466674, - "2033": 43255.87206991436, - "2034": 41765.009745161515, - "2035": 40274.14742040867, - "2036": 38783.28509565629, - "2037": 37292.422770903446, - "2038": 35801.56044615107, - "2039": 34310.69812139822, - "2040": 32819.83579664538, - "2041": 31328.973471892998, - "2042": 29838.111147140153, - "2043": 28347.248822387308, - "2044": 26856.38649763493, - "2045": 25365.524172882084, - "2046": 23874.66184812924, - "2047": 22383.79952337686, - "2048": 20892.937198624015, - "2049": 19402.07487387117, - "2050": 17911.21254911879 - }, - "trendEmission": 969602.9920434917, - "historicalEmissionChangePercent": -1.6441576843848162, - "neededEmissionChangePercent": 34.0654123514842, - "hitNetZero": "2061-12-27", - "budgetRunsOut": "2026-06-25", - "electricCarChangePercent": 0.06325904988850772, - "electricCarChangeYearly": { - "2015": 0.0025252525252525255, - "2016": 0.013953488372093023, - "2017": 0.015209125475285171, - "2018": 0.026888604353393086, - "2019": 0.05429864253393665, - "2020": 0.1813380281690141, - "2021": 0.35108153078202997, - "2022": 0.44571428571428573 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas för efter år 2020. Hade en miljöstrategi som gällde 2015–2020", - "bicycleMetrePerCapita": 2.049167865, - "totalConsumptionEmission": 6148.4, - "electricVehiclePerChargePoints": 21.121951219512194 - }, - { - "kommun": "Askersund", - "län": "Örebro län", - "emissions": { - "1990": 139273.944534919, - "2000": 99039.0112772662, - "2005": 100023.548226173, - "2010": 89463.7845708239, - "2015": 72815.842968439, - "2016": 77653.3603430479, - "2017": 81124.8000262222, - "2018": 77584.282702615, - "2019": 78739.460609345, - "2020": 73417.3513078072, - "2021": 83063.063221357 - }, - "budget": 161268.2953467378, - "emissionBudget": { - "2024": 82032.08801227505, - "2025": 49325.54366794459, - "2026": 29659.238440623863, - "2027": 17833.973220845728, - "2028": 10723.4918212267, - "2029": 6447.98976738974, - "2030": 3877.1486688751647, - "2031": 2331.312911907085, - "2032": 1401.8084828306291, - "2033": 842.9014451468147, - "2034": 506.8330338506244, - "2035": 304.7565355134557, - "2036": 183.2488013508942, - "2037": 110.18672049137022, - "2038": 66.25480375937047, - "2039": 39.83873012661709, - "2040": 23.95485803362537, - "2041": 14.403953679933064, - "2042": 8.661035741578027, - "2043": 5.207843747886919, - "2044": 3.131454171491885, - "2045": 1.8829299999894826, - "2046": 1.1321977556424798, - "2047": 0.6807856680221922, - "2048": 0.40935351043989826, - "2049": 0.24614251500959253, - "2050": 0.14800444151594172 - }, - "approximatedHistoricalEmission": { - "2021": 83063.063221357, - "2022": 80611.78063574666, - "2023": 81321.93432401074, - "2024": 82032.08801227505 - }, - "totalApproximatedHistoricalEmission": 244481.29057657343, - "trend": { - "2024": 82032.08801227505, - "2025": 82742.24170053913, - "2026": 83452.39538880321, - "2027": 84162.54907706729, - "2028": 84872.70276533137, - "2029": 85582.85645359545, - "2030": 86293.01014185953, - "2031": 87003.16383012361, - "2032": 87713.31751838769, - "2033": 88423.47120665177, - "2034": 89133.62489491585, - "2035": 89843.77858317993, - "2036": 90553.932271444, - "2037": 91264.08595970809, - "2038": 91974.23964797216, - "2039": 92684.39333623624, - "2040": 93394.54702450056, - "2041": 94104.70071276464, - "2042": 94814.85440102872, - "2043": 95525.0080892928, - "2044": 96235.16177755687, - "2045": 96945.31546582095, - "2046": 97655.46915408503, - "2047": 98365.62284234911, - "2048": 99075.77653061319, - "2049": 99785.93021887727, - "2050": 100496.08390714135 - }, - "trendEmission": 2372866.2349524125, - "historicalEmissionChangePercent": 2.436271158385382, - "neededEmissionChangePercent": 39.87042770316459, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-12-13", - "electricCarChangePercent": 0.08155194210851513, - "electricCarChangeYearly": { - "2015": 0.004329004329004329, - "2016": 0.016666666666666666, - "2017": 0.010752688172043012, - "2018": 0.0797872340425532, - "2019": 0.08588957055214724, - "2020": 0.25625, - "2021": 0.375, - "2022": 0.6209150326797386 - }, - "climatePlanLink": "https://www.askersund.se/download/18.c8a52c6182e9506a5cabfd/1661845370147/Ekologiskt%20h%C3%A5llbarhetsprogram%202022-2025", - "climatePlanYear": 2022, - "climatePlanComment": "Ekologiskt hållbarhetsprogram 2022–2025.", - "bicycleMetrePerCapita": 2.926919348, - "totalConsumptionEmission": 6451.7, - "electricVehiclePerChargePoints": 6.2 - }, - { - "kommun": "Avesta", - "län": "Dalarnas län", - "emissions": { - "1990": 281695.653363212, - "2000": 316059.538443578, - "2005": 308873.585939866, - "2010": 214367.413776715, - "2015": 210301.163844022, - "2016": 213040.764646359, - "2017": 224364.063775484, - "2018": 217018.979100014, - "2019": 220071.132359513, - "2020": 200369.082602858, - "2021": 207670.893624396 - }, - "budget": 442226.199524184, - "emissionBudget": { - "2024": 205220.774387124, - "2025": 129027.22696694972, - "2026": 81122.51475757657, - "2027": 51003.67228909689, - "2028": 32067.23305789322, - "2029": 20161.439163843545, - "2030": 12675.980756540826, - "2031": 7969.693375279933, - "2032": 5010.737529181441, - "2033": 3150.3709621030994, - "2034": 1980.7138452298327, - "2035": 1245.3223394574818, - "2036": 782.9640474754722, - "2037": 492.2682908798038, - "2038": 309.50089086091083, - "2039": 194.59063932900463, - "2040": 122.34380589065076, - "2041": 76.9204874983839, - "2042": 48.361756885978856, - "2043": 30.406197427540466, - "2044": 19.11710619162005, - "2045": 12.019383548784617, - "2046": 7.556874949835285, - "2047": 4.75118867583042, - "2048": 2.9871863678029107, - "2049": 1.8781157737180167, - "2050": 1.1808164691387468 - }, - "approximatedHistoricalEmission": { - "2021": 207670.893624396, - "2022": 207901.28197011352, - "2023": 206561.02817861876, - "2024": 205220.774387124 - }, - "totalApproximatedHistoricalEmission": 620908.1441544923, - "trend": { - "2024": 205220.774387124, - "2025": 203880.5205956297, - "2026": 202540.26680413494, - "2027": 201200.01301264018, - "2028": 199859.75922114542, - "2029": 198519.50542965112, - "2030": 197179.25163815636, - "2031": 195838.9978466616, - "2032": 194498.74405516684, - "2033": 193158.49026367208, - "2034": 191818.23647217778, - "2035": 190477.98268068302, - "2036": 189137.72888918826, - "2037": 187797.4750976935, - "2038": 186457.2213061992, - "2039": 185116.96751470445, - "2040": 183776.7137232097, - "2041": 182436.45993171493, - "2042": 181096.20614022063, - "2043": 179755.95234872587, - "2044": 178415.6985572311, - "2045": 177075.44476573635, - "2046": 175735.19097424205, - "2047": 174394.9371827473, - "2048": 173054.68339125253, - "2049": 171714.42959975777, - "2050": 170374.175808263 - }, - "trendEmission": 4882734.352540036, - "historicalEmissionChangePercent": -0.09299141160527212, - "neededEmissionChangePercent": 37.12759960472833, - "hitNetZero": "2177-01-07", - "budgetRunsOut": "2026-03-04", - "electricCarChangePercent": 0.0635646911666385, - "electricCarChangeYearly": { - "2015": 0.005825242718446602, - "2016": 0.012172284644194757, - "2017": 0.02040816326530612, - "2018": 0.04728950403690888, - "2019": 0.049466537342386034, - "2020": 0.2258485639686684, - "2021": 0.34558823529411764, - "2022": 0.442090395480226 - }, - "climatePlanLink": "https://avesta.se/contentassets/dffc2e06c2e84440b5edf9ad69ce3cef/hallbarhetsprogram-for-avesta-kommun-2020.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Hållbarhetsprogram 2020–2030.", - "bicycleMetrePerCapita": 2.915797667, - "totalConsumptionEmission": 6232.0, - "electricVehiclePerChargePoints": 27.17142857142857 - }, - { - "kommun": "Bengtsfors", - "län": "Västra Götalands län", - "emissions": { - "1990": 94238.6156747183, - "2000": 97820.34102533, - "2005": 78321.2503204819, - "2010": 80167.3398085306, - "2015": 62148.8653302527, - "2016": 62896.6500984508, - "2017": 65484.1978674201, - "2018": 65025.4732262624, - "2019": 63276.0723933244, - "2020": 54846.1724613589, - "2021": 54901.5850984739 - }, - "budget": 126958.9288448897, - "emissionBudget": { - "2024": 52643.23347287392, - "2025": 34774.69499362939, - "2026": 22971.222170900124, - "2027": 15174.167541125009, - "2028": 10023.64431692357, - "2029": 6621.3480983316695, - "2030": 4373.883315597968, - "2031": 2889.2689184074966, - "2032": 1908.5728357466169, - "2033": 1260.7515507271069, - "2034": 832.8183461958414, - "2035": 550.1372553223252, - "2036": 363.405778794421, - "2037": 240.05602017228145, - "2038": 158.5745086721759, - "2039": 104.7500278583954, - "2040": 69.19503284741945, - "2041": 45.70836560757743, - "2042": 30.19370900687249, - "2043": 19.945146834140125, - "2044": 13.17522408872868, - "2045": 8.703196383146599, - "2046": 5.749095937458546, - "2047": 3.797697149762877, - "2048": 2.508655934465531, - "2049": 1.6571502016484052, - "2050": 1.0946685645867262 - }, - "approximatedHistoricalEmission": { - "2021": 54901.5850984739, - "2022": 55504.01357598929, - "2023": 54073.623524431605, - "2024": 52643.23347287392 - }, - "totalApproximatedHistoricalEmission": 163350.04638609482, - "trend": { - "2024": 52643.23347287392, - "2025": 51212.84342131624, - "2026": 49782.45336975856, - "2027": 48352.063318200875, - "2028": 46921.67326664319, - "2029": 45491.28321508551, - "2030": 44060.89316352783, - "2031": 42630.503111970145, - "2032": 41200.11306041246, - "2033": 39769.72300885478, - "2034": 38339.33295729663, - "2035": 36908.94290573895, - "2036": 35478.55285418127, - "2037": 34048.162802623585, - "2038": 32617.772751065902, - "2039": 31187.38269950822, - "2040": 29756.992647950538, - "2041": 28326.602596392855, - "2042": 26896.212544835173, - "2043": 25465.82249327749, - "2044": 24035.432441719808, - "2045": 22605.042390162125, - "2046": 21174.652338604443, - "2047": 19744.26228704676, - "2048": 18313.872235489078, - "2049": 16883.482183931395, - "2050": 15453.092132373713 - }, - "trendEmission": 885252.2328682176, - "historicalEmissionChangePercent": -1.8825068438302222, - "neededEmissionChangePercent": 33.942706973825715, - "hitNetZero": "2060-10-11", - "budgetRunsOut": "2026-07-01", - "electricCarChangePercent": 0.055031213252816284, - "electricCarChangeYearly": { - "2015": 0.0029850746268656717, - "2016": 0.006779661016949152, - "2017": 0.009584664536741214, - "2018": 0.01195219123505976, - "2019": 0.05339805825242718, - "2020": 0.12142857142857143, - "2021": 0.26356589147286824, - "2022": 0.4260869565217391 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.461809581, - "totalConsumptionEmission": 6014.7, - "electricVehiclePerChargePoints": 9.35 - }, - { - "kommun": "Berg", - "län": "Jämtlands län", - "emissions": { - "1990": 67738.3093412696, - "2000": 68531.2443452182, - "2005": 66265.922636955, - "2010": 57430.7443320315, - "2015": 50547.4186972261, - "2016": 49476.7572719208, - "2017": 43349.5706505332, - "2018": 30769.5425381069, - "2019": 30498.8410875559, - "2020": 28932.034456299, - "2021": 28585.8132476701 - }, - "budget": 77660.24165194722, - "emissionBudget": { - "2024": 11774.64151928015, - "2025": 10118.14985166352, - "2026": 8694.698369634727, - "2027": 7471.502285222608, - "2028": 6420.389072154997, - "2029": 5517.14959913435, - "2030": 4740.980547618358, - "2031": 4074.005271929246, - "2032": 3500.8620661911573, - "2033": 3008.350355102111, - "2034": 2585.126659642817, - "2035": 2221.4433352358637, - "2036": 1908.9240649994592, - "2037": 1640.3709372794576, - "2038": 1409.598664089265, - "2039": 1211.2921221937834, - "2040": 1040.8839357383254, - "2041": 894.4492809181972, - "2042": 768.6154898409412, - "2043": 660.4843715866989, - "2044": 567.5654613733489, - "2045": 487.71866042807324, - "2046": 419.10494545277083, - "2047": 360.144012428809, - "2048": 309.47787921757777, - "2049": 265.93960865569613, - "2050": 228.52643177841657 - }, - "approximatedHistoricalEmission": { - "2021": 28585.8132476701, - "2022": 20333.569486629218, - "2023": 16054.105502955616, - "2024": 11774.64151928015 - }, - "totalApproximatedHistoricalEmission": 56567.90237305996, - "trend": { - "2024": 11774.64151928015, - "2025": 7495.177535606548, - "2026": 3215.713551931083, - "2027": 0, - "2028": 0, - "2029": 0, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 16598.211847177707, - "historicalEmissionChangePercent": -8.455961710818203, - "neededEmissionChangePercent": 14.068298087073341, - "hitNetZero": "2026-10-01", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.08054448179106087, - "electricCarChangeYearly": { - "2015": 0.11842105263157894, - "2016": 0.043010752688172046, - "2017": 0.06666666666666667, - "2018": 0.06451612903225806, - "2019": 0.14925373134328357, - "2020": 0.36666666666666664, - "2021": 0.525, - "2022": 0.6 - }, - "climatePlanLink": "https://berg.se/download/18.12a5b1201849980bbaa159b/1669973598681/Milj%C3%B6program.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljöprogram 2040", - "bicycleMetrePerCapita": 2.184422467, - "totalConsumptionEmission": 6488.9, - "electricVehiclePerChargePoints": 2.3780487804878048 - }, - { - "kommun": "Bjurholm", - "län": "Västerbottens län", - "emissions": { - "1990": 18442.6550293835, - "2000": 17529.3803924879, - "2005": 15308.921462345, - "2010": 15259.792041485, - "2015": 12867.6838748248, - "2016": 11517.7759185802, - "2017": 13825.4258206836, - "2018": 12664.4330623368, - "2019": 12930.0712402961, - "2020": 12167.8839223697, - "2021": 11516.2724727444 - }, - "budget": 25917.22566405645, - "emissionBudget": { - "2024": 11716.498163323035, - "2025": 7455.292391844355, - "2026": 4743.856387216667, - "2027": 3018.550076876206, - "2028": 1920.7252123320209, - "2029": 1222.1713230961861, - "2030": 777.6764387786241, - "2031": 494.84113397398545, - "2032": 314.87098703573383, - "2033": 200.35468288711297, - "2034": 127.4871315795127, - "2035": 81.1209824705195, - "2036": 51.61786695999234, - "2037": 32.844821504322276, - "2038": 20.899397111603385, - "2039": 13.298437306806996, - "2040": 8.461891692793825, - "2041": 5.3843627915530945, - "2042": 3.4261089273632015, - "2043": 2.1800578520772396, - "2044": 1.3871865545329727, - "2045": 0.8826768221969563, - "2046": 0.5616536362018202, - "2047": 0.3573842646888228, - "2048": 0.2274061884667927, - "2049": 0.1447001999319188, - "2050": 0.09207378216707938 - }, - "approximatedHistoricalEmission": { - "2021": 11516.2724727444, - "2022": 11977.16764754086, - "2023": 11846.832905431918, - "2024": 11716.498163323035 - }, - "totalApproximatedHistoricalEmission": 35440.385871006496, - "trend": { - "2024": 11716.498163323035, - "2025": 11586.16342121415, - "2026": 11455.828679105209, - "2027": 11325.493936996325, - "2028": 11195.159194887383, - "2029": 11064.8244527785, - "2030": 10934.489710669615, - "2031": 10804.154968560673, - "2032": 10673.82022645179, - "2033": 10543.485484342847, - "2034": 10413.150742233964, - "2035": 10282.816000125022, - "2036": 10152.481258016138, - "2037": 10022.146515907254, - "2038": 9891.811773798312, - "2039": 9761.477031689428, - "2040": 9631.142289580486, - "2041": 9500.807547471602, - "2042": 9370.472805362719, - "2043": 9240.138063253777, - "2044": 9109.803321144893, - "2045": 8979.46857903595, - "2046": 8849.133836927067, - "2047": 8718.799094818125, - "2048": 8588.464352709241, - "2049": 8458.129610600357, - "2050": 8327.794868491415 - }, - "trendEmission": 260575.80941358805, - "historicalEmissionChangePercent": -1.3341666696382115, - "neededEmissionChangePercent": 36.36927785144734, - "hitNetZero": "2113-11-01", - "budgetRunsOut": "2026-03-29", - "electricCarChangePercent": 0.06209325396825398, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.0, - "2018": 0.1, - "2019": 0.125, - "2020": 0.1111111111111111, - "2021": 0.1875, - "2022": 0.56 - }, - "climatePlanLink": "https://www.bjurholm.se/download/18.23d7fdaa17507a9912f33be/1614325453270/Fossilfria%20transporter%20Handlingsplan%20beslutad.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Handlingsplan för fossilfria transporter", - "bicycleMetrePerCapita": 1.762300157, - "totalConsumptionEmission": 6118.0, - "electricVehiclePerChargePoints": 8.5 - }, - { - "kommun": "Bjuv", - "län": "Skåne län", - "emissions": { - "1990": 160297.903693962, - "2000": 113065.161374192, - "2005": 92013.3972754381, - "2010": 64781.9736356902, - "2015": 68192.95717729, - "2016": 70003.9436103819, - "2017": 58110.4754040668, - "2018": 51957.1512705662, - "2019": 52716.9577348431, - "2020": 50190.2505855577, - "2021": 50848.2087199788 - }, - "budget": 119091.27504205616, - "emissionBudget": { - "2024": 36633.88869521022, - "2025": 26933.25779073846, - "2026": 19801.34790651417, - "2027": 14557.963316626414, - "2028": 10703.023699640115, - "2029": 7868.869691698348, - "2030": 5785.197899450684, - "2031": 4253.281099713451, - "2032": 3127.014914199804, - "2033": 2298.983312973784, - "2034": 1690.2139639089044, - "2035": 1242.6463592279367, - "2036": 913.5943774427782, - "2037": 671.6751554429636, - "2038": 493.81599271892014, - "2039": 363.0538254822797, - "2040": 266.9173986682578, - "2041": 196.2378377839378, - "2042": 144.27418059014187, - "2043": 106.0704674491709, - "2044": 77.98307374794676, - "2045": 57.33320440104502, - "2046": 42.15140759283745, - "2047": 30.989741121553806, - "2048": 22.783676978419884, - "2049": 16.750573508209825, - "2050": 12.315032078434951 - }, - "approximatedHistoricalEmission": { - "2021": 50848.2087199788, - "2022": 43566.39934455324, - "2023": 40100.144019882195, - "2024": 36633.88869521022 - }, - "totalApproximatedHistoricalEmission": 127407.59207202995, - "trend": { - "2024": 36633.88869521022, - "2025": 33167.63337053824, - "2026": 29701.378045867197, - "2027": 26235.12272119522, - "2028": 22768.867396523245, - "2029": 19302.6120718522, - "2030": 15836.356747180223, - "2031": 12370.101422508247, - "2032": 8903.846097837202, - "2033": 5437.590773165226, - "2034": 1971.3354484932497, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 194011.78844276536, - "historicalEmissionChangePercent": -4.490451877030513, - "neededEmissionChangePercent": 26.479937702436946, - "hitNetZero": "2034-07-24", - "budgetRunsOut": "2028-01-05", - "electricCarChangePercent": 0.046103761883977544, - "electricCarChangeYearly": { - "2015": 0.010638297872340425, - "2016": 0.017429193899782137, - "2017": 0.03125, - "2018": 0.042222222222222223, - "2019": 0.08685968819599109, - "2020": 0.16058394160583941, - "2021": 0.20215633423180593, - "2022": 0.37012987012987014 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.303408188, - "totalConsumptionEmission": 5852.6, - "electricVehiclePerChargePoints": 48.375 - }, - { - "kommun": "Boden", - "län": "Norrbottens län", - "emissions": { - "1990": 129573.421029128, - "2000": 98863.5553219538, - "2005": 98804.8089867584, - "2010": 107194.638880034, - "2015": 100251.120818642, - "2016": 104140.926535257, - "2017": 100950.667031265, - "2018": 104602.638313728, - "2019": 116976.544609655, - "2020": 111741.899311839, - "2021": 117644.889726228 - }, - "budget": 224043.0282478171, - "emissionBudget": { - "2024": 125917.4830182977, - "2025": 71779.80251492694, - "2026": 40918.38500562467, - "2027": 23325.701280946658, - "2028": 13296.916292594784, - "2029": 7579.964296151568, - "2030": 4320.991233353135, - "2031": 2463.1996285515625, - "2032": 1404.1575375722823, - "2033": 800.4460407784535, - "2034": 456.2977066701956, - "2035": 260.1144693151245, - "2036": 148.27937146743534, - "2037": 84.5272931593093, - "2038": 48.18514684902714, - "2039": 27.468150109650132, - "2040": 15.658337055820468, - "2041": 8.926102353996614, - "2042": 5.088363020286835, - "2043": 2.900643214631054, - "2044": 1.6535241343906486, - "2045": 0.9425985413239151, - "2046": 0.537332350720963, - "2047": 0.30630861652489855, - "2048": 0.17461254367340445, - "2049": 0.0995386311818566, - "2050": 0.056742424622651964 - }, - "approximatedHistoricalEmission": { - "2021": 117644.889726228, - "2022": 119959.68802870438, - "2023": 122938.58552350104, - "2024": 125917.4830182977 - }, - "totalApproximatedHistoricalEmission": 364679.45992446825, - "trend": { - "2024": 125917.4830182977, - "2025": 128896.38051309437, - "2026": 131875.27800789196, - "2027": 134854.17550268862, - "2028": 137833.0729974853, - "2029": 140811.97049228195, - "2030": 143790.86798707955, - "2031": 146769.7654818762, - "2032": 149748.66297667287, - "2033": 152727.56047146954, - "2034": 155706.45796626713, - "2035": 158685.3554610638, - "2036": 161664.25295586046, - "2037": 164643.15045065712, - "2038": 167622.04794545472, - "2039": 170600.94544025138, - "2040": 173579.84293504804, - "2041": 176558.7404298447, - "2042": 179537.6379246423, - "2043": 182516.53541943897, - "2044": 185495.43291423563, - "2045": 188474.3304090323, - "2046": 191453.2279038299, - "2047": 194432.12539862655, - "2048": 197411.02289342321, - "2049": 200389.92038821988, - "2050": 203368.81788301654 - }, - "trendEmission": 4280721.911717094, - "historicalEmissionChangePercent": 2.8452373551376673, - "neededEmissionChangePercent": 42.99457009913687, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-09-29", - "electricCarChangePercent": 0.060552083725307855, - "electricCarChangeYearly": { - "2015": 0.0036900369003690036, - "2016": 0.0149812734082397, - "2017": 0.025423728813559324, - "2018": 0.032679738562091505, - "2019": 0.06835443037974684, - "2020": 0.18289085545722714, - "2021": 0.30532212885154064, - "2022": 0.4503464203233256 - }, - "climatePlanLink": "https://www.boden.se/kommunen/organisation-och-styrning/viktiga-styrdokument", - "climatePlanYear": 2018, - "climatePlanComment": "Borgmästaravtalet. Kommunen jobbar med uppdatering av planen.", - "bicycleMetrePerCapita": 4.240521656, - "totalConsumptionEmission": 6657.4, - "electricVehiclePerChargePoints": 11.0625 - }, - { - "kommun": "Bollebygd", - "län": "Västra Götalands län", - "emissions": { - "1990": 46265.7202364746, - "2000": 44666.3228557324, - "2005": 41903.3458881715, - "2010": 46614.9599990987, - "2015": 40719.3993421714, - "2016": 39307.1126988096, - "2017": 42647.8515232399, - "2018": 45198.3703372019, - "2019": 44024.8545576205, - "2020": 40236.3900463112, - "2021": 40428.9261016411 - }, - "budget": 86666.56919908583, - "emissionBudget": { - "2024": 42301.30165981231, - "2025": 25964.37397145602, - "2026": 15936.831475095894, - "2027": 9781.965001152092, - "2028": 6004.131965208517, - "2029": 3685.31278239013, - "2030": 2262.0306120430864, - "2031": 1388.4255670970492, - "2032": 852.2101978220461, - "2033": 523.0832955564022, - "2034": 321.06648663606023, - "2035": 197.0693572448604, - "2036": 120.9604028492849, - "2037": 74.24502348826172, - "2038": 45.571305839984795, - "2039": 27.97148978328185, - "2040": 17.168791332061186, - "2041": 10.53813715635689, - "2042": 6.468267484782651, - "2043": 3.970197354041684, - "2044": 2.436891650990411, - "2045": 1.495754590794187, - "2046": 0.9180883339530489, - "2047": 0.5635190385697868, - "2048": 0.34588578798655834, - "2049": 0.21230334761132733, - "2050": 0.13031096671924475 - }, - "approximatedHistoricalEmission": { - "2021": 40428.9261016411, - "2022": 42132.43465925561, - "2023": 42216.868159533944, - "2024": 42301.30165981231 - }, - "totalApproximatedHistoricalEmission": 125714.41669951625, - "trend": { - "2024": 42301.30165981231, - "2025": 42385.73516009064, - "2026": 42470.168660369, - "2027": 42554.60216064734, - "2028": 42639.0356609257, - "2029": 42723.46916120403, - "2030": 42807.902661482396, - "2031": 42892.33616176073, - "2032": 42976.76966203909, - "2033": 43061.203162317426, - "2034": 43145.63666259579, - "2035": 43230.07016287412, - "2036": 43314.503663152485, - "2037": 43398.93716343082, - "2038": 43483.37066370918, - "2039": 43567.804163987515, - "2040": 43652.23766426588, - "2041": 43736.67116454421, - "2042": 43821.104664822575, - "2043": 43905.53816510091, - "2044": 43989.97166537927, - "2045": 44074.405165657605, - "2046": 44158.83866593597, - "2047": 44243.2721662143, - "2048": 44327.705666492664, - "2049": 44412.13916677103, - "2050": 44496.57266704936 - }, - "trendEmission": 1128372.3662492016, - "historicalEmissionChangePercent": 0.04800095132785536, - "neededEmissionChangePercent": 38.620390028983266, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2026-01-17", - "electricCarChangePercent": 0.0749761798547102, - "electricCarChangeYearly": { - "2015": 0.008658008658008658, - "2016": 0.005208333333333333, - "2017": 0.0273972602739726, - "2018": 0.06060606060606061, - "2019": 0.12340425531914893, - "2020": 0.2598870056497175, - "2021": 0.35267857142857145, - "2022": 0.5515695067264574 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.022400756, - "totalConsumptionEmission": 6010.1, - "electricVehiclePerChargePoints": 225.0 - }, - { - "kommun": "Bollnäs", - "län": "Gävleborgs län", - "emissions": { - "1990": 127757.51752212, - "2000": 131127.376054157, - "2005": 122037.978687727, - "2010": 115038.575618767, - "2015": 94837.668120797, - "2016": 96598.6235442629, - "2017": 88197.4101148779, - "2018": 81338.8914272292, - "2019": 82862.6460431534, - "2020": 80191.7676912397, - "2021": 83466.9995600362 - }, - "budget": 179959.31993916078, - "emissionBudget": { - "2024": 71300.46918735933, - "2025": 47975.94061640357, - "2026": 32281.56706767847, - "2027": 21721.29527750658, - "2028": 14615.606099402417, - "2029": 9834.401628621958, - "2030": 6617.272984457111, - "2031": 4452.56390824886, - "2032": 2995.9962969046005, - "2033": 2015.9157725815173, - "2034": 1356.4490738328639, - "2035": 912.7137725331883, - "2036": 614.1376382217277, - "2037": 413.2347402118851, - "2038": 278.0532243756278, - "2039": 187.0936493530066, - "2040": 125.88968787119019, - "2041": 84.70738353285003, - "2042": 56.997049927736185, - "2043": 38.351600120017885, - "2044": 25.805637899339864, - "2045": 17.36383737074529, - "2046": 11.683603769601184, - "2047": 7.861545471223226, - "2048": 5.2897974302170265, - "2049": 3.5593455453710963, - "2050": 2.394976533313729 - }, - "approximatedHistoricalEmission": { - "2021": 83466.9995600362, - "2022": 76461.93214879185, - "2023": 73881.20066807512, - "2024": 71300.46918735933 - }, - "totalApproximatedHistoricalEmission": 227726.86719056475, - "trend": { - "2024": 71300.46918735933, - "2025": 68719.7377066426, - "2026": 66139.0062259268, - "2027": 63558.274745210074, - "2028": 60977.54326449428, - "2029": 58396.81178377755, - "2030": 55816.08030306175, - "2031": 53235.34882234596, - "2032": 50654.61734162923, - "2033": 48073.88586091343, - "2034": 45493.154380196705, - "2035": 42912.42289948091, - "2036": 40331.69141876418, - "2037": 37750.959938048385, - "2038": 35170.22845733166, - "2039": 32589.49697661586, - "2040": 30008.765495900065, - "2041": 27428.034015183337, - "2042": 24847.30253446754, - "2043": 22266.571053750813, - "2044": 19685.839573035017, - "2045": 17105.10809231829, - "2046": 14524.376611602493, - "2047": 11943.645130885765, - "2048": 9362.913650169969, - "2049": 6782.182169454172, - "2050": 4201.450688737445 - }, - "trendEmission": 981524.9583892552, - "historicalEmissionChangePercent": -1.9803697103720805, - "neededEmissionChangePercent": 32.71300853528029, - "hitNetZero": "2051-08-11", - "budgetRunsOut": "2026-08-26", - "electricCarChangePercent": 0.0455480925238178, - "electricCarChangeYearly": { - "2015": 0.009722222222222222, - "2016": 0.01920768307322929, - "2017": 0.005215123859191656, - "2018": 0.043037974683544304, - "2019": 0.061813186813186816, - "2020": 0.17970049916805325, - "2021": 0.2708688245315162, - "2022": 0.299079754601227 - }, - "climatePlanLink": "https://bollnas.se/download/18.5bba8c07182e92654f3ac6a/1662039598190/Programmet%20f%C3%B6r%20ekologisk%20h%C3%A5llbarhet%20-%20antagen%20version.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Program för ekologisk hållbarhet 2021–2026", - "bicycleMetrePerCapita": 2.564056644, - "totalConsumptionEmission": 6108.5, - "electricVehiclePerChargePoints": 14.157894736842104 - }, - { - "kommun": "Borgholm", - "län": "Kalmar län", - "emissions": { - "1990": 73235.7257665015, - "2000": 71591.469216971, - "2005": 65683.4591122369, - "2010": 62952.1537254546, - "2015": 54689.3614341625, - "2016": 53638.1612390632, - "2017": 48823.8327135673, - "2018": 52293.0113652709, - "2019": 51169.8106143667, - "2020": 46482.1852316377, - "2021": 44760.6499832772 - }, - "budget": 104231.39656077791, - "emissionBudget": { - "2024": 41318.407125897706, - "2025": 27796.155438772268, - "2026": 18699.323398943896, - "2027": 12579.606426094124, - "2028": 8462.68575922731, - "2029": 5693.107386163694, - "2030": 3829.9273578782813, - "2031": 2576.5092016837552, - "2032": 1733.2964952208993, - "2033": 1166.041533397872, - "2034": 784.431781497129, - "2035": 527.7112368627766, - "2036": 355.0074794008851, - "2037": 238.8243827814152, - "2038": 160.66446235775192, - "2039": 108.08389480202699, - "2040": 72.71133979562335, - "2041": 48.91514082239982, - "2042": 32.906710403089384, - "2043": 22.13734993597151, - "2044": 14.892471966497439, - "2045": 10.018621104802024, - "2046": 6.739832652858859, - "2047": 4.534091439666249, - "2048": 3.0502219034377074, - "2049": 2.0519775094998964, - "2050": 1.3804279927135432 - }, - "approximatedHistoricalEmission": { - "2021": 44760.6499832772, - "2022": 44300.70058780536, - "2023": 42809.55385685153, - "2024": 41318.407125897706 - }, - "totalApproximatedHistoricalEmission": 130149.78299924434, - "trend": { - "2024": 41318.407125897706, - "2025": 39827.26039494388, - "2026": 38336.11366399005, - "2027": 36844.96693303622, - "2028": 35353.820202082396, - "2029": 33862.67347112857, - "2030": 32371.52674017474, - "2031": 30880.380009220913, - "2032": 29389.233278267086, - "2033": 27898.086547313258, - "2034": 26406.93981635943, - "2035": 24915.793085405603, - "2036": 23424.646354451776, - "2037": 21933.499623498414, - "2038": 20442.352892544586, - "2039": 18951.20616159076, - "2040": 17460.05943063693, - "2041": 15968.912699683104, - "2042": 14477.765968729276, - "2043": 12986.619237775449, - "2044": 11495.472506821621, - "2045": 10004.325775867794, - "2046": 8513.179044913966, - "2047": 7022.032313960139, - "2048": 5530.885583006311, - "2049": 4039.7388520524837, - "2050": 2548.592121098656 - }, - "trendEmission": 570270.9902109529, - "historicalEmissionChangePercent": -3.1341093732750616, - "neededEmissionChangePercent": 32.72694333526209, - "hitNetZero": "2051-09-09", - "budgetRunsOut": "2026-08-25", - "electricCarChangePercent": 0.07454415068255339, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.010526315789473684, - "2017": 0.019417475728155338, - "2018": 0.030864197530864196, - "2019": 0.18840579710144928, - "2020": 0.15555555555555556, - "2021": 0.36496350364963503, - "2022": 0.5605095541401274 - }, - "climatePlanLink": "https://www.borgholm.se/wp-content/uploads/2020/05/Energi-och-klimatstrategi-KF-2019-11-27-220.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Energi– och klimatstrategi, ska följas upp årligen.", - "bicycleMetrePerCapita": 2.378697008, - "totalConsumptionEmission": 6336.3, - "electricVehiclePerChargePoints": 3.740740740740741 - }, - { - "kommun": "Borlänge", - "län": "Dalarnas län", - "emissions": { - "1990": 484887.22160869, - "2000": 547767.520875247, - "2005": 586576.867660458, - "2010": 485851.764159318, - "2015": 421008.350213925, - "2016": 412922.193957897, - "2017": 400644.478297968, - "2018": 407488.517911811, - "2019": 380079.314341633, - "2020": 353323.532342014, - "2021": 374800.097747541 - }, - "budget": 814717.6448844114, - "emissionBudget": { - "2024": 333240.80256170034, - "2025": 221370.8241891544, - "2026": 147055.94700730595, - "2027": 97688.80623463418, - "2028": 64894.368828713785, - "2029": 43109.126500760634, - "2030": 28637.258073404664, - "2031": 19023.641083247425, - "2032": 12637.345346980466, - "2033": 8394.949038409153, - "2034": 5576.738422704094, - "2035": 3704.609914005818, - "2036": 2460.9607936919388, - "2037": 1634.808567885115, - "2038": 1085.9982249538987, - "2039": 721.4252284772089, - "2040": 479.24052574348093, - "2041": 318.35798423584487, - "2042": 211.48421446511824, - "2043": 140.48830305067744, - "2044": 93.3259408697586, - "2045": 61.99613099521807, - "2046": 41.183836161267024, - "2047": 27.358293714956346, - "2048": 18.174029055063006, - "2049": 12.072950730611776, - "2050": 8.020023457768929 - }, - "approximatedHistoricalEmission": { - "2021": 374800.097747541, - "2022": 353125.6057465039, - "2023": 343183.20415410027, - "2024": 333240.80256170034 - }, - "totalApproximatedHistoricalEmission": 1050329.2600552249, - "trend": { - "2024": 333240.80256170034, - "2025": 323298.4009692967, - "2026": 313355.99937689677, - "2027": 303413.5977844931, - "2028": 293471.1961920932, - "2029": 283528.79459968954, - "2030": 273586.3930072896, - "2031": 263643.99141488597, - "2032": 253701.58982248604, - "2033": 243759.1882300824, - "2034": 233816.78663768247, - "2035": 223874.38504527882, - "2036": 213931.9834528789, - "2037": 203989.58186047524, - "2038": 194047.18026807532, - "2039": 184104.77867567167, - "2040": 174162.37708327174, - "2041": 164219.9754908681, - "2042": 154277.57389846817, - "2043": 144335.17230606452, - "2044": 134392.7707136646, - "2045": 124450.36912126094, - "2046": 114507.96752886102, - "2047": 104565.56593645737, - "2048": 94623.16434405744, - "2049": 84680.76275165752, - "2050": 74738.36115925387 - }, - "trendEmission": 5303729.128372384, - "historicalEmissionChangePercent": -1.8122062973252113, - "neededEmissionChangePercent": 33.57031237248714, - "hitNetZero": "2057-06-29", - "budgetRunsOut": "2026-07-17", - "electricCarChangePercent": 0.06932502973026199, - "electricCarChangeYearly": { - "2015": 0.0051813471502590676, - "2016": 0.011982570806100218, - "2017": 0.023108030040439053, - "2018": 0.0345855694692904, - "2019": 0.05200945626477541, - "2020": 0.21256038647342995, - "2021": 0.3398590446358653, - "2022": 0.5192012288786483 - }, - "climatePlanLink": "https://www.borlange.se/bygga-bo-och-miljo/miljo-och-klimat/miljostrategi", - "climatePlanYear": 2021, - "climatePlanComment": "Finns både Miljöstrategi 2021–2030 och Handlingsplan för miljöstrategin 2022.", - "bicycleMetrePerCapita": 3.548200249, - "totalConsumptionEmission": 6102.9, - "electricVehiclePerChargePoints": 17.82442748091603 - }, - { - "kommun": "Borås", - "län": "Västra Götalands län", - "emissions": { - "1990": 393503.561780165, - "2000": 289793.673588002, - "2005": 302509.931723561, - "2010": 312334.26211432, - "2015": 242035.233593147, - "2016": 242337.085214558, - "2017": 237357.942494976, - "2018": 229794.91540821, - "2019": 228352.052588656, - "2020": 210951.116307224, - "2021": 211464.938310871 - }, - "budget": 474650.9539697752, - "emissionBudget": { - "2024": 193865.74479513243, - "2025": 128860.10233094382, - "2026": 85651.67606215613, - "2027": 56931.58300786828, - "2028": 37841.70132794252, - "2029": 25152.899036643626, - "2030": 16718.81304872575, - "2031": 11112.783037495194, - "2032": 7386.525973974755, - "2033": 4909.73015311398, - "2034": 3263.4353769726563, - "2035": 2169.164114431409, - "2036": 1441.8158816743194, - "2037": 958.3567341990662, - "2038": 637.0075691759938, - "2039": 423.4108539203121, - "2040": 281.43582571465004, - "2041": 187.066824721961, - "2042": 124.34094636920024, - "2043": 82.64785039767297, - "2044": 54.934978177455015, - "2045": 36.51458341428847, - "2046": 24.27078058740751, - "2047": 16.132480100856576, - "2048": 10.723054961798956, - "2049": 7.127478663845118, - "2050": 4.737544690813062 - }, - "approximatedHistoricalEmission": { - "2021": 211464.938310871, - "2022": 205543.5100499764, - "2023": 199704.62742255442, - "2024": 193865.74479513243 - }, - "totalApproximatedHistoricalEmission": 607913.4790255325, - "trend": { - "2024": 193865.74479513243, - "2025": 188026.86216771044, - "2026": 182187.97954028845, - "2027": 176349.09691286646, - "2028": 170510.21428544447, - "2029": 164671.33165802248, - "2030": 158832.4490306005, - "2031": 152993.5664031785, - "2032": 147154.6837757565, - "2033": 141315.80114833452, - "2034": 135476.91852091253, - "2035": 129638.03589349054, - "2036": 123799.15326606855, - "2037": 117960.27063864656, - "2038": 112121.38801122457, - "2039": 106282.50538380258, - "2040": 100443.62275638059, - "2041": 94604.7401289586, - "2042": 88765.85750153661, - "2043": 82926.97487411462, - "2044": 77088.09224669263, - "2045": 71249.20961927064, - "2046": 65410.32699184865, - "2047": 59571.44436442666, - "2048": 53732.56173700467, - "2049": 47893.67910958268, - "2050": 42054.79648216069 - }, - "trendEmission": 3066967.0366048105, - "historicalEmissionChangePercent": -2.186800053113524, - "neededEmissionChangePercent": 33.53126800863314, - "hitNetZero": "2057-03-06", - "budgetRunsOut": "2026-07-19", - "electricCarChangePercent": 0.0688514886498573, - "electricCarChangeYearly": { - "2015": 0.01661392405063291, - "2016": 0.02943848809740142, - "2017": 0.036084381939304216, - "2018": 0.04981242184243435, - "2019": 0.07324494675070636, - "2020": 0.24108953926398147, - "2021": 0.36672231496939345, - "2022": 0.5107079119571684 - }, - "climatePlanLink": "https://www.boras.se/download/18.499cdee21538963cd3f57af7/1610014986050/Energi-%20och%20klimatstrategi%20-%20strategi.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Energi– och klimatstrategi 2020–2024 kopplad till Borås koldioxidbudget.", - "bicycleMetrePerCapita": 1.84645402, - "totalConsumptionEmission": 6052.0, - "electricVehiclePerChargePoints": 17.791411042944784 - }, - { - "kommun": "Botkyrka", - "län": "Stockholms län", - "emissions": { - "1990": 344831.844170531, - "2000": 147615.000989295, - "2005": 133673.359435064, - "2010": 140457.605301456, - "2015": 115712.852155797, - "2016": 111611.634587102, - "2017": 100737.775311239, - "2018": 100574.594029972, - "2019": 98525.5716080391, - "2020": 88256.2790214192, - "2021": 87998.058069537 - }, - "budget": 208374.7350087472, - "emissionBudget": { - "2024": 72187.97416329756, - "2025": 51051.76098139415, - "2026": 36104.10639043126, - "2027": 25533.036925536086, - "2028": 18057.11426813137, - "2029": 12770.097683376442, - "2030": 9031.088379984656, - "2031": 6386.838953727494, - "2032": 4516.810167781817, - "2033": 3194.314783821254, - "2034": 2259.038250250394, - "2035": 1597.6051708934917, - "2036": 1129.8357970621873, - "2037": 799.0265377078272, - "2038": 565.0762788906547, - "2039": 399.6252763780778, - "2040": 282.6173518268635, - "2041": 199.8686576523335, - "2042": 141.34829320818994, - "2043": 99.96234641062128, - "2044": 70.69396080502564, - "2045": 49.99518592504234, - "2046": 35.35689028053245, - "2047": 25.0046012866898, - "2048": 17.68340146844254, - "2049": 12.505805787855955, - "2050": 8.844179593087413 - }, - "approximatedHistoricalEmission": { - "2021": 87998.058069537, - "2022": 81621.35252710804, - "2023": 76904.6633452028, - "2024": 72187.97416329756 - }, - "totalApproximatedHistoricalEmission": 238619.03198872812, - "trend": { - "2024": 72187.97416329756, - "2025": 67471.28498139232, - "2026": 62754.595799487084, - "2027": 58037.906617581844, - "2028": 53321.217435676605, - "2029": 48604.528253771365, - "2030": 43887.839071866125, - "2031": 39171.149889960885, - "2032": 34454.460708055645, - "2033": 29737.771526150405, - "2034": 25021.082344245166, - "2035": 20304.393162339926, - "2036": 15587.703980434686, - "2037": 10871.014798529446, - "2038": 6154.325616624206, - "2039": 1437.6364347189665, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 552910.8977024835, - "historicalEmissionChangePercent": -4.366957800173508, - "neededEmissionChangePercent": 29.279410354543057, - "hitNetZero": "2039-04-18", - "budgetRunsOut": "2027-03-24", - "electricCarChangePercent": 0.0641077386781339, - "electricCarChangeYearly": { - "2015": 0.016700066800267203, - "2016": 0.01616915422885572, - "2017": 0.017333333333333333, - "2018": 0.05698234349919743, - "2019": 0.09377236936292055, - "2020": 0.18659881255301103, - "2021": 0.36717557251908395, - "2022": 0.45747599451303156 - }, - "climatePlanLink": "https://www.botkyrka.se/download/18.1fbbaae6170bff9469deb3b/1584093805113/Klimatstrategi%20f%C3%B6r%20Botkyrka.pdf", - "climatePlanYear": 2018, - "climatePlanComment": "Klimatstrategi 2018–2023", - "bicycleMetrePerCapita": 2.586763621, - "totalConsumptionEmission": 5526.3, - "electricVehiclePerChargePoints": 141.61111111111111 - }, - { - "kommun": "Boxholm", - "län": "Östergötlands län", - "emissions": { - "1990": 58933.0044312329, - "2000": 65650.1397363356, - "2005": 55814.274990812, - "2010": 53916.7829166791, - "2015": 47471.2882137892, - "2016": 49801.0854144416, - "2017": 49064.3010424853, - "2018": 45483.4674349998, - "2019": 41522.9458462746, - "2020": 36655.3573349866, - "2021": 42576.6794264777 - }, - "budget": 92594.83430505892, - "emissionBudget": { - "2024": 34257.16687683854, - "2025": 23663.347913799455, - "2026": 16345.602556763239, - "2027": 11290.825115572836, - "2028": 7799.206627454822, - "2029": 5387.349763644723, - "2030": 3721.344857523584, - "2031": 2570.5417610102054, - "2032": 1775.6174711243011, - "2033": 1226.5186473853755, - "2034": 847.2252705598321, - "2035": 585.2260465874914, - "2036": 404.24847735964437, - "2037": 279.23711256614394, - "2038": 192.88474639054115, - "2039": 133.23632037389214, - "2040": 92.03380463705231, - "2041": 63.57291444406224, - "2042": 43.91338016341184, - "2043": 30.333436405108007, - "2044": 20.953007049759353, - "2045": 14.473417998672096, - "2046": 9.997602161198675, - "2047": 6.905904948145268, - "2048": 4.770296155403262, - "2049": 3.2951112969440235, - "2050": 2.2761183175073234 - }, - "approximatedHistoricalEmission": { - "2021": 42576.6794264777, - "2022": 37722.64099948527, - "2023": 35989.90393816214, - "2024": 34257.16687683854 - }, - "totalApproximatedHistoricalEmission": 112129.46808930553, - "trend": { - "2024": 34257.16687683854, - "2025": 32524.429815514944, - "2026": 30791.692754191812, - "2027": 29058.955692868214, - "2028": 27326.21863154508, - "2029": 25593.481570221484, - "2030": 23860.744508897886, - "2031": 22128.007447574753, - "2032": 20395.270386251155, - "2033": 18662.533324927557, - "2034": 16929.796263604425, - "2035": 15197.059202280827, - "2036": 13464.322140957695, - "2037": 11731.585079634096, - "2038": 9998.848018310498, - "2039": 8266.110956987366, - "2040": 6533.373895663768, - "2041": 4800.63683434017, - "2042": 3067.8997730170377, - "2043": 1335.1627116934396, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 338794.7124469015, - "historicalEmissionChangePercent": -1.3576849520338767, - "neededEmissionChangePercent": 30.924387300111576, - "hitNetZero": "2043-10-04", - "budgetRunsOut": "2026-12-02", - "electricCarChangePercent": 0.06825478883054295, - "electricCarChangeYearly": { - "2015": 0.011363636363636364, - "2016": 0.0, - "2017": 0.0, - "2018": 0.03529411764705882, - "2019": 0.06521739130434782, - "2020": 0.2191780821917808, - "2021": 0.3333333333333333, - "2022": 0.49411764705882355 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 1.23972865, - "totalConsumptionEmission": 6151.9, - "electricVehiclePerChargePoints": 11.5 - }, - { - "kommun": "Bromölla", - "län": "Skåne län", - "emissions": { - "1990": 108575.732331307, - "2000": 132103.673450363, - "2005": 77259.2729353138, - "2010": 96132.1944982896, - "2015": 81293.5710279644, - "2016": 75819.3034118229, - "2017": 75575.1161795703, - "2018": 80506.6077286378, - "2019": 85564.6133186708, - "2020": 65351.2315084336, - "2021": 69760.3160810483 - }, - "budget": 158149.7393273252, - "emissionBudget": { - "2024": 66507.3059990732, - "2025": 43675.095251660976, - "2026": 28681.269171664255, - "2027": 18834.880532199277, - "2028": 12368.794509717802, - "2029": 8122.540377258317, - "2030": 5334.04141594854, - "2031": 3502.844738908888, - "2032": 2300.304836069546, - "2033": 1510.6014491790397, - "2034": 992.006234339293, - "2035": 651.4467264034704, - "2036": 427.80259100332216, - "2037": 280.9363366971719, - "2038": 184.48982529938382, - "2039": 121.15376757292144, - "2040": 79.5612190173314, - "2041": 52.24755035136493, - "2042": 34.31076787704518, - "2043": 22.53175095091748, - "2044": 14.796515272799315, - "2045": 9.716815381774332, - "2046": 6.38099575628145, - "2047": 4.190375677822834, - "2048": 2.7518037923789325, - "2049": 1.8070990989727755, - "2050": 1.186715114846579 - }, - "approximatedHistoricalEmission": { - "2021": 69760.3160810483, - "2022": 69760.62110681739, - "2023": 68133.9635529453, - "2024": 66507.3059990732 - }, - "totalApproximatedHistoricalEmission": 206028.39569982342, - "trend": { - "2024": 66507.3059990732, - "2025": 64880.64844520064, - "2026": 63253.99089132855, - "2027": 61627.33333745645, - "2028": 60000.67578358436, - "2029": 58374.0182297118, - "2030": 56747.36067583971, - "2031": 55120.703121967614, - "2032": 53494.045568095054, - "2033": 51867.38801422296, - "2034": 50240.73046035087, - "2035": 48614.072906478774, - "2036": 46987.415352606215, - "2037": 45360.75779873412, - "2038": 43734.10024486203, - "2039": 42107.44269098947, - "2040": 40480.785137117375, - "2041": 38854.12758324528, - "2042": 37227.47002937319, - "2043": 35600.81247550063, - "2044": 33974.154921628535, - "2045": 32347.49736775644, - "2046": 30720.839813884348, - "2047": 29094.18226001179, - "2048": 27467.524706139695, - "2049": 25840.8671522676, - "2050": 24214.209598395042 - }, - "trendEmission": 1179379.7027670876, - "historicalEmissionChangePercent": -1.8541311699235605, - "neededEmissionChangePercent": 34.33037980478474, - "hitNetZero": "2064-11-09", - "budgetRunsOut": "2026-06-14", - "electricCarChangePercent": 0.07115187962866446, - "electricCarChangeYearly": { - "2015": 0.010752688172043012, - "2016": 0.0, - "2017": 0.011857707509881422, - "2018": 0.02459016393442623, - "2019": 0.07112970711297072, - "2020": 0.2822085889570552, - "2021": 0.28448275862068967, - "2022": 0.538860103626943 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 6.400184489, - "totalConsumptionEmission": 5789.3, - "electricVehiclePerChargePoints": 30.818181818181817 - }, - { - "kommun": "Bräcke", - "län": "Jämtlands län", - "emissions": { - "1990": 60934.9533866909, - "2000": 54255.0906105114, - "2005": 48848.1571824565, - "2010": 44798.8158538266, - "2015": 39707.1918065538, - "2016": 39210.3181373815, - "2017": 34283.9327797193, - "2018": 32746.4526781587, - "2019": 32955.3812540454, - "2020": 29497.7606879384, - "2021": 27906.4222363986 - }, - "budget": 70001.89181700346, - "emissionBudget": { - "2024": 21724.785268236417, - "2025": 15928.47039875333, - "2026": 11678.6502656446, - "2027": 8562.709953487783, - "2028": 6278.122906312742, - "2029": 4603.0786329174, - "2030": 3374.947132607988, - "2031": 2474.4891530735827, - "2032": 1814.2792547826361, - "2033": 1330.2176775542148, - "2034": 975.3068966716074, - "2035": 715.0886345490122, - "2036": 524.2983075442625, - "2037": 384.4120882541271, - "2038": 281.8484276404486, - "2039": 206.64942282168292, - "2040": 151.5140045663542, - "2041": 111.08907668976303, - "2042": 81.4497840982054, - "2043": 59.71844871995057, - "2044": 43.785175823393544, - "2045": 32.103004397785284, - "2046": 23.537712752853437, - "2047": 17.25769696726766, - "2048": 12.653230487653657, - "2049": 9.277265794929335, - "2050": 6.802030573437044 - }, - "approximatedHistoricalEmission": { - "2021": 27906.4222363986, - "2022": 25735.92634930974, - "2023": 23730.355808773078, - "2024": 21724.785268236417 - }, - "totalApproximatedHistoricalEmission": 74281.88591040033, - "trend": { - "2024": 21724.785268236417, - "2025": 19719.214727699757, - "2026": 17713.644187163096, - "2027": 15708.073646626435, - "2028": 13702.503106089775, - "2029": 11696.932565553114, - "2030": 9691.362025016919, - "2031": 7685.791484480258, - "2032": 5680.220943943597, - "2033": 3674.6504034069367, - "2034": 1669.079862870276, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 117803.86558696837, - "historicalEmissionChangePercent": -5.59141314228076, - "neededEmissionChangePercent": 26.680654367423447, - "hitNetZero": "2034-10-28", - "budgetRunsOut": "2027-12-09", - "electricCarChangePercent": 0.07074002442836098, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.060240963855421686, - "2017": 0.01, - "2018": 0.03125, - "2019": 0.0821917808219178, - "2020": 0.1836734693877551, - "2021": 0.40384615384615385, - "2022": 0.5217391304347826 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 0.9315229039, - "totalConsumptionEmission": 6315.8, - "electricVehiclePerChargePoints": 4.7272727272727275 - }, - { - "kommun": "Burlöv", - "län": "Skåne län", - "emissions": { - "1990": 156776.347181391, - "2000": 83763.6704542442, - "2005": 65737.8882582761, - "2010": 84761.9704802872, - "2015": 76189.4828703367, - "2016": 77789.0439193744, - "2017": 75514.5306183496, - "2018": 67433.4674872992, - "2019": 68669.4409080922, - "2020": 57710.1044931783, - "2021": 51015.1708721754 - }, - "budget": 140509.25125170377, - "emissionBudget": { - "2024": 41504.62633330189, - "2025": 30889.54433607797, - "2026": 22989.339588992712, - "2027": 17109.664324855243, - "2028": 12733.754798654085, - "2029": 9477.013002335321, - "2030": 7053.204405657767, - "2031": 5249.300847823184, - "2032": 3906.7575255374254, - "2033": 2907.5785148935724, - "2034": 2163.9461279613847, - "2035": 1610.5026298457403, - "2036": 1198.6059575260963, - "2037": 892.0545764986791, - "2038": 663.9057335362129, - "2039": 494.1074622948359, - "2040": 367.7362191090731, - "2041": 273.6852550588357, - "2042": 203.68844553329959, - "2043": 151.5937818237699, - "2044": 112.82267203455974, - "2045": 83.96752935298782, - "2046": 62.492279774096765, - "2047": 46.50946695057215, - "2048": 34.61436394776855, - "2049": 25.761512011778517, - "2050": 19.172835362060496 - }, - "approximatedHistoricalEmission": { - "2021": 51015.1708721754, - "2022": 50256.47665881179, - "2023": 45880.55149605684, - "2024": 41504.62633330189 - }, - "totalApproximatedHistoricalEmission": 142396.92675760726, - "trend": { - "2024": 41504.62633330189, - "2025": 37128.701170546934, - "2026": 32752.77600779198, - "2027": 28376.85084503703, - "2028": 24000.925682282075, - "2029": 19625.000519527122, - "2030": 15249.07535677217, - "2031": 10873.150194017217, - "2032": 6497.225031262264, - "2033": 2121.2998685091734, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 197377.3178423969, - "historicalEmissionChangePercent": -6.208913878116392, - "neededEmissionChangePercent": 25.575659715569444, - "hitNetZero": "2033-06-23", - "budgetRunsOut": "2028-05-30", - "electricCarChangePercent": 0.047531882163162835, - "electricCarChangeYearly": { - "2015": 0.006872852233676976, - "2016": 0.0064, - "2017": 0.014331210191082803, - "2018": 0.028346456692913385, - "2019": 0.03501945525291829, - "2020": 0.16115702479338842, - "2021": 0.25443786982248523, - "2022": 0.33620689655172414 - }, - "climatePlanLink": "https://burlov.se/download/18.1c32a37617b4106947ea55dd/1629702323432/Milj%C3%B6program%202030.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Miljöprogram 2030", - "bicycleMetrePerCapita": 3.346646362, - "totalConsumptionEmission": 5458.4, - "electricVehiclePerChargePoints": 10.923076923076923 - }, - { - "kommun": "Båstad", - "län": "Skåne län", - "emissions": { - "1990": 118882.868281184, - "2000": 99047.844728029, - "2005": 74665.5136555171, - "2010": 61576.3325627239, - "2015": 50227.5873973023, - "2016": 48141.1963871698, - "2017": 46107.1893545121, - "2018": 44494.9645300312, - "2019": 44069.8914127698, - "2020": 40720.8820134157, - "2021": 40976.4441285849 - }, - "budget": 93235.59371252774, - "emissionBudget": { - "2024": 35398.73149724072, - "2025": 24215.82315538954, - "2026": 16565.737423071492, - "2027": 11332.41082118965, - "2028": 7752.358481872218, - "2029": 5303.290092438341, - "2030": 3627.9134756630115, - "2031": 2481.8095856502127, - "2032": 1697.7744537580606, - "2033": 1161.4259661577976, - "2034": 794.516769809872, - "2035": 543.5188431316222, - "2036": 371.814345605102, - "2037": 254.35347705925196, - "2038": 173.99998697426187, - "2039": 119.03118375688828, - "2040": 81.42772280012811, - "2041": 55.70367219027848, - "2042": 38.10617549871016, - "2043": 26.067951250652367, - "2044": 17.832754757280462, - "2045": 12.199161306370428, - "2046": 8.345291493345293, - "2047": 5.708908043746678, - "2048": 3.9053915705574456, - "2049": 2.6716288303308255, - "2050": 1.8276273910316347 - }, - "approximatedHistoricalEmission": { - "2021": 40976.4441285849, - "2022": 38586.685532626696, - "2023": 36992.708514933474, - "2024": 35398.73149724072 - }, - "totalApproximatedHistoricalEmission": 113766.98186047298, - "trend": { - "2024": 35398.73149724072, - "2025": 33804.75447954796, - "2026": 32210.77746185474, - "2027": 30616.800444161985, - "2028": 29022.82342646923, - "2029": 27428.846408776008, - "2030": 25834.86939108325, - "2031": 24240.89237339003, - "2032": 22646.915355697274, - "2033": 21052.93833800452, - "2034": 19458.961320311297, - "2035": 17864.98430261854, - "2036": 16271.007284925785, - "2037": 14677.030267232563, - "2038": 13083.053249539807, - "2039": 11489.076231846586, - "2040": 9895.09921415383, - "2041": 8301.122196461074, - "2042": 6707.1451787678525, - "2043": 5113.168161075097, - "2044": 3519.1911433823407, - "2045": 1925.214125689119, - "2046": 331.2371079963632, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 393195.2732116056, - "historicalEmissionChangePercent": -3.300449527495998, - "neededEmissionChangePercent": 31.591268581821563, - "hitNetZero": "2046-03-11", - "budgetRunsOut": "2026-10-24", - "electricCarChangePercent": 0.08030708204415621, - "electricCarChangeYearly": { - "2015": 0.019021739130434784, - "2016": 0.03051643192488263, - "2017": 0.029017857142857144, - "2018": 0.061946902654867256, - "2019": 0.10918114143920596, - "2020": 0.3007518796992481, - "2021": 0.42574257425742573, - "2022": 0.5771971496437055 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Nytt miljö– och energiprogram är under utveckling.", - "bicycleMetrePerCapita": 4.70562181, - "totalConsumptionEmission": 6894.6, - "electricVehiclePerChargePoints": 7.447368421052632 - }, - { - "kommun": "Dals-Ed", - "län": "Västra Götalands län", - "emissions": { - "1990": 32063.9858049397, - "2000": 26278.8376163652, - "2005": 20358.7427723996, - "2010": 17741.7528441709, - "2015": 14875.0383304904, - "2016": 14327.8407207689, - "2017": 14856.7494945082, - "2018": 13358.305055505, - "2019": 13405.5255085373, - "2020": 12400.0181896865, - "2021": 12572.1630489804 - }, - "budget": 28377.758637529867, - "emissionBudget": { - "2024": 11067.485429925495, - "2025": 7493.274960744014, - "2026": 5073.3447984029735, - "2027": 3434.9236586571055, - "2028": 2325.6256000018766, - "2029": 1574.5719465272114, - "2030": 1066.068766523937, - "2031": 721.7851286277996, - "2032": 488.6868354721203, - "2033": 330.86692104306854, - "2034": 224.01446385343758, - "2035": 151.6696799345828, - "2036": 102.68842205880539, - "2037": 69.52551116001241, - "2038": 47.072460606054435, - "2039": 31.870553851935927, - "2040": 21.578056250972892, - "2041": 14.609489177166195, - "2042": 9.891399463198308, - "2043": 6.6970023492318775, - "2044": 4.534225984147594, - "2045": 3.0699116116746294, - "2046": 2.078493073888207, - "2047": 1.4072501116228013, - "2048": 0.9527830049285492, - "2049": 0.6450846562263417, - "2050": 0.43675654534776753 - }, - "approximatedHistoricalEmission": { - "2021": 12572.1630489804, - "2022": 11940.020779401646, - "2023": 11503.75310466357, - "2024": 11067.485429925495 - }, - "totalApproximatedHistoricalEmission": 35263.59812351817, - "trend": { - "2024": 11067.485429925495, - "2025": 10631.217755187536, - "2026": 10194.95008044946, - "2027": 9758.682405711384, - "2028": 9322.414730973309, - "2029": 8886.147056235233, - "2030": 8449.879381497158, - "2031": 8013.611706759082, - "2032": 7577.344032021123, - "2033": 7141.076357283047, - "2034": 6704.808682544972, - "2035": 6268.541007806896, - "2036": 5832.273333068821, - "2037": 5396.005658330745, - "2038": 4959.7379835926695, - "2039": 4523.47030885471, - "2040": 4087.2026341166347, - "2041": 3650.934959378559, - "2042": 3214.6672846404836, - "2043": 2778.399609902408, - "2044": 2342.1319351643324, - "2045": 1905.8642604263732, - "2046": 1469.5965856882976, - "2047": 1033.328910950222, - "2048": 597.0612362121465, - "2049": 160.79356147407088, - "2050": 0 - }, - "trendEmission": 140433.88417323242, - "historicalEmissionChangePercent": -2.6386739337043927, - "neededEmissionChangePercent": 32.294693241855406, - "hitNetZero": "2049-05-08", - "budgetRunsOut": "2026-09-16", - "electricCarChangePercent": 0.07013240027920878, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0070921985815602835, - "2017": 0.0125, - "2018": 0.03, - "2019": 0.04838709677419355, - "2020": 0.17346938775510204, - "2021": 0.26436781609195403, - "2022": 0.5862068965517241 - }, - "climatePlanLink": "https://www.dalsed.se/politik-demokrati/utvecklingsplan-2020-2023/miljo/", - "climatePlanYear": 2020, - "climatePlanComment": "Utvecklingsplan 2020–2023. Planerar att ta fram fler strategier.", - "bicycleMetrePerCapita": 3.066064022, - "totalConsumptionEmission": 6512.5, - "electricVehiclePerChargePoints": 12.666666666666666 - }, - { - "kommun": "Danderyd", - "län": "Stockholms län", - "emissions": { - "1990": 101804.096366308, - "2000": 90544.8450252397, - "2005": 76940.0535460281, - "2010": 62875.7333851056, - "2015": 54981.9948377538, - "2016": 52652.7049773373, - "2017": 37658.9483981093, - "2018": 36488.299946612, - "2019": 35697.171305278, - "2020": 32298.236225675, - "2021": 32705.8422088023 - }, - "budget": 83680.63494320582, - "emissionBudget": { - "2024": 16890.63416786585, - "2025": 13803.371666249384, - "2026": 11280.397613436107, - "2027": 9218.571621044408, - "2028": 7533.605254401937, - "2029": 6156.616280942064, - "2030": 5031.312731525634, - "2031": 4111.69165776537, - "2032": 3360.1585094494744, - "2033": 2745.990251312275, - "2034": 2244.0793906289487, - "2035": 1833.9075708804862, - "2036": 1498.7067715060462, - "2037": 1224.773823186563, - "2038": 1000.9102157159223, - "2039": 817.9642975369931, - "2040": 668.4571518401609, - "2041": 546.2768548599782, - "2042": 446.4286175025717, - "2043": 364.8305959737972, - "2044": 298.1470240487651, - "2045": 243.6518453499419, - "2046": 199.1172708560126, - "2047": 162.7227058190476, - "2048": 132.98032297871242, - "2049": 108.67423947084269, - "2050": 88.81081095326134 - }, - "approximatedHistoricalEmission": { - "2021": 32705.8422088023, - "2022": 24712.003630937077, - "2023": 20801.318899401464, - "2024": 16890.63416786585 - }, - "totalApproximatedHistoricalEmission": 70311.56071867261, - "trend": { - "2024": 16890.63416786585, - "2025": 12979.949436329305, - "2026": 9069.264704793692, - "2027": 5158.579973257147, - "2028": 1247.8952417215332, - "2029": 0, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 36901.0064400346, - "historicalEmissionChangePercent": -7.7082440768367775, - "neededEmissionChangePercent": 18.27795493605522, - "hitNetZero": "2028-04-25", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.104575205822188, - "electricCarChangeYearly": { - "2015": 0.05960591133004926, - "2016": 0.07625272331154684, - "2017": 0.11531531531531532, - "2018": 0.2683473389355742, - "2019": 0.29680616740088106, - "2020": 0.5162790697674419, - "2021": 0.6462818003913894, - "2022": 0.731437598736177 - }, - "climatePlanLink": "https://www.danderyd.se/contentassets/ca8882c4a3184e3abe2d6c966f612bd4/201214_miljo-klimatprogram_final_web.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Miljö– och klimatprogram 2021–2030", - "bicycleMetrePerCapita": 1.840451379, - "totalConsumptionEmission": 8185.7, - "electricVehiclePerChargePoints": 47.44615384615385 - }, - { - "kommun": "Degerfors", - "län": "Örebro län", - "emissions": { - "1990": 81326.1660660495, - "2000": 87057.5558713049, - "2005": 65205.4910016564, - "2010": 57661.1536787506, - "2015": 57234.7608648746, - "2016": 56729.4785033588, - "2017": 55439.9580855044, - "2018": 55226.1299506187, - "2019": 57591.1004307588, - "2020": 50802.9512618799, - "2021": 52284.4338444058 - }, - "budget": 114140.89884246064, - "emissionBudget": { - "2024": 49782.781877534, - "2025": 32185.536475508874, - "2026": 20808.57515686157, - "2027": 13453.148447229993, - "2028": 8697.722058279742, - "2029": 5623.246431853833, - "2030": 3635.5381583222193, - "2031": 2350.446109874573, - "2032": 1519.6091128291393, - "2033": 982.4568391898126, - "2034": 635.1774497283922, - "2035": 410.65457183459745, - "2036": 265.4961655845422, - "2037": 171.64843343929883, - "2038": 110.97404980330471, - "2039": 71.74688101130538, - "2040": 46.385753642173746, - "2041": 29.989291668489322, - "2042": 19.388660184665632, - "2043": 12.535145808442996, - "2044": 8.104215502379015, - "2045": 5.239532903140474, - "2046": 3.387459900965464, - "2047": 2.1900586927836883, - "2048": 1.4159155290577408, - "2049": 0.9154169210317497, - "2050": 0.5918348390944693 - }, - "approximatedHistoricalEmission": { - "2021": 52284.4338444058, - "2022": 51536.55996318464, - "2023": 50659.67092035944, - "2024": 49782.781877534 - }, - "totalApproximatedHistoricalEmission": 153229.83874451398, - "trend": { - "2024": 49782.781877534, - "2025": 48905.89283470879, - "2026": 48029.003791883355, - "2027": 47152.11474905815, - "2028": 46275.22570623271, - "2029": 45398.33666340751, - "2030": 44521.44762058207, - "2031": 43644.55857775686, - "2032": 42767.66953493166, - "2033": 41890.78049210622, - "2034": 41013.891449281015, - "2035": 40137.00240645558, - "2036": 39260.11336363037, - "2037": 38383.22432080493, - "2038": 37506.33527797973, - "2039": 36629.44623515429, - "2040": 35752.557192329085, - "2041": 34875.66814950365, - "2042": 33998.77910667844, - "2043": 33121.890063853, - "2044": 32245.001021027798, - "2045": 31368.11197820236, - "2046": 30491.222935377154, - "2047": 29614.333892551716, - "2048": 28737.44484972651, - "2049": 27860.555806901306, - "2050": 26983.666764075868 - }, - "trendEmission": 997963.8323409292, - "historicalEmissionChangePercent": -1.3549916450790163, - "neededEmissionChangePercent": 35.34805556932208, - "hitNetZero": "2080-09-24", - "budgetRunsOut": "2026-05-05", - "electricCarChangePercent": 0.059634440124409514, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.005319148936170213, - "2018": 0.022058823529411766, - "2019": 0.0425531914893617, - "2020": 0.140625, - "2021": 0.3106060606060606, - "2022": 0.43283582089552236 - }, - "climatePlanLink": "https://degerfors.se/download/18.53e66ade178ef85bf04d94/1624438767997/Energi-%20och%20klimatprogram%20-2021-06-04.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Energi– och klimatprogram 2021–2030. Status oklart, vattenstämplat \"Samrådsunderlag\".", - "bicycleMetrePerCapita": 4.576541722, - "totalConsumptionEmission": 6230.0, - "electricVehiclePerChargePoints": 21.666666666666668 - }, - { - "kommun": "Dorotea", - "län": "Västerbottens län", - "emissions": { - "1990": 18147.3241460067, - "2000": 18858.4763029629, - "2005": 13580.8296140668, - "2010": 13423.5679479049, - "2015": 11713.8879008829, - "2016": 10689.8194355143, - "2017": 11978.783450517, - "2018": 13040.2546229626, - "2019": 12512.7952662657, - "2020": 11875.9936139887, - "2021": 11311.794475375 - }, - "budget": 24623.811190934724, - "emissionBudget": { - "2024": 12239.064087109626, - "2025": 7445.359737390889, - "2026": 4529.21736699987, - "2027": 2755.247655061188, - "2028": 1676.093025702733, - "2029": 1019.6135456821409, - "2030": 620.2589991105241, - "2031": 377.3206305534155, - "2032": 229.53453064831393, - "2033": 139.6321761751196, - "2034": 84.94209811626384, - "2035": 51.6726175157802, - "2036": 31.4338762538864, - "2037": 19.1220925869082, - "2038": 11.632495526449144, - "2039": 7.076367377569428, - "2040": 4.3047491527911514, - "2041": 2.6186974586982323, - "2042": 1.593025780781256, - "2043": 0.9690814529965802, - "2044": 0.5895189355199236, - "2045": 0.3586206033165831, - "2046": 0.21815878909762906, - "2047": 0.13271199931178942, - "2048": 0.08073236395463554, - "2049": 0.049111720292836766, - "2050": 0.029876011948283085 - }, - "approximatedHistoricalEmission": { - "2021": 11311.794475375, - "2022": 12117.62980881147, - "2023": 12178.346947960541, - "2024": 12239.064087109626 - }, - "totalApproximatedHistoricalEmission": 36071.40603801432, - "trend": { - "2024": 12239.064087109626, - "2025": 12299.781226258696, - "2026": 12360.498365407766, - "2027": 12421.21550455685, - "2028": 12481.93264370592, - "2029": 12542.649782855005, - "2030": 12603.366922004076, - "2031": 12664.08406115316, - "2032": 12724.80120030223, - "2033": 12785.5183394513, - "2034": 12846.235478600385, - "2035": 12906.952617749455, - "2036": 12967.66975689854, - "2037": 13028.38689604761, - "2038": 13089.104035196695, - "2039": 13149.821174345765, - "2040": 13210.53831349485, - "2041": 13271.25545264392, - "2042": 13331.97259179299, - "2043": 13392.689730942075, - "2044": 13453.406870091145, - "2045": 13514.12400924023, - "2046": 13574.8411483893, - "2047": 13635.558287538384, - "2048": 13696.275426687454, - "2049": 13756.992565836525, - "2050": 13817.70970498561 - }, - "trendEmission": 338738.05929723795, - "historicalEmissionChangePercent": -0.28467183978820093, - "neededEmissionChangePercent": 39.16724608679466, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2026-01-01", - "electricCarChangePercent": 0.03745039682539682, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.0625, - "2018": 0.0, - "2019": 0.0, - "2020": 0.1111111111111111, - "2021": 0.2, - "2022": 0.2857142857142857 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.000001742, - "totalConsumptionEmission": 6529.4, - "electricVehiclePerChargePoints": 1.1111111111111112 - }, - { - "kommun": "Eda", - "län": "Värmlands län", - "emissions": { - "1990": 65058.4488859165, - "2000": 56836.4605431543, - "2005": 52475.2762858575, - "2010": 39603.7371275617, - "2015": 54373.5712939959, - "2016": 55631.5805948473, - "2017": 55136.287591058, - "2018": 51463.6105548356, - "2019": 52963.1902786932, - "2020": 50721.4225511536, - "2021": 54733.137085012 - }, - "budget": 111093.85001057097, - "emissionBudget": { - "2024": 51235.81798707682, - "2025": 32305.737602038946, - "2026": 20369.747629969235, - "2027": 12843.743845751089, - "2028": 8098.370140460995, - "2029": 5106.268057004757, - "2030": 3219.6569208064016, - "2031": 2030.0913645683477, - "2032": 1280.034193041523, - "2033": 807.100391614074, - "2034": 508.90128223509106, - "2035": 320.8776971878302, - "2036": 202.32312266998872, - "2037": 127.57086679967539, - "2038": 80.43730168481905, - "2039": 50.71815897037592, - "2040": 31.979337887583593, - "2041": 20.163942707888467, - "2042": 12.713977598794202, - "2043": 8.016548584984928, - "2044": 5.054677084024351, - "2045": 3.187127247206591, - "2046": 2.00958041849815, - "2047": 1.2671014192956156, - "2048": 0.7989458854206295, - "2049": 0.5037596186936582, - "2050": 0.31763572234028514 - }, - "approximatedHistoricalEmission": { - "2021": 54733.137085012, - "2022": 52015.440560412826, - "2023": 51625.62927374488, - "2024": 51235.81798707682 - }, - "totalApproximatedHistoricalEmission": 156625.5473702021, - "trend": { - "2024": 51235.81798707682, - "2025": 50846.00670040888, - "2026": 50456.19541374082, - "2027": 50066.38412707287, - "2028": 49676.57284040481, - "2029": 49286.76155373675, - "2030": 48896.95026706881, - "2031": 48507.13898040075, - "2032": 48117.327693732805, - "2033": 47727.516407064744, - "2034": 47337.7051203968, - "2035": 46947.89383372874, - "2036": 46558.082547060796, - "2037": 46168.271260392736, - "2038": 45778.45997372479, - "2039": 45388.64868705673, - "2040": 44998.83740038867, - "2041": 44609.02611372073, - "2042": 44219.21482705267, - "2043": 43829.40354038472, - "2044": 43439.59225371666, - "2045": 43049.78096704872, - "2046": 42659.96968038066, - "2047": 42270.158393712714, - "2048": 41880.347107044654, - "2049": 41490.53582037659, - "2050": 41100.72453370865 - }, - "trendEmission": 1200375.0527702116, - "historicalEmissionChangePercent": 0.22545456203236502, - "neededEmissionChangePercent": 36.94696626061985, - "hitNetZero": "2155-05-08", - "budgetRunsOut": "2026-03-10", - "electricCarChangePercent": 0.04019340700337465, - "electricCarChangeYearly": { - "2015": 0.017341040462427744, - "2016": 0.0, - "2017": 0.0055248618784530384, - "2018": 0.0, - "2019": 0.03937007874015748, - "2020": 0.1171875, - "2021": 0.21904761904761905, - "2022": 0.2897196261682243 - }, - "climatePlanLink": "https://eda.se/Userfiles/Filarkiv/1294/Dokument/Hallbarhetsstrategi_KF_2020-12-16_T.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Hållbarhetsstrategi.", - "bicycleMetrePerCapita": 2.101732193, - "totalConsumptionEmission": 6451.3, - "electricVehiclePerChargePoints": 2.183333333333333 - }, - { - "kommun": "Ekerö", - "län": "Stockholms län", - "emissions": { - "1990": 88432.8579661668, - "2000": 77156.5751207799, - "2005": 66312.8369449965, - "2010": 55667.9298192357, - "2015": 48666.1780178723, - "2016": 47380.3512850067, - "2017": 44473.261520818, - "2018": 44615.8778222065, - "2019": 43867.6415060195, - "2020": 38769.7004600732, - "2021": 41621.0163834535 - }, - "budget": 91652.49055209103, - "emissionBudget": { - "2024": 35850.059591938276, - "2025": 24244.58222523074, - "2026": 16396.061093526187, - "2027": 11088.28425605443, - "2028": 7498.755160872758, - "2029": 5071.238044065508, - "2030": 3429.5632738840063, - "2031": 2319.3358598770687, - "2032": 1568.5142396628194, - "2033": 1060.7506064927707, - "2034": 717.3615774228874, - "2035": 485.135365101637, - "2036": 328.0860445827243, - "2037": 221.87715098318245, - "2038": 150.05048505195143, - "2039": 101.47573990632533, - "2040": 68.6257414360972, - "2041": 46.41003250630657, - "2042": 31.386052407784746, - "2043": 21.22567540995257, - "2044": 14.354442882945019, - "2045": 9.70758416399393, - "2046": 6.56501900279195, - "2047": 4.439773457424991, - "2048": 3.00251809551086, - "2049": 2.030534891097527, - "2050": 1.3732046944626093 - }, - "approximatedHistoricalEmission": { - "2021": 41621.0163834535, - "2022": 38633.08863250399, - "2023": 37241.57411222113, - "2024": 35850.059591938276 - }, - "totalApproximatedHistoricalEmission": 114610.20073242101, - "trend": { - "2024": 35850.059591938276, - "2025": 34458.54507165542, - "2026": 33067.03055137256, - "2027": 31675.516031089704, - "2028": 30284.001510806847, - "2029": 28892.48699052399, - "2030": 27500.972470240667, - "2031": 26109.45794995781, - "2032": 24717.943429674953, - "2033": 23326.428909392096, - "2034": 21934.91438910924, - "2035": 20543.399868826382, - "2036": 19151.885348543525, - "2037": 17760.370828260668, - "2038": 16368.85630797781, - "2039": 14977.341787694953, - "2040": 13585.827267412096, - "2041": 12194.31274712924, - "2042": 10802.798226845916, - "2043": 9411.28370656306, - "2044": 8019.769186280202, - "2045": 6628.254665997345, - "2046": 5236.740145714488, - "2047": 3845.2256254316308, - "2048": 2453.7111051487736, - "2049": 1062.1965848659165, - "2050": 0 - }, - "trendEmission": 461934.30050248443, - "historicalEmissionChangePercent": -2.4001428015437347, - "neededEmissionChangePercent": 32.372267992874676, - "hitNetZero": "2049-09-29", - "budgetRunsOut": "2026-09-12", - "electricCarChangePercent": 0.09099684043102808, - "electricCarChangeYearly": { - "2015": 0.03741496598639456, - "2016": 0.0464, - "2017": 0.06019417475728155, - "2018": 0.10674157303370786, - "2019": 0.19585987261146498, - "2020": 0.3673469387755102, - "2021": 0.5270049099836334, - "2022": 0.64171974522293 - }, - "climatePlanLink": "https://medborgare.ekero.se/welcome-sv/namnder-styrelser/kommunfullmaktige/mote-2020-04-21/agenda/energistrategi-for-ekero-kommun-2020-03-23pdf?downloadMode=open", - "climatePlanYear": 2020, - "climatePlanComment": "Energistrategi 2020–2030. Särskild klimatplan saknas.", - "bicycleMetrePerCapita": 2.383422446, - "totalConsumptionEmission": 6275.4, - "electricVehiclePerChargePoints": 119.21428571428571 - }, - { - "kommun": "Eksjö", - "län": "Jönköpings län", - "emissions": { - "1990": 86943.1743978703, - "2000": 76505.1950563931, - "2005": 74167.0454051176, - "2010": 81017.7737426754, - "2015": 72284.5187380159, - "2016": 75052.9097222599, - "2017": 75190.5206052346, - "2018": 70123.2657533242, - "2019": 68877.0914653776, - "2020": 64748.9372031957, - "2021": 66296.8699431275 - }, - "budget": 145916.34077687195, - "emissionBudget": { - "2024": 60749.66179808043, - "2025": 40062.045079008916, - "2026": 26419.36446077889, - "2027": 17422.545881892198, - "2028": 11489.493074569204, - "2029": 7576.87493007404, - "2030": 4996.655059834921, - "2031": 3295.1001590216224, - "2032": 2172.9907163819785, - "2033": 1433.0030729276173, - "2034": 945.0099310313939, - "2035": 623.1973863974182, - "2036": 410.9744984253199, - "2037": 271.0217373219761, - "2038": 178.72832105754046, - "2039": 117.86439369657559, - "2040": 77.72699491195303, - "2041": 51.25793760578518, - "2042": 33.80262122026958, - "2043": 22.291517269942947, - "2044": 14.700390805734138, - "2045": 9.694337412047584, - "2046": 6.393039416473671, - "2047": 4.215961467340091, - "2048": 2.780263022983285, - "2049": 1.8334755990654328, - "2050": 1.2091060250699732 - }, - "approximatedHistoricalEmission": { - "2021": 66296.8699431275, - "2022": 63955.68469541287, - "2023": 62352.67324674642, - "2024": 60749.66179808043 - }, - "totalApproximatedHistoricalEmission": 189831.62381276325, - "trend": { - "2024": 60749.66179808043, - "2025": 59146.65034941444, - "2026": 57543.638900748454, - "2027": 55940.627452082, - "2028": 54337.61600341601, - "2029": 52734.604554750025, - "2030": 51131.59310608357, - "2031": 49528.581657417584, - "2032": 47925.5702087516, - "2033": 46322.55876008514, - "2034": 44719.547311419155, - "2035": 43116.53586275317, - "2036": 41513.52441408718, - "2037": 39910.51296542073, - "2038": 38307.50151675474, - "2039": 36704.49006808875, - "2040": 35101.4786194223, - "2041": 33498.46717075631, - "2042": 31895.455722090323, - "2043": 30292.44427342387, - "2044": 28689.43282475788, - "2045": 27086.421376091894, - "2046": 25483.409927425906, - "2047": 23880.398478759453, - "2048": 22277.387030093465, - "2049": 20674.375581427477, - "2050": 19071.364132761024 - }, - "trendEmission": 1037673.3371009422, - "historicalEmissionChangePercent": -1.350995714705207, - "neededEmissionChangePercent": 34.0538796542324, - "hitNetZero": "2061-11-14", - "budgetRunsOut": "2026-06-26", - "electricCarChangePercent": 0.059804570479512535, - "electricCarChangeYearly": { - "2015": 0.005319148936170213, - "2016": 0.008287292817679558, - "2017": 0.013550135501355014, - "2018": 0.016129032258064516, - "2019": 0.05352112676056338, - "2020": 0.19727891156462585, - "2021": 0.2703488372093023, - "2022": 0.45170454545454547 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Ny plan antas under 2023.", - "bicycleMetrePerCapita": 3.939870961, - "totalConsumptionEmission": 6054.3, - "electricVehiclePerChargePoints": 45.333333333333336 - }, - { - "kommun": "Emmaboda", - "län": "Kalmar län", - "emissions": { - "1990": 51740.2708597393, - "2000": 49917.3334331203, - "2005": 45916.3975636988, - "2010": 34678.5773321711, - "2015": 30029.1167464135, - "2016": 29529.8970730771, - "2017": 28631.6000430844, - "2018": 27797.4096084832, - "2019": 27735.5915754512, - "2020": 24547.163849051, - "2021": 24807.5654940032 - }, - "budget": 57196.03350726003, - "emissionBudget": { - "2024": 21898.450197170256, - "2025": 14932.637878711612, - "2026": 10182.623519428194, - "2027": 6943.57035780193, - "2028": 4734.847480293864, - "2029": 3228.710808187458, - "2030": 2201.6703867005067, - "2031": 1501.3275513501862, - "2032": 1023.7610634446693, - "2033": 698.106628418819, - "2034": 476.0416097507021, - "2035": 324.6146147148239, - "2036": 221.35596117666535, - "2037": 150.94348599027435, - "2038": 102.92894685005646, - "2039": 70.1876469206785, - "2040": 47.861227876335974, - "2041": 32.636756385626605, - "2042": 22.255130397550577, - "2043": 15.175859486762842, - "2044": 10.348477274584631, - "2045": 7.056666674859817, - "2046": 4.811968296280174, - "2047": 3.281299790862737, - "2048": 2.2375310173674765, - "2049": 1.5257810540880774, - "2050": 1.0404360015322143 - }, - "approximatedHistoricalEmission": { - "2021": 24807.5654940032, - "2022": 23793.173673806945, - "2023": 22845.8119354886, - "2024": 21898.450197170256 - }, - "totalApproximatedHistoricalEmission": 69991.99345488226, - "trend": { - "2024": 21898.450197170256, - "2025": 20951.08845885168, - "2026": 20003.726720533334, - "2027": 19056.36498221499, - "2028": 18109.00324389641, - "2029": 17161.641505578067, - "2030": 16214.27976725949, - "2031": 15266.918028941145, - "2032": 14319.5562906228, - "2033": 13372.194552304223, - "2034": 12424.832813985879, - "2035": 11477.471075667534, - "2036": 10530.109337348957, - "2037": 9582.747599030612, - "2038": 8635.385860712267, - "2039": 7688.02412239369, - "2040": 6740.6623840753455, - "2041": 5793.300645757001, - "2042": 4845.9389074384235, - "2043": 3898.577169120079, - "2044": 2951.2154308015015, - "2045": 2003.853692483157, - "2046": 1056.4919541648123, - "2047": 109.13021584623493, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 253141.73985761276, - "historicalEmissionChangePercent": -3.0458898309553963, - "neededEmissionChangePercent": 31.809613263676418, - "hitNetZero": "2047-02-06", - "budgetRunsOut": "2026-10-12", - "electricCarChangePercent": 0.05328922529549373, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.009615384615384616, - "2017": 0.015306122448979591, - "2018": 0.024539877300613498, - "2019": 0.007462686567164179, - "2020": 0.11764705882352941, - "2021": 0.28688524590163933, - "2022": 0.4 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.326560451, - "totalConsumptionEmission": 5993.2, - "electricVehiclePerChargePoints": 5.5625 - }, - { - "kommun": "Enköping", - "län": "Uppsala län", - "emissions": { - "1990": 211001.646452488, - "2000": 187609.477783717, - "2005": 186630.06554984, - "2010": 200300.254678354, - "2015": 178793.3990349, - "2016": 173353.080446327, - "2017": 166792.171631342, - "2018": 167906.257726478, - "2019": 166039.827620591, - "2020": 151851.612280385, - "2021": 148655.679597746 - }, - "budget": 341671.92239182827, - "emissionBudget": { - "2024": 136019.91005094722, - "2025": 91350.18814960498, - "2026": 61350.26020707266, - "2027": 41202.481392938425, - "2028": 27671.34918752515, - "2029": 18583.91873430178, - "2030": 12480.852783240129, - "2031": 8382.068842638284, - "2032": 5629.349156098905, - "2033": 3780.6384695949437, - "2034": 2539.055020649366, - "2035": 1705.2147275471866, - "2036": 1145.2123894109875, - "2037": 769.1180445919127, - "2038": 516.535248820643, - "2039": 346.902097994294, - "2040": 232.97745094377657, - "2041": 156.46631416207987, - "2042": 105.08187538447545, - "2043": 70.57238226293275, - "2044": 47.396005448541, - "2045": 31.830884270120688, - "2046": 21.377438537892758, - "2047": 14.35696459335749, - "2048": 9.642054728379012, - "2049": 6.475548419759282, - "2050": 4.348941021173452 - }, - "approximatedHistoricalEmission": { - "2021": 148655.679597746, - "2022": 145603.3699548114, - "2023": 140811.64000288025, - "2024": 136019.91005094722 - }, - "totalApproximatedHistoricalEmission": 428752.80478203826, - "trend": { - "2024": 136019.91005094722, - "2025": 131228.18009901606, - "2026": 126436.45014708303, - "2027": 121644.72019515187, - "2028": 116852.9902432207, - "2029": 112061.26029128768, - "2030": 107269.53033935651, - "2031": 102477.80038742349, - "2032": 97686.07043549232, - "2033": 92894.3404835593, - "2034": 88102.61053162813, - "2035": 83310.88057969697, - "2036": 78519.15062776394, - "2037": 73727.42067583278, - "2038": 68935.69072389975, - "2039": 64143.96077196859, - "2040": 59352.23082003556, - "2041": 54560.5008681044, - "2042": 49768.770916173235, - "2043": 44977.04096424021, - "2044": 40185.311012309045, - "2045": 35393.58106037602, - "2046": 30601.851108444855, - "2047": 25810.12115651183, - "2048": 21018.391204580665, - "2049": 16226.661252649501, - "2050": 11434.931300716475 - }, - "trendEmission": 1916912.9375716383, - "historicalEmissionChangePercent": -2.9868093219849166, - "neededEmissionChangePercent": 32.84057597495167, - "hitNetZero": "2052-05-14", - "budgetRunsOut": "2026-08-20", - "electricCarChangePercent": 0.07283663159432276, - "electricCarChangeYearly": { - "2015": 0.011739594450373533, - "2016": 0.016120906801007556, - "2017": 0.031081888822474597, - "2018": 0.06463414634146342, - "2019": 0.0779848171152519, - "2020": 0.25, - "2021": 0.3940754039497307, - "2022": 0.5200823892893924 - }, - "climatePlanLink": "https://enkoping.se/download/18.1f87c14f1764bd37b954dfb9/1670497202700/klimatkontrakt-2030.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatkontrakt 2030 via Viable Cities.", - "bicycleMetrePerCapita": 2.661227955, - "totalConsumptionEmission": 6128.2, - "electricVehiclePerChargePoints": 27.04225352112676 - }, - { - "kommun": "Eskilstuna", - "län": "Södermanlands län", - "emissions": { - "1990": 292098.829129947, - "2000": 305940.84618386, - "2005": 251556.616396655, - "2010": 250157.880042685, - "2015": 187003.231990906, - "2016": 184218.756810719, - "2017": 206248.059375782, - "2018": 177052.750172343, - "2019": 174441.040127764, - "2020": 158545.127982012, - "2021": 164615.166399523 - }, - "budget": 370919.5564353831, - "emissionBudget": { - "2024": 146663.77461995557, - "2025": 98764.36256067734, - "2026": 66508.57948592378, - "2027": 44787.32035067674, - "2028": 30160.079792693265, - "2029": 20309.998588425933, - "2030": 13676.888307231753, - "2031": 9210.107669583547, - "2032": 6202.147840928794, - "2033": 4176.567660308041, - "2034": 2812.528476992694, - "2035": 1893.9754069041994, - "2036": 1275.4156522509202, - "2037": 858.8733940666858, - "2038": 578.3710633735452, - "2039": 389.4789258332442, - "2040": 262.2777024552578, - "2041": 176.61955151499285, - "2042": 118.93678221723289, - "2043": 80.09282122420443, - "2044": 53.935039203733524, - "2045": 36.32021458908432, - "2046": 24.45827438474946, - "2047": 16.470364854602945, - "2048": 11.09125338020114, - "2049": 7.468923890258837, - "2050": 5.029623088230947 - }, - "approximatedHistoricalEmission": { - "2021": 164615.166399523, - "2022": 157400.80845420994, - "2023": 152032.29153708182, - "2024": 146663.77461995557 - }, - "totalApproximatedHistoricalEmission": 465072.57050103106, - "trend": { - "2024": 146663.77461995557, - "2025": 141295.25770282745, - "2026": 135926.74078569934, - "2027": 130558.22386857122, - "2028": 125189.7069514431, - "2029": 119821.19003431499, - "2030": 114452.67311718687, - "2031": 109084.15620005876, - "2032": 103715.63928293064, - "2033": 98347.12236580253, - "2034": 92978.60544867627, - "2035": 87610.08853154816, - "2036": 82241.57161442004, - "2037": 76873.05469729193, - "2038": 71504.53778016381, - "2039": 66136.0208630357, - "2040": 60767.50394590758, - "2041": 55398.98702877946, - "2042": 50030.470111651346, - "2043": 44661.95319452323, - "2044": 39293.43627739698, - "2045": 33924.91936026886, - "2046": 28556.402443140745, - "2047": 23187.88552601263, - "2048": 17819.368608884513, - "2049": 12450.851691756397, - "2050": 7082.334774628282 - }, - "trendEmission": 1998699.4221295845, - "historicalEmissionChangePercent": -1.7408671444131085, - "neededEmissionChangePercent": 32.659334033505, - "hitNetZero": "2051-04-20", - "budgetRunsOut": "2026-08-29", - "electricCarChangePercent": 0.07440516778597488, - "electricCarChangeYearly": { - "2015": 0.019044544867656554, - "2016": 0.01537551744529864, - "2017": 0.04335352247370099, - "2018": 0.04653498493471711, - "2019": 0.09297590770274856, - "2020": 0.26096687555953446, - "2021": 0.42340511986997154, - "2022": 0.5205595591352268 - }, - "climatePlanLink": "https://www.eskilstuna.se/download/18.4e2a3bf1184b408adc47d8/1669619809640/Klimatprogram%20f%C3%B6r%20Eskilstuna%20kommunkoncern.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatprogram. Gäller tills vidare.", - "bicycleMetrePerCapita": 2.152677677, - "totalConsumptionEmission": 5961.4, - "electricVehiclePerChargePoints": 26.157232704402517 - }, - { - "kommun": "Eslöv", - "län": "Skåne län", - "emissions": { - "1990": 207177.008862242, - "2000": 207019.375502061, - "2005": 189896.954509132, - "2010": 232821.220498624, - "2015": 193418.142375857, - "2016": 212969.932471284, - "2017": 178387.661176346, - "2018": 184764.516137216, - "2019": 159966.186076734, - "2020": 211351.946050097, - "2021": 206371.803466873 - }, - "budget": 399093.0376185595, - "emissionBudget": { - "2024": 196147.92725014058, - "2025": 119987.17872049163, - "2026": 73398.29311039983, - "2027": 44899.04245577624, - "2028": 27465.54351629685, - "2029": 16801.1618819846, - "2030": 10277.56980003546, - "2031": 6286.972397299694, - "2032": 3845.8529295779513, - "2033": 2352.5766969004017, - "2034": 1439.113043619736, - "2035": 880.3310663771906, - "2036": 538.5141840418057, - "2037": 329.4187124482986, - "2038": 201.51129037423942, - "2039": 123.26804341652007, - "2040": 75.40525644750453, - "2041": 46.126737654959044, - "2042": 28.216546523791212, - "2043": 17.260563790244046, - "2044": 10.558594125113169, - "2045": 6.45887997945274, - "2046": 3.9510118577011184, - "2047": 2.41690428516331, - "2048": 1.478463374453038, - "2049": 0.9044023642216223, - "2050": 0.5532390254254755 - }, - "approximatedHistoricalEmission": { - "2021": 206371.803466873, - "2022": 194919.10329792276, - "2023": 195533.51527403155, - "2024": 196147.92725014058 - }, - "totalApproximatedHistoricalEmission": 591712.4839304611, - "trend": { - "2024": 196147.92725014058, - "2025": 196762.3392262496, - "2026": 197376.75120235863, - "2027": 197991.16317846766, - "2028": 198605.57515457645, - "2029": 199219.98713068548, - "2030": 199834.3991067945, - "2031": 200448.81108290353, - "2032": 201063.22305901255, - "2033": 201677.63503512158, - "2034": 202292.04701123037, - "2035": 202906.4589873394, - "2036": 203520.87096344843, - "2037": 204135.28293955745, - "2038": 204749.69491566648, - "2039": 205364.1068917755, - "2040": 205978.5188678843, - "2041": 206592.93084399332, - "2042": 207207.34282010235, - "2043": 207821.75479621137, - "2044": 208436.1667723204, - "2045": 209050.57874842943, - "2046": 209664.99072453822, - "2047": 210279.40270064725, - "2048": 210893.81467675627, - "2049": 211508.2266528653, - "2050": 212122.63862897432 - }, - "trendEmission": 5307517.356428494, - "historicalEmissionChangePercent": 2.2983588011115548, - "neededEmissionChangePercent": 38.82821990391151, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2026-01-11", - "electricCarChangePercent": 0.05901942847303372, - "electricCarChangeYearly": { - "2015": 0.012711864406779662, - "2016": 0.011029411764705883, - "2017": 0.01954022988505747, - "2018": 0.051899907321594066, - "2019": 0.04864864864864865, - "2020": 0.2139240506329114, - "2021": 0.3250620347394541, - "2022": 0.41379310344827586 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.499086285, - "totalConsumptionEmission": 5919.6, - "electricVehiclePerChargePoints": 53.17391304347826 - }, - { - "kommun": "Essunga", - "län": "Västra Götalands län", - "emissions": { - "1990": 27771.6855421736, - "2000": 24768.4171478364, - "2005": 22523.6300144481, - "2010": 22456.3938120138, - "2015": 19320.8771928621, - "2016": 18720.5334283488, - "2017": 19485.8212925422, - "2018": 17533.044386155, - "2019": 17115.4794938808, - "2020": 15209.9313819166, - "2021": 14794.4064289437 - }, - "budget": 36193.68474401221, - "emissionBudget": { - "2024": 12531.95090424642, - "2025": 8864.322939311533, - "2026": 6270.070938897415, - "2027": 4435.058362377228, - "2028": 3137.084551255665, - "2029": 2218.978574264339, - "2030": 1569.5674861786395, - "2031": 1110.2144573369187, - "2032": 785.2966834072304, - "2033": 555.4700507590738, - "2034": 392.90497949331717, - "2035": 277.9165549964124, - "2036": 196.5808925116654, - "2037": 139.04910163117776, - "2038": 98.35468960082294, - "2039": 69.569992563729, - "2040": 49.20948746786358, - "2041": 34.80773200646185, - "2042": 24.620825571997543, - "2043": 17.415241295646414, - "2044": 12.318458960634349, - "2045": 8.713312011517568, - "2046": 6.1632551971538705, - "2047": 4.359503547564156, - "2048": 3.0836417726140724, - "2049": 2.1811764752717, - "2050": 1.542828631564947 - }, - "approximatedHistoricalEmission": { - "2021": 14794.4064289437, - "2022": 14172.733631623443, - "2023": 13352.342267934931, - "2024": 12531.95090424642 - }, - "totalApproximatedHistoricalEmission": 41188.25456615344, - "trend": { - "2024": 12531.95090424642, - "2025": 11711.559540557675, - "2026": 10891.168176869163, - "2027": 10070.776813180419, - "2028": 9250.385449491907, - "2029": 8429.994085803395, - "2030": 7609.6027221146505, - "2031": 6789.211358426139, - "2032": 5968.819994737394, - "2033": 5148.428631048882, - "2034": 4328.037267360371, - "2035": 3507.645903671626, - "2036": 2687.2545399831142, - "2037": 1866.8631762943696, - "2038": 1046.4718126058578, - "2039": 226.08044891734608, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 95798.27537318552, - "historicalEmissionChangePercent": -4.21463226731227, - "neededEmissionChangePercent": 29.266217151330526, - "hitNetZero": "2039-04-07", - "budgetRunsOut": "2027-03-25", - "electricCarChangePercent": 0.055320458141867195, - "electricCarChangeYearly": { - "2015": 0.010752688172043012, - "2016": 0.0, - "2017": 0.018867924528301886, - "2018": 0.07894736842105263, - "2019": 0.08571428571428572, - "2020": 0.11864406779661017, - "2021": 0.32, - "2022": 0.40229885057471265 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.015159633, - "totalConsumptionEmission": 5891.2, - "electricVehiclePerChargePoints": 15.5 - }, - { - "kommun": "Fagersta", - "län": "Västmanlands län", - "emissions": { - "1990": 86914.1580867396, - "2000": 70589.9431567096, - "2005": 64805.5253303079, - "2010": 53109.3182788031, - "2015": 43399.5656174835, - "2016": 41617.3346534417, - "2017": 38942.6861103624, - "2018": 37969.0829801268, - "2019": 34058.4254611897, - "2020": 30805.3689939101, - "2021": 31616.9086770801 - }, - "budget": 76549.19133713348, - "emissionBudget": { - "2024": 23660.732615631074, - "2025": 17369.659085798055, - "2026": 12751.298180747392, - "2027": 9360.897901978668, - "2028": 6871.9598811963915, - "2029": 5044.797315735145, - "2030": 3703.452929998442, - "2031": 2718.754143389281, - "2032": 1995.873643302789, - "2033": 1465.1974360082386, - "2034": 1075.6209611208492, - "2035": 789.6276799081392, - "2036": 579.6762013891778, - "2037": 425.548023463511, - "2038": 312.40047433329386, - "2039": 229.33735085726505, - "2040": 168.35960512055777, - "2041": 123.5950294637853, - "2042": 90.73275799866255, - "2043": 66.60812663551381, - "2044": 48.89791329784154, - "2045": 35.89660970300286, - "2046": 26.352179495287384, - "2047": 19.345486102932796, - "2048": 14.201779121369958, - "2049": 10.425715287743696, - "2050": 7.653656512481192 - }, - "approximatedHistoricalEmission": { - "2021": 31616.9086770801, - "2022": 28079.02995773405, - "2023": 25869.88128668256, - "2024": 23660.732615631074 - }, - "totalApproximatedHistoricalEmission": 81587.7318907722, - "trend": { - "2024": 23660.732615631074, - "2025": 21451.583944579586, - "2026": 19242.4352735281, - "2027": 17033.28660247568, - "2028": 14824.137931424193, - "2029": 12614.989260372706, - "2030": 10405.840589321218, - "2031": 8196.691918269731, - "2032": 5987.543247218244, - "2033": 3778.394576165825, - "2034": 1569.2459051143378, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 126934.51555628516, - "historicalEmissionChangePercent": -5.0416660017656945, - "neededEmissionChangePercent": 26.588667527889314, - "hitNetZero": "2034-09-14", - "budgetRunsOut": "2027-12-21", - "electricCarChangePercent": 0.059527359431176825, - "electricCarChangeYearly": { - "2015": 0.01037344398340249, - "2016": 0.006172839506172839, - "2017": 0.025974025974025976, - "2018": 0.03431372549019608, - "2019": 0.03278688524590164, - "2020": 0.16621253405994552, - "2021": 0.33691756272401435, - "2022": 0.42857142857142855 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.199243979, - "totalConsumptionEmission": 6185.6, - "electricVehiclePerChargePoints": 28.466666666666665 - }, - { - "kommun": "Falkenberg", - "län": "Hallands län", - "emissions": { - "1990": 238049.03768691, - "2000": 197916.784182596, - "2005": 188410.579902566, - "2010": 203333.281056215, - "2015": 163995.994383468, - "2016": 161206.871893451, - "2017": 164421.159200077, - "2018": 162078.519761916, - "2019": 163807.903383413, - "2020": 144834.451842323, - "2021": 151025.992624885 - }, - "budget": 329223.9067053982, - "emissionBudget": { - "2024": 143281.2487567896, - "2025": 92721.49725433845, - "2026": 60002.79958251616, - "2027": 38829.57096630731, - "2028": 25127.753903449942, - "2029": 16260.906327814379, - "2030": 10522.909274658656, - "2031": 6809.683136375374, - "2032": 4406.745625899103, - "2033": 2851.734305763506, - "2034": 1845.4408856443183, - "2035": 1194.2389077147484, - "2036": 772.8270137473239, - "2037": 500.11902084190524, - "2038": 323.64168249641773, - "2039": 209.4380223187374, - "2040": 135.53348522488128, - "2041": 87.70769229880995, - "2042": 56.75821938481745, - "2043": 36.72990798526321, - "2044": 23.769000423695033, - "2045": 15.381617110728689, - "2046": 9.953895440432726, - "2047": 6.441457600056824, - "2048": 4.168456084518207, - "2049": 2.6975301565911995, - "2050": 1.7456508592581186 - }, - "approximatedHistoricalEmission": { - "2021": 151025.992624885, - "2022": 148443.25598497968, - "2023": 145862.25237088464, - "2024": 143281.2487567896 - }, - "totalApproximatedHistoricalEmission": 441459.1290467016, - "trend": { - "2024": 143281.2487567896, - "2025": 140700.24514269456, - "2026": 138119.24152859952, - "2027": 135538.23791450355, - "2028": 132957.2343004085, - "2029": 130376.23068631347, - "2030": 127795.22707221843, - "2031": 125214.2234581234, - "2032": 122633.21984402742, - "2033": 120052.21622993238, - "2034": 117471.21261583734, - "2035": 114890.2090017423, - "2036": 112309.20538764726, - "2037": 109728.20177355129, - "2038": 107147.19815945625, - "2039": 104566.19454536121, - "2040": 101985.19093126617, - "2041": 99404.1873171702, - "2042": 96823.18370307516, - "2043": 94242.18008898012, - "2044": 91661.17647488508, - "2045": 89080.17286079004, - "2046": 86499.16924669407, - "2047": 83918.16563259903, - "2048": 81337.162018504, - "2049": 78756.15840440895, - "2050": 76175.15479031391 - }, - "trendEmission": 2852933.2461123415, - "historicalEmissionChangePercent": -1.2287414108364483, - "neededEmissionChangePercent": 35.28706787604357, - "hitNetZero": "2079-06-23", - "budgetRunsOut": "2026-05-07", - "electricCarChangePercent": 0.06571854867722164, - "electricCarChangeYearly": { - "2015": 0.033862433862433865, - "2016": 0.034220532319391636, - "2017": 0.061052631578947365, - "2018": 0.07461024498886415, - "2019": 0.11560044893378227, - "2020": 0.2593939393939394, - "2021": 0.36764705882352944, - "2022": 0.4934640522875817 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plans saknas. Har klimatinitiativ och koldioxidbudget. ", - "bicycleMetrePerCapita": 2.948644735, - "totalConsumptionEmission": 5960.6, - "electricVehiclePerChargePoints": 5.341040462427745 - }, - { - "kommun": "Falköping", - "län": "Västra Götalands län", - "emissions": { - "1990": 138436.654173052, - "2000": 127147.756436754, - "2005": 115760.434357096, - "2010": 110153.793402707, - "2015": 94598.4640023938, - "2016": 92011.2958870077, - "2017": 88622.0018218266, - "2018": 88351.3127185066, - "2019": 88241.0364754257, - "2020": 77582.0605507553, - "2021": 78304.915550821 - }, - "budget": 180023.6261868917, - "emissionBudget": { - "2024": 70075.85213518515, - "2025": 47480.49810402513, - "2026": 32170.821067681307, - "2027": 21797.617327039563, - "2028": 14769.163651013416, - "2029": 10006.974233822872, - "2030": 6780.311714504134, - "2031": 4594.058690633749, - "2032": 3112.744095207278, - "2033": 2109.0666129280894, - "2034": 1429.0162768654327, - "2035": 968.2423054012706, - "2036": 656.0409262973357, - "2037": 444.506188767179, - "2038": 301.179002608096, - "2039": 204.066431253938, - "2040": 138.26697081836602, - "2041": 93.68397879951631, - "2042": 63.47638797437524, - "2043": 43.00897423342798, - "2044": 29.14110149680233, - "2045": 19.74480469675806, - "2046": 13.378262745349495, - "2047": 9.064557326970826, - "2048": 6.141769009769446, - "2049": 4.161408572829878, - "2050": 2.819598275753467 - }, - "approximatedHistoricalEmission": { - "2021": 78304.915550821, - "2022": 75655.85794758704, - "2023": 72865.85504138656, - "2024": 70075.85213518515 - }, - "totalApproximatedHistoricalEmission": 222712.09683197667, - "trend": { - "2024": 70075.85213518515, - "2025": 67285.84922898468, - "2026": 64495.8463227842, - "2027": 61705.84341658279, - "2028": 58915.84051038232, - "2029": 56125.83760418184, - "2030": 53335.834697980434, - "2031": 50545.83179177996, - "2032": 47755.82888557948, - "2033": 44965.825979378074, - "2034": 42175.8230731776, - "2035": 39385.82016697712, - "2036": 36595.817260775715, - "2037": 33805.81435457524, - "2038": 31015.811448374763, - "2039": 28225.808542173356, - "2040": 25435.80563597288, - "2041": 22645.802729771473, - "2042": 19855.799823570997, - "2043": 17065.79691737052, - "2044": 14275.794011169113, - "2045": 11485.791104968637, - "2046": 8695.788198768161, - "2047": 5905.785292566754, - "2048": 3115.782386366278, - "2049": 325.77948016580194, - "2050": 0 - }, - "trendEmission": 880183.2849319708, - "historicalEmissionChangePercent": -2.9993954006946755, - "neededEmissionChangePercent": 32.244137377838406, - "hitNetZero": "2049-02-05", - "budgetRunsOut": "2026-09-19", - "electricCarChangePercent": 0.060342276769392376, - "electricCarChangeYearly": { - "2015": 0.005649717514124294, - "2016": 0.015432098765432098, - "2017": 0.027056277056277056, - "2018": 0.033236994219653176, - "2019": 0.07579462102689487, - "2020": 0.18666666666666668, - "2021": 0.30409356725146197, - "2022": 0.4490861618798956 - }, - "climatePlanLink": "https://www.falkoping.se/download/18.1adde54a17861a73b1e11aae/1626330208751/Klimatstrategi%202021-2030.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Klimatstrategi 2021–2030. Kommunen står även bakom Västra Götalandsregionens kraftsamling för klimatet, Klimat 2030", - "bicycleMetrePerCapita": 3.429514807, - "totalConsumptionEmission": 5721.4, - "electricVehiclePerChargePoints": 40.84615384615385 - }, - { - "kommun": "Falun", - "län": "Dalarnas län", - "emissions": { - "1990": 183924.184500519, - "2000": 206775.787657648, - "2005": 224429.521372378, - "2010": 151294.917729408, - "2015": 126726.418359808, - "2016": 125606.797492231, - "2017": 108831.713339335, - "2018": 103674.334207622, - "2019": 101489.311791759, - "2020": 92888.2394794106, - "2021": 94224.9197475128 - }, - "budget": 223193.74461059953, - "emissionBudget": { - "2024": 71145.10204321891, - "2025": 51726.07940599664, - "2026": 37607.469999693254, - "2027": 27342.528488905045, - "2028": 19879.398007169373, - "2029": 14453.325532340896, - "2030": 10508.29702531633, - "2031": 7640.062221333457, - "2032": 5554.710778085343, - "2033": 4038.555045012739, - "2034": 2936.233316763203, - "2035": 2134.7897934725443, - "2036": 1552.0999085108056, - "2037": 1128.4549576568106, - "2038": 820.4436998401948, - "2039": 596.5039721259145, - "2040": 433.6884893275425, - "2041": 315.3134171175367, - "2042": 229.24876601751114, - "2043": 166.675421556708, - "2044": 121.18144247277786, - "2045": 88.10502389992104, - "2046": 64.056798450385, - "2047": 46.5725249944223, - "2048": 33.86057587683034, - "2049": 24.618347380733553, - "2050": 17.898780870209006 - }, - "approximatedHistoricalEmission": { - "2021": 94224.9197475128, - "2022": 83308.24585822597, - "2023": 77226.67395072244, - "2024": 71145.10204321891 - }, - "totalApproximatedHistoricalEmission": 243219.93070431426, - "trend": { - "2024": 71145.10204321891, - "2025": 65063.53013571352, - "2026": 58981.95822820999, - "2027": 52900.38632070646, - "2028": 46818.81441320293, - "2029": 40737.242505699396, - "2030": 34655.670598195866, - "2031": 28574.098690692335, - "2032": 22492.526783188805, - "2033": 16410.954875685275, - "2034": 10329.382968181744, - "2035": 4247.811060678214, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 416784.927601764, - "historicalEmissionChangePercent": -4.686834235151939, - "neededEmissionChangePercent": 27.294953664449984, - "hitNetZero": "2035-09-09", - "budgetRunsOut": "2027-09-25", - "electricCarChangePercent": 0.07338052290831522, - "electricCarChangeYearly": { - "2015": 0.0176678445229682, - "2016": 0.028381642512077296, - "2017": 0.033408833522083806, - "2018": 0.056958624395486296, - "2019": 0.08071505958829903, - "2020": 0.27162629757785467, - "2021": 0.41537267080745344, - "2022": 0.5163249810174639 - }, - "climatePlanLink": "https://www.falun.se/download/18.7eb630aa16a59ef02cf6d5b8/1557238559519/energi_och_klimatprogram_2013_webb.pdf", - "climatePlanYear": 2012, - "climatePlanComment": "Energi– och klimatprogram, vision 2050", - "bicycleMetrePerCapita": 3.120604367, - "totalConsumptionEmission": 6238.4, - "electricVehiclePerChargePoints": 23.121739130434783 - }, - { - "kommun": "Filipstad", - "län": "Värmlands län", - "emissions": { - "1990": 80898.3011829295, - "2000": 68139.5277028786, - "2005": 64565.6430873131, - "2010": 58212.4632278906, - "2015": 46606.7936270816, - "2016": 43672.1766447972, - "2017": 47248.3659373472, - "2018": 44386.0394981695, - "2019": 43251.0075129882, - "2020": 39585.6758114165, - "2021": 39073.6294879557 - }, - "budget": 90002.37661979141, - "emissionBudget": { - "2024": 35952.701393858064, - "2025": 24112.739555555283, - "2026": 16171.919948506773, - "2027": 10846.175077632675, - "2028": 7274.3072058999605, - "2029": 4878.728671357353, - "2030": 3272.063273519607, - "2031": 2194.5057385077175, - "2032": 1471.8099968657114, - "2033": 987.1127830118579, - "2034": 662.036301194059, - "2035": 444.0141710670621, - "2036": 297.79119929343784, - "2037": 199.7224506675264, - "2038": 133.94975202519868, - "2039": 89.8373518232097, - "2040": 60.252069605092586, - "2041": 40.40982751629842, - "2042": 27.102042645170304, - "2043": 18.176784230132558, - "2044": 12.190796438277816, - "2045": 8.17611717881097, - "2046": 5.483554127091266, - "2047": 3.6777073037390795, - "2048": 2.46656287117756, - "2049": 1.6542731367681762, - "2050": 1.1094870692374987 - }, - "approximatedHistoricalEmission": { - "2021": 39073.6294879557, - "2022": 38436.26228732243, - "2023": 37194.481840590015, - "2024": 35952.701393858064 - }, - "totalApproximatedHistoricalEmission": 113143.90956881933, - "trend": { - "2024": 35952.701393858064, - "2025": 34710.92094712611, - "2026": 33469.14050039416, - "2027": 32227.36005366221, - "2028": 30985.579606929794, - "2029": 29743.799160197843, - "2030": 28502.01871346589, - "2031": 27260.23826673394, - "2032": 26018.457820001524, - "2033": 24776.677373269573, - "2034": 23534.89692653762, - "2035": 22293.11647980567, - "2036": 21051.33603307372, - "2037": 19809.555586341303, - "2038": 18567.77513960935, - "2039": 17325.9946928774, - "2040": 16084.21424614545, - "2041": 14842.433799413498, - "2042": 13600.653352681082, - "2043": 12358.87290594913, - "2044": 11117.09245921718, - "2045": 9875.312012485228, - "2046": 8633.531565752812, - "2047": 7391.751119020861, - "2048": 6149.97067228891, - "2049": 4908.1902255569585, - "2050": 3666.4097788250074 - }, - "trendEmission": 515048.44524487876, - "historicalEmissionChangePercent": -2.74852132459015, - "neededEmissionChangePercent": 32.932050664558524, - "hitNetZero": "2052-12-06", - "budgetRunsOut": "2026-08-16", - "electricCarChangePercent": 0.04838530752286105, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.01015228426395939, - "2017": 0.0, - "2018": 0.0125, - "2019": 0.04838709677419355, - "2020": 0.1308411214953271, - "2021": 0.2706766917293233, - "2022": 0.3333333333333333 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.736768242, - "totalConsumptionEmission": 5901.1, - "electricVehiclePerChargePoints": 9.75 - }, - { - "kommun": "Finspång", - "län": "Östergötlands län", - "emissions": { - "1990": 93647.6082996311, - "2000": 78850.0748491237, - "2005": 84070.7974772392, - "2010": 96847.6327441013, - "2015": 82368.648864944, - "2016": 82873.181246245, - "2017": 81920.7385911041, - "2018": 74639.739002663, - "2019": 79582.3576457115, - "2020": 73506.3678113782, - "2021": 73237.1079251592 - }, - "budget": 162373.23570913388, - "emissionBudget": { - "2024": 67918.31359078363, - "2025": 44702.10357151797, - "2026": 29421.78564324485, - "2027": 19364.669697302434, - "2028": 12745.332218533096, - "2029": 8388.65293857332, - "2030": 5521.197636693213, - "2031": 3633.9116144923205, - "2032": 2391.74803926258, - "2033": 1574.1876220937143, - "2034": 1036.0901854515976, - "2035": 681.9281623885238, - "2036": 448.82774220653323, - "2037": 295.406984613493, - "2038": 194.42935084498498, - "2039": 127.96844502327173, - "2040": 84.22557011328165, - "2041": 55.435124335669244, - "2042": 36.48598645254542, - "2043": 24.01414668711695, - "2044": 15.805499513091494, - "2045": 10.4027770844073, - "2046": 6.84684283329573, - "2047": 4.506417507890304, - "2048": 2.9660091884488438, - "2049": 1.9521516793683455, - "2050": 1.2848564981195032 - }, - "approximatedHistoricalEmission": { - "2021": 73237.1079251592, - "2022": 71380.21577896085, - "2023": 69649.26468487224, - "2024": 67918.31359078363 - }, - "totalApproximatedHistoricalEmission": 211607.1912218045, - "trend": { - "2024": 67918.31359078363, - "2025": 66187.36249669502, - "2026": 64456.411402606405, - "2027": 62725.460308517795, - "2028": 60994.509214429185, - "2029": 59263.558120340575, - "2030": 57532.607026251964, - "2031": 55801.655932163354, - "2032": 54070.704838074744, - "2033": 52339.75374398613, - "2034": 50608.80264989752, - "2035": 48877.85155580891, - "2036": 47146.90046172077, - "2037": 45415.94936763216, - "2038": 43684.99827354355, - "2039": 41954.04717945494, - "2040": 40223.09608536633, - "2041": 38492.14499127772, - "2042": 36761.19389718911, - "2043": 35030.2428031005, - "2044": 33299.291709011886, - "2045": 31568.340614923276, - "2046": 29837.389520834666, - "2047": 28106.438426746055, - "2048": 26375.487332657445, - "2049": 24644.536238568835, - "2050": 22913.585144480225 - }, - "trendEmission": 1180814.6835584308, - "historicalEmissionChangePercent": -1.8006322130368002, - "neededEmissionChangePercent": 34.182547816405226, - "hitNetZero": "2063-03-18", - "budgetRunsOut": "2026-06-20", - "electricCarChangePercent": 0.06605029780674963, - "electricCarChangeYearly": { - "2015": 0.011037527593818985, - "2016": 0.009153318077803204, - "2017": 0.020151133501259445, - "2018": 0.06128133704735376, - "2019": 0.09444444444444444, - "2020": 0.20761245674740483, - "2021": 0.3343195266272189, - "2022": 0.4863013698630137 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbetet med att ta fram en ny energi– och klimatstrategi påbörjas under 2023.", - "bicycleMetrePerCapita": 3.168529867, - "totalConsumptionEmission": 6127.4, - "electricVehiclePerChargePoints": 24.869565217391305 - }, - { - "kommun": "Flen", - "län": "Södermanlands län", - "emissions": { - "1990": 85340.052887282, - "2000": 73871.6410271733, - "2005": 65239.0099612904, - "2010": 61896.4937669453, - "2015": 51724.2419570964, - "2016": 49116.868289776, - "2017": 46386.8938434383, - "2018": 44078.8910450118, - "2019": 43363.0479166387, - "2020": 39741.6792685766, - "2021": 40493.1623118517 - }, - "budget": 93284.95471812328, - "emissionBudget": { - "2024": 33100.51289642742, - "2025": 23213.093641793366, - "2026": 16279.134952039558, - "2027": 11416.411740552569, - "2028": 8006.227444751133, - "2029": 5614.695698946798, - "2030": 3937.535875581363, - "2031": 2761.3586920478265, - "2032": 1936.5161530172122, - "2033": 1358.061457823688, - "2034": 952.3963538091941, - "2035": 667.9070446507052, - "2036": 468.3972366229914, - "2037": 328.4827926778221, - "2038": 230.36204454013367, - "2039": 161.55084146754265, - "2040": 113.29416020321955, - "2041": 79.45218124247025, - "2042": 55.71910408147365, - "2043": 39.07530933817278, - "2044": 27.403164947542177, - "2045": 19.217594482575606, - "2046": 13.47712712760373, - "2047": 9.451388714559313, - "2048": 6.6281743718761, - "2049": 4.648279404307995, - "2050": 3.2597967718218333 - }, - "approximatedHistoricalEmission": { - "2021": 40493.1623118517, - "2022": 37062.474532493856, - "2023": 35081.49371446064, - "2024": 33100.51289642742 - }, - "totalApproximatedHistoricalEmission": 108940.80585109405, - "trend": { - "2024": 33100.51289642742, - "2025": 31119.5320783942, - "2026": 29138.551260360982, - "2027": 27157.570442327764, - "2028": 25176.589624294546, - "2029": 23195.608806261327, - "2030": 21214.627988227643, - "2031": 19233.647170194425, - "2032": 17252.666352161206, - "2033": 15271.685534127988, - "2034": 13290.70471609477, - "2035": 11309.723898061551, - "2036": 9328.743080028333, - "2037": 7347.762261994649, - "2038": 5366.78144396143, - "2039": 3385.800625928212, - "2040": 1404.8198078949936, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 276745.0715385277, - "historicalEmissionChangePercent": -3.9431574493629404, - "neededEmissionChangePercent": 29.870894404482804, - "hitNetZero": "2040-09-11", - "budgetRunsOut": "2027-02-09", - "electricCarChangePercent": 0.06586217303091861, - "electricCarChangeYearly": { - "2015": 0.010638297872340425, - "2016": 0.00974025974025974, - "2017": 0.026490066225165563, - "2018": 0.02242152466367713, - "2019": 0.07142857142857142, - "2020": 0.1796116504854369, - "2021": 0.3470319634703196, - "2022": 0.48743718592964824 - }, - "climatePlanLink": "https://flen.se/nedladdning/forfattningssamling/planer_och_program/planer/Energi-och-klimatplan-for-Flens-kommun-2019-2023.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Energi– och klimatplan 2019–2023", - "bicycleMetrePerCapita": 2.556806018, - "totalConsumptionEmission": 6102.8, - "electricVehiclePerChargePoints": 47.22222222222222 - }, - { - "kommun": "Forshaga", - "län": "Värmlands län", - "emissions": { - "1990": 50311.4007127443, - "2000": 42229.6608027275, - "2005": 33502.2248173012, - "2010": 26866.2551410348, - "2015": 22430.506415624, - "2016": 21783.2198301299, - "2017": 21256.2628398496, - "2018": 20207.8621362078, - "2019": 19877.3151738519, - "2020": 17978.7524882313, - "2021": 18740.6365816607 - }, - "budget": 42146.312510427124, - "emissionBudget": { - "2024": 16026.902526861057, - "2025": 10957.240986879997, - "2026": 7491.224822971298, - "2027": 5121.5857546162, - "2028": 3501.515608162397, - "2029": 2393.909258114855, - "2030": 1636.6631417346603, - "2031": 1118.9506162076302, - "2032": 765.0019418072905, - "2033": 523.0150128987741, - "2034": 357.5738684679217, - "2035": 244.4653944108882, - "2036": 167.1356168182423, - "2037": 114.2669475838506, - "2038": 78.12180047972471, - "2039": 53.410157873653255, - "2040": 36.51535098488832, - "2041": 24.964742862280964, - "2042": 17.067845970800946, - "2043": 11.668911139602635, - "2044": 7.97777806390368, - "2045": 5.454231511019123, - "2046": 3.7289382002734404, - "2047": 2.549393085600872, - "2048": 1.7429640170579728, - "2049": 1.191626188176803, - "2050": 0.8146886329561849 - }, - "approximatedHistoricalEmission": { - "2021": 18740.6365816607, - "2022": 17459.580516267102, - "2023": 16743.24152156408, - "2024": 16026.902526861057 - }, - "totalApproximatedHistoricalEmission": 51586.59159209206, - "trend": { - "2024": 16026.902526861057, - "2025": 15310.563532158034, - "2026": 14594.224537455011, - "2027": 13877.885542751988, - "2028": 13161.546548048966, - "2029": 12445.207553345943, - "2030": 11728.86855864292, - "2031": 11012.529563939897, - "2032": 10296.190569236875, - "2033": 9579.851574533852, - "2034": 8863.512579830829, - "2035": 8147.173585127806, - "2036": 7430.8345904247835, - "2037": 6714.495595721761, - "2038": 5998.156601018738, - "2039": 5281.817606315715, - "2040": 4565.4786116126925, - "2041": 3849.1396169096697, - "2042": 3132.800622206647, - "2043": 2416.461627503624, - "2044": 1700.1226328006014, - "2045": 983.7836380975787, - "2046": 267.4446433945559, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 179371.54119450902, - "historicalEmissionChangePercent": -2.8644136209681306, - "neededEmissionChangePercent": 31.632197996364635, - "hitNetZero": "2046-05-11", - "budgetRunsOut": "2026-10-22", - "electricCarChangePercent": 0.07085106106291314, - "electricCarChangeYearly": { - "2015": 0.012345679012345678, - "2016": 0.0, - "2017": 0.06280193236714976, - "2018": 0.10666666666666667, - "2019": 0.09774436090225563, - "2020": 0.23148148148148148, - "2021": 0.44242424242424244, - "2022": 0.4755244755244755 - }, - "climatePlanLink": "https://www.forshaga.se/download/18.658f116617a76142ce5bbc71/1626679776148/Milj%C3%B6-%20och%20klimatplan%20(2021-06-08).pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Miljö– och klimatplan 2021–2030", - "bicycleMetrePerCapita": 6.449194915, - "totalConsumptionEmission": 5927.7, - "electricVehiclePerChargePoints": 142.5 - }, - { - "kommun": "Färgelanda", - "län": "Västra Götalands län", - "emissions": { - "1990": 37783.0477097424, - "2000": 35944.7375915302, - "2005": 29376.1312922679, - "2010": 26236.8859522581, - "2015": 22616.9321912413, - "2016": 21724.2893464626, - "2017": 21957.0545247504, - "2018": 22692.1663533043, - "2019": 22462.223167009, - "2020": 21405.9556195313, - "2021": 20970.6401639379 - }, - "budget": 45569.18910464783, - "emissionBudget": { - "2024": 20889.099860852235, - "2025": 13208.009906675552, - "2026": 8351.318479824731, - "2027": 5280.471535398531, - "2028": 3338.7997001330154, - "2029": 2111.0962085258125, - "2030": 1334.8291607533408, - "2031": 844.0017471499727, - "2032": 533.6555194750031, - "2033": 337.4260947063308, - "2034": 213.3518069873517, - "2035": 134.90063234257067, - "2036": 85.29658531321584, - "2037": 53.9323451621715, - "2038": 34.10098826360555, - "2039": 21.561780728389564, - "2040": 13.633340611284558, - "2041": 8.62025166495528, - "2042": 5.450515826301413, - "2043": 3.4463173382208057, - "2044": 2.179078746713937, - "2045": 1.3778139731124623, - "2046": 0.87118069843355, - "2047": 0.5508405518697826, - "2048": 0.3482920525326017, - "2049": 0.2202222647653755, - "2050": 0.1392447675614173 - }, - "approximatedHistoricalEmission": { - "2021": 20970.6401639379, - "2022": 21251.269496103225, - "2023": 21070.1846784777, - "2024": 20889.099860852235 - }, - "totalApproximatedHistoricalEmission": 63251.324186975995, - "trend": { - "2024": 20889.099860852235, - "2025": 20708.01504322671, - "2026": 20526.930225601245, - "2027": 20345.84540797572, - "2028": 20164.760590350255, - "2029": 19983.67577272473, - "2030": 19802.590955099266, - "2031": 19621.50613747374, - "2032": 19440.421319848276, - "2033": 19259.33650222275, - "2034": 19078.251684597286, - "2035": 18897.166866971762, - "2036": 18716.082049346296, - "2037": 18534.997231720772, - "2038": 18353.912414095306, - "2039": 18172.827596469782, - "2040": 17991.742778844316, - "2041": 17810.657961218792, - "2042": 17629.573143593327, - "2043": 17448.488325967803, - "2044": 17267.403508342337, - "2045": 17086.318690716813, - "2046": 16905.233873091347, - "2047": 16724.149055465823, - "2048": 16543.064237840357, - "2049": 16361.979420214891, - "2050": 16180.894602589367 - }, - "trendEmission": 481909.92802474054, - "historicalEmissionChangePercent": -1.2127895558462491, - "neededEmissionChangePercent": 36.77080393766336, - "hitNetZero": "2139-04-12", - "budgetRunsOut": "2026-03-15", - "electricCarChangePercent": 0.05543863728702094, - "electricCarChangeYearly": { - "2015": 0.019801980198019802, - "2016": 0.02702702702702703, - "2017": 0.04424778761061947, - "2018": 0.03571428571428571, - "2019": 0.05555555555555555, - "2020": 0.25, - "2021": 0.234375, - "2022": 0.44594594594594594 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.231146482, - "totalConsumptionEmission": 5767.2, - "electricVehiclePerChargePoints": 7.4375 - }, - { - "kommun": "Gagnef", - "län": "Dalarnas län", - "emissions": { - "1990": 46932.492718333, - "2000": 44855.1124618532, - "2005": 39367.7192578598, - "2010": 37680.3699150072, - "2015": 31367.0694827718, - "2016": 30036.6097671721, - "2017": 28542.6132177175, - "2018": 25393.167875366, - "2019": 26015.2632042333, - "2020": 24147.5641569895, - "2021": 23598.9801315176 - }, - "budget": 56017.89514818605, - "emissionBudget": { - "2024": 18955.243414906785, - "2025": 13513.676300843652, - "2026": 9634.244370629805, - "2027": 6868.498440148183, - "2028": 4896.727652677763, - "2029": 3491.001987325451, - "2030": 2488.8243210434143, - "2031": 1774.3463118916159, - "2032": 1264.9767233082498, - "2033": 901.8341570568334, - "2034": 642.9405631333688, - "2035": 458.36871944538956, - "2036": 326.78274635850534, - "2037": 232.97175131587474, - "2038": 166.09150120686343, - "2039": 118.41086576950045, - "2040": 84.4181251322404, - "2041": 60.18383367549179, - "2042": 42.9065894344997, - "2043": 30.589201525897632, - "2044": 21.807821649874924, - "2045": 15.54735205200155, - "2046": 11.084103662882951, - "2047": 7.902140094249602, - "2048": 5.633637140931033, - "2049": 4.016363549258422, - "2050": 2.8633679728165444 - }, - "approximatedHistoricalEmission": { - "2021": 23598.9801315176, - "2022": 21641.651221164968, - "2023": 20298.447318035644, - "2024": 18955.243414906785 - }, - "totalApproximatedHistoricalEmission": 63217.210312412804, - "trend": { - "2024": 18955.243414906785, - "2025": 17612.039511777926, - "2026": 16268.835608648602, - "2027": 14925.631705519743, - "2028": 13582.427802390885, - "2029": 12239.22389926156, - "2030": 10896.019996132702, - "2031": 9552.816093003843, - "2032": 8209.612189874984, - "2033": 6866.40828674566, - "2034": 5523.204383616801, - "2035": 4180.000480487943, - "2036": 2836.7965773586184, - "2037": 1493.5926742297597, - "2038": 150.38877110090107, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 133814.61968760332, - "historicalEmissionChangePercent": -4.541812620417315, - "neededEmissionChangePercent": 28.707450466100447, - "hitNetZero": "2038-02-06", - "budgetRunsOut": "2027-05-10", - "electricCarChangePercent": 0.07890026754016323, - "electricCarChangeYearly": { - "2015": 0.007352941176470588, - "2016": 0.006097560975609756, - "2017": 0.006097560975609756, - "2018": 0.02962962962962963, - "2019": 0.09316770186335403, - "2020": 0.3103448275862069, - "2021": 0.40601503759398494, - "2022": 0.5290322580645161 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete med plan pågår. ", - "bicycleMetrePerCapita": 0.9615165799, - "totalConsumptionEmission": 5892.4, - "electricVehiclePerChargePoints": 36.55555555555556 - }, - { - "kommun": "Gislaved", - "län": "Jönköpings län", - "emissions": { - "1990": 126085.005546744, - "2000": 119378.672250313, - "2005": 106829.149803114, - "2010": 99684.8853551172, - "2015": 83065.0879771132, - "2016": 81071.6589452112, - "2017": 75583.8912408087, - "2018": 74475.956352902, - "2019": 73496.4778334183, - "2020": 65341.2396607991, - "2021": 66254.0238426647 - }, - "budget": 153829.9551473582, - "emissionBudget": { - "2024": 56188.02418336831, - "2025": 38995.3740629539, - "2026": 27063.403997747402, - "2027": 18782.428776368783, - "2028": 13035.301500459045, - "2029": 9046.704621164568, - "2030": 6278.555543937227, - "2031": 4357.416470311415, - "2032": 3024.1156843910876, - "2033": 2098.783931921611, - "2034": 1456.5891164905192, - "2035": 1010.8957963748478, - "2036": 701.5776100198469, - "2037": 486.9059151756966, - "2038": 337.9203766585082, - "2039": 234.52206556131762, - "2040": 162.76200855069726, - "2041": 112.95939835789501, - "2042": 78.39560221083886, - "2043": 54.40778310918237, - "2044": 37.75985870858654, - "2045": 26.205936875450224, - "2046": 18.187333083529637, - "2047": 12.622295713500192, - "2048": 8.760072097834241, - "2049": 6.07962805665991, - "2050": 4.219357659906072 - }, - "approximatedHistoricalEmission": { - "2021": 66254.0238426647, - "2022": 62186.69878190849, - "2023": 59187.361482637934, - "2024": 56188.02418336831 - }, - "totalApproximatedHistoricalEmission": 182595.0842775629, - "trend": { - "2024": 56188.02418336831, - "2025": 53188.686884097755, - "2026": 50189.34958482813, - "2027": 47190.01228555851, - "2028": 44190.67498628795, - "2029": 41191.33768701833, - "2030": 38192.0003877487, - "2031": 35192.66308847815, - "2032": 32193.325789208524, - "2033": 29193.9884899389, - "2034": 26194.651190668344, - "2035": 23195.31389139872, - "2036": 20195.976592128165, - "2037": 17196.63929285854, - "2038": 14197.301993588917, - "2039": 11197.964694318362, - "2040": 8198.627395048738, - "2041": 5199.2900957791135, - "2042": 2199.952796508558, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 526591.7692171466, - "historicalEmissionChangePercent": -3.6081688163051173, - "neededEmissionChangePercent": 30.598424433481767, - "hitNetZero": "2042-09-20", - "budgetRunsOut": "2026-12-22", - "electricCarChangePercent": 0.07401713658926597, - "electricCarChangeYearly": { - "2015": 0.020512820512820513, - "2016": 0.014616321559074299, - "2017": 0.028465346534653466, - "2018": 0.04648074369189907, - "2019": 0.08104738154613467, - "2020": 0.259581881533101, - "2021": 0.37834036568213786, - "2022": 0.5449275362318841 - }, - "climatePlanLink": "https://www.gislaved.se/download/18.6c7bb61c1851412f92b21f8c/1672839511150/Strategi%20f%C3%B6r%20h%C3%A5llbar%20utveckling%20Gislaveds%20kommun%20antagen%20den%2014%20juni%202021.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Strategi för hållbar utveckling", - "bicycleMetrePerCapita": 4.057533422, - "totalConsumptionEmission": 5973.2, - "electricVehiclePerChargePoints": 11.956140350877194 - }, - { - "kommun": "Gnesta", - "län": "Södermanlands län", - "emissions": { - "1990": 50915.4332630129, - "2000": 46762.3107495375, - "2005": 36920.2761460816, - "2010": 31192.1353247618, - "2015": 26498.8622913046, - "2016": 25402.8708211209, - "2017": 21979.538463164, - "2018": 20115.9910674198, - "2019": 19793.09636451, - "2020": 17166.2155678372, - "2021": 17725.0476255144 - }, - "budget": 44044.29234257746, - "emissionBudget": { - "2024": 11601.403899569064, - "2025": 8914.890774635362, - "2026": 6850.487941949061, - "2027": 5264.134606821247, - "2028": 4045.129835065278, - "2029": 3108.4074790435693, - "2030": 2388.599983124664, - "2031": 1835.476821442552, - "2032": 1410.439247196889, - "2033": 1083.8267456136277, - "2034": 832.8472260269207, - "2035": 639.9865151030423, - "2036": 491.7861604314176, - "2037": 377.9042556122232, - "2038": 290.3937481374986, - "2039": 223.1478680247426, - "2040": 171.47397739572025, - "2041": 131.76610282760024, - "2042": 101.25329871077594, - "2043": 77.80628158387148, - "2044": 59.788841756169006, - "2045": 45.94366323355086, - "2046": 35.304584088219755, - "2047": 27.12917451327588, - "2048": 20.846927637857664, - "2049": 16.019447688148475, - "2050": 12.309857293661958 - }, - "approximatedHistoricalEmission": { - "2021": 17725.0476255144, - "2022": 14814.346514039673, - "2023": 13207.875206804369, - "2024": 11601.403899569064 - }, - "totalApproximatedHistoricalEmission": 42685.447483385775, - "trend": { - "2024": 11601.403899569064, - "2025": 9994.93259233376, - "2026": 8388.46128509799, - "2027": 6781.989977862686, - "2028": 5175.518670627382, - "2029": 3569.0473633920774, - "2030": 1962.5760561563075, - "2031": 356.1047489210032, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 42029.33264417574, - "historicalEmissionChangePercent": -6.285360315497887, - "neededEmissionChangePercent": 23.15679333458507, - "hitNetZero": "2031-03-20", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.07878057228987029, - "electricCarChangeYearly": { - "2015": 0.014285714285714285, - "2016": 0.009345794392523364, - "2017": 0.02912621359223301, - "2018": 0.04945054945054945, - "2019": 0.11173184357541899, - "2020": 0.2689655172413793, - "2021": 0.4157303370786517, - "2022": 0.5576923076923077 - }, - "climatePlanLink": "https://www.gnesta.se/kommunverksamhet/styrningochekonomi/styrdokument/plan.4.34b79a7b16653c9fa8492dbf.html", - "climatePlanYear": 2013, - "climatePlanComment": "Miljö– och hållbarhetsplan, gäller tills vidare", - "bicycleMetrePerCapita": 1.698479193, - "totalConsumptionEmission": 6087.3, - "electricVehiclePerChargePoints": 14.923076923076923 - }, - { - "kommun": "Gnosjö", - "län": "Jönköpings län", - "emissions": { - "1990": 42695.8777349031, - "2000": 40414.5497784328, - "2005": 31621.5955692958, - "2010": 31246.9957710159, - "2015": 29691.6312846588, - "2016": 30340.5454824779, - "2017": 31172.2719659445, - "2018": 30071.9787474749, - "2019": 29601.1369773846, - "2020": 22566.0429332755, - "2021": 21233.9116098986 - }, - "budget": 57669.76060987956, - "emissionBudget": { - "2024": 18705.367190606426, - "2025": 13523.88486140659, - "2026": 9777.699623904195, - "2027": 7069.226846800642, - "2028": 5111.014874025404, - "2029": 3695.237627624201, - "2030": 2671.6379155937216, - "2031": 1931.5805561947072, - "2032": 1396.522868346966, - "2033": 1009.6788951210823, - "2034": 729.9926799334352, - "2035": 527.780976042382, - "2036": 381.58294778743476, - "2037": 275.8825206887632, - "2038": 199.4616522119444, - "2039": 144.20975494856395, - "2040": 104.26291566173794, - "2041": 75.3815550561334, - "2042": 54.50047897294868, - "2043": 39.40356770391596, - "2044": 28.488578028236102, - "2045": 20.597096287558735, - "2046": 14.89159532843251, - "2047": 10.766547300152325, - "2048": 7.784158661973191, - "2049": 5.627906921833235, - "2050": 4.068947935959675 - }, - "approximatedHistoricalEmission": { - "2021": 21233.9116098986, - "2022": 21740.60284140939, - "2023": 20222.985016007908, - "2024": 18705.367190606426 - }, - "totalApproximatedHistoricalEmission": 61933.22725766981, - "trend": { - "2024": 18705.367190606426, - "2025": 17187.74936520448, - "2026": 15670.131539802998, - "2027": 14152.513714401517, - "2028": 12634.895889000036, - "2029": 11117.278063598089, - "2030": 9599.660238196608, - "2031": 8082.042412795126, - "2032": 6564.4245873931795, - "2033": 5046.806761991698, - "2034": 3529.188936590217, - "2035": 2011.5711111887358, - "2036": 493.9532857867889, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 115442.89950125269, - "historicalEmissionChangePercent": -4.9730284720090365, - "neededEmissionChangePercent": 27.70051117628905, - "hitNetZero": "2036-04-25", - "budgetRunsOut": "2027-08-12", - "electricCarChangePercent": 0.08002508252892905, - "electricCarChangeYearly": { - "2015": 0.020080321285140562, - "2016": 0.026936026936026935, - "2017": 0.03215434083601286, - "2018": 0.06093189964157706, - "2019": 0.09904153354632587, - "2020": 0.3374485596707819, - "2021": 0.4161290322580645, - "2022": 0.5661016949152542 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 4.272521996, - "totalConsumptionEmission": 5800.6, - "electricVehiclePerChargePoints": 34.05882352941177 - }, - { - "kommun": "Gotland", - "län": "Gotlands län", - "emissions": { - "1990": 1971790.54948669, - "2000": 2054398.60038359, - "2005": 2058956.90203607, - "2010": 401665.1739916699, - "2015": 269367.9092786899, - "2016": 220902.02188846003, - "2017": 267272.31793093006, - "2018": 402598.50127022015, - "2019": 429824.7581961099, - "2020": 195590.1005935201, - "2021": 119802.94296870008 - }, - "budget": 564428.6620300532, - "emissionBudget": { - "2024": 200029.87146352604, - "2025": 140340.7189855473, - "2026": 98462.88087512816, - "2027": 69081.43965849349, - "2028": 48467.4555819903, - "2029": 34004.70896676491, - "2030": 23857.66320986843, - "2031": 16738.50802228054, - "2032": 11743.717242854615, - "2033": 8239.377995729546, - "2034": 5780.737764085545, - "2035": 4055.7587131510013, - "2036": 2845.5154706195813, - "2037": 1996.4102566754232, - "2038": 1400.679052393624, - "2039": 982.714750765412, - "2040": 689.4714957874106, - "2041": 483.7323782237672, - "2042": 339.3860589911492, - "2043": 238.1128537653147, - "2044": 167.05969389785898, - "2045": 117.20888177147103, - "2046": 82.23361150486791, - "2047": 57.6950036458715, - "2048": 40.47874567080246, - "2049": 28.399839631499137, - "2050": 19.92529357639258 - }, - "approximatedHistoricalEmission": { - "2021": 119802.94296870008, - "2022": 224084.6072674282, - "2023": 212057.23936547711, - "2024": 200029.87146352604 - }, - "totalApproximatedHistoricalEmission": 596058.2538490184, - "trend": { - "2024": 200029.87146352604, - "2025": 188002.50356157497, - "2026": 175975.13565962762, - "2027": 163947.76775767654, - "2028": 151920.39985572547, - "2029": 139893.0319537744, - "2030": 127865.66405182332, - "2031": 115838.29614987224, - "2032": 103810.92824792117, - "2033": 91783.5603459701, - "2034": 79756.19244401902, - "2035": 67728.82454206795, - "2036": 55701.45664011687, - "2037": 43674.088738165796, - "2038": 31646.72083621472, - "2039": 19619.352934263647, - "2040": 7591.985032312572, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 1664770.8444828894, - "historicalEmissionChangePercent": -5.474915172472286, - "neededEmissionChangePercent": 29.840119398798187, - "hitNetZero": "2040-08-14", - "budgetRunsOut": "2027-02-11", - "electricCarChangePercent": 0.06565393185052729, - "electricCarChangeYearly": { - "2015": 0.035050071530758224, - "2016": 0.036933797909407665, - "2017": 0.03789004457652303, - "2018": 0.06887755102040816, - "2019": 0.08268059181897303, - "2020": 0.23824130879345604, - "2021": 0.3936781609195402, - "2022": 0.48024316109422494 - }, - "climatePlanLink": "https://www.gotland.se/115066", - "climatePlanYear": 2022, - "climatePlanComment": "Kommer under 2023 ta fram ett internt hållbarhetsprogram.", - "bicycleMetrePerCapita": 2.965998404, - "totalConsumptionEmission": 6204.3, - "electricVehiclePerChargePoints": 4.86848635235732 - }, - { - "kommun": "Grums", - "län": "Värmlands län", - "emissions": { - "1990": 103910.023063223, - "2000": 156729.591170014, - "2005": 141503.02757081, - "2010": 82142.9832031392, - "2015": 57340.008300058, - "2016": 52691.5573292281, - "2017": 50084.7495932462, - "2018": 68386.6665676316, - "2019": 65557.799687692, - "2020": 56964.6029848481, - "2021": 52270.3371590495 - }, - "budget": 119469.20137595324, - "emissionBudget": { - "2024": 59501.55908510694, - "2025": 36159.98631230605, - "2026": 21974.96385323179, - "2027": 13354.513803742853, - "2028": 8115.737533198722, - "2029": 4932.054934812418, - "2030": 2997.2834607454374, - "2031": 1821.4939336233954, - "2032": 1106.9490736127004, - "2033": 672.7094880489241, - "2034": 408.81560507035573, - "2035": 248.44335023989743, - "2036": 150.98273527939776, - "2037": 91.754463665206, - "2038": 55.76055823144432, - "2039": 33.88652420908154, - "2040": 20.593346971284884, - "2041": 12.514884585479969, - "2042": 7.605482314568702, - "2043": 4.621965216069869, - "2044": 2.808837306430736, - "2045": 1.7069723905680314, - "2046": 1.037352621132808, - "2047": 0.6304146842193573, - "2048": 0.38311242096771225, - "2049": 0.23282314129705517, - "2050": 0.14149010096437672 - }, - "approximatedHistoricalEmission": { - "2021": 52270.3371590495, - "2022": 58872.26422920241, - "2023": 59186.91165715468, - "2024": 59501.55908510694 - }, - "totalApproximatedHistoricalEmission": 173945.1240084353, - "trend": { - "2024": 59501.55908510694, - "2025": 59816.20651305921, - "2026": 60130.853941011475, - "2027": 60445.50136896374, - "2028": 60760.148796916124, - "2029": 61074.79622486839, - "2030": 61389.44365282066, - "2031": 61704.09108077292, - "2032": 62018.73850872519, - "2033": 62333.385936677456, - "2034": 62648.03336462972, - "2035": 62962.68079258199, - "2036": 63277.328220534255, - "2037": 63591.97564848652, - "2038": 63906.62307643879, - "2039": 64221.270504391054, - "2040": 64535.91793234332, - "2041": 64850.565360295586, - "2042": 65165.21278824797, - "2043": 65479.860216200235, - "2044": 65794.5076441525, - "2045": 66109.15507210477, - "2046": 66423.80250005703, - "2047": 66738.4499280093, - "2048": 67053.09735596157, - "2049": 67367.74478391383, - "2050": 67682.3922118661 - }, - "trendEmission": 1653391.3668606502, - "historicalEmissionChangePercent": -0.33288103412763304, - "neededEmissionChangePercent": 39.22850616303131, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-12-31", - "electricCarChangePercent": 0.07597880990069575, - "electricCarChangeYearly": { - "2015": 0.007518796992481203, - "2016": 0.016216216216216217, - "2017": 0.02027027027027027, - "2018": 0.01652892561983471, - "2019": 0.09375, - "2020": 0.24761904761904763, - "2021": 0.32456140350877194, - "2022": 0.5905511811023622 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.282694987, - "totalConsumptionEmission": 6226.9, - "electricVehiclePerChargePoints": 8.178571428571429 - }, - { - "kommun": "Grästorp", - "län": "Västra Götalands län", - "emissions": { - "1990": 33517.9626611005, - "2000": 32908.1970335994, - "2005": 29626.817707551, - "2010": 29799.6363399913, - "2015": 25868.1791262035, - "2016": 24879.2294912534, - "2017": 24822.0129266479, - "2018": 23799.7243098762, - "2019": 23805.4904435504, - "2020": 22066.1526689903, - "2021": 22395.1016488455 - }, - "budget": 49659.15803229864, - "emissionBudget": { - "2024": 20291.86111083161, - "2025": 13485.258655360432, - "2026": 8961.829573380157, - "2027": 5955.717376647124, - "2028": 3957.96072443252, - "2029": 2630.321774094918, - "2030": 1748.0195274726495, - "2031": 1161.6724229403885, - "2032": 772.0067178948077, - "2033": 513.0485674835519, - "2034": 340.9540700820566, - "2035": 226.5861075798576, - "2036": 150.58117398579415, - "2037": 100.0709628720224, - "2038": 66.50364946071167, - "2039": 44.195991171278244, - "2040": 29.371104464960915, - "2041": 19.51900510950114, - "2042": 12.97164568391516, - "2043": 8.620500420235569, - "2044": 5.7288820020292235, - "2045": 3.8072138963224447, - "2046": 2.530140723306317, - "2047": 1.681442717446637, - "2048": 1.1174278118253267, - "2049": 0.7426033023217545, - "2050": 0.4935080895457244 - }, - "approximatedHistoricalEmission": { - "2021": 22395.1016488455, - "2022": 21510.56886509573, - "2023": 20901.21498796367, - "2024": 20291.86111083161 - }, - "totalApproximatedHistoricalEmission": 63755.26523289796, - "trend": { - "2024": 20291.86111083161, - "2025": 19682.50723369955, - "2026": 19073.15335656749, - "2027": 18463.79947943543, - "2028": 17854.44560230337, - "2029": 17245.09172517131, - "2030": 16635.73784803925, - "2031": 16026.38397090719, - "2032": 15417.03009377513, - "2033": 14807.67621664307, - "2034": 14198.32233951101, - "2035": 13588.968462379184, - "2036": 12979.614585247124, - "2037": 12370.260708115064, - "2038": 11760.906830983004, - "2039": 11151.552953850944, - "2040": 10542.199076718884, - "2041": 9932.845199586824, - "2042": 9323.491322454764, - "2043": 8714.137445322704, - "2044": 8104.783568190644, - "2045": 7495.429691058584, - "2046": 6886.075813926524, - "2047": 6276.7219367944635, - "2048": 5667.3680596624035, - "2049": 5058.0141825303435, - "2050": 4448.6603053982835 - }, - "trendEmission": 321626.7784109892, - "historicalEmissionChangePercent": -2.3271628427001234, - "neededEmissionChangePercent": 33.543509973256604, - "hitNetZero": "2057-04-11", - "budgetRunsOut": "2026-07-18", - "electricCarChangePercent": 0.06330140371433526, - "electricCarChangeYearly": { - "2015": 0.018691588785046728, - "2016": 0.0078125, - "2017": 0.007462686567164179, - "2018": 0.05660377358490566, - "2019": 0.038461538461538464, - "2020": 0.22727272727272727, - "2021": 0.41346153846153844, - "2022": 0.3969465648854962 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.834894831, - "totalConsumptionEmission": 6103.6, - "electricVehiclePerChargePoints": 52.25 - }, - { - "kommun": "Gullspång", - "län": "Västra Götalands län", - "emissions": { - "1990": 42941.6181121248, - "2000": 39637.5390224922, - "2005": 35437.3722056415, - "2010": 33125.8114579755, - "2015": 27177.9320842219, - "2016": 25947.2425098195, - "2017": 26330.3334489161, - "2018": 24119.1117964731, - "2019": 24567.7484747064, - "2020": 22368.028248005, - "2021": 22545.4803600213 - }, - "budget": 51264.73280243922, - "emissionBudget": { - "2024": 19832.61770235747, - "2025": 13469.9495750493, - "2026": 9148.542279055955, - "2027": 6213.5218372833415, - "2028": 4220.109875950744, - "2029": 2866.2210951339553, - "2030": 1946.6847090894964, - "2031": 1322.152489574692, - "2032": 897.9816800976322, - "2033": 609.8926592426252, - "2034": 414.2278891008099, - "2035": 281.3359720085656, - "2036": 191.07822343353072, - "2037": 129.77681883283205, - "2038": 88.14203106838309, - "2039": 59.86444814052059, - "2040": 40.658833336716526, - "2041": 27.614732610955553, - "2042": 18.755419046565173, - "2043": 12.738336038521123, - "2044": 8.651643806380479, - "2045": 5.8760375237495746, - "2046": 3.9908967305206504, - "2047": 2.7105437379026482, - "2048": 1.8409515081901822, - "2049": 1.2503404420731157, - "2050": 0.8492082567783135 - }, - "approximatedHistoricalEmission": { - "2021": 22545.4803600213, - "2022": 21462.501178817358, - "2023": 20647.559440587414, - "2024": 19832.61770235747 - }, - "totalApproximatedHistoricalEmission": 63299.10965059416, - "trend": { - "2024": 19832.61770235747, - "2025": 19017.675964127295, - "2026": 18202.73422589735, - "2027": 17387.792487667408, - "2028": 16572.85074943723, - "2029": 15757.909011207288, - "2030": 14942.967272977345, - "2031": 14128.025534747401, - "2032": 13313.083796517225, - "2033": 12498.142058287282, - "2034": 11683.200320057338, - "2035": 10868.258581827395, - "2036": 10053.316843597218, - "2037": 9238.375105367275, - "2038": 8423.433367137332, - "2039": 7608.491628907155, - "2040": 6793.549890677212, - "2041": 5978.608152447268, - "2042": 5163.666414217325, - "2043": 4348.724675987149, - "2044": 3533.782937757205, - "2045": 2718.841199527262, - "2046": 1903.8994612973183, - "2047": 1088.957723067142, - "2048": 274.01598483719863, - "2049": 0, - "2050": 0 - }, - "trendEmission": 241416.61223875335, - "historicalEmissionChangePercent": -2.958353319528445, - "neededEmissionChangePercent": 32.08183721784666, - "hitNetZero": "2048-04-26", - "budgetRunsOut": "2026-09-27", - "electricCarChangePercent": 0.0465946550369637, - "electricCarChangeYearly": { - "2015": 0.011111111111111112, - "2016": 0.00909090909090909, - "2017": 0.0, - "2018": 0.05, - "2019": 0.030927835051546393, - "2020": 0.14942528735632185, - "2021": 0.2597402597402597, - "2022": 0.32989690721649484 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 4.147110951, - "totalConsumptionEmission": 6029.8, - "electricVehiclePerChargePoints": 14.25 - }, - { - "kommun": "Gällivare", - "län": "Norrbottens län", - "emissions": { - "1990": 324711.701031407, - "2000": 369252.297040743, - "2005": 370361.00533347, - "2010": 405390.685409249, - "2015": 346796.559187039, - "2016": 341903.588784558, - "2017": 428127.488910943, - "2018": 440605.626225736, - "2019": 444491.22807391, - "2020": 397222.623608863, - "2021": 379312.20194903 - }, - "budget": 823069.2710840038, - "emissionBudget": { - "2024": 445040.3460552003, - "2025": 259162.86651310005, - "2026": 150919.78058761463, - "2027": 87885.9710075881, - "2028": 51179.13549750079, - "2029": 29803.43597780121, - "2030": 17355.603752358627, - "2031": 10106.78707761224, - "2032": 5885.542588416605, - "2033": 3427.361365591305, - "2034": 1995.8747649650686, - "2035": 1162.2690613883117, - "2036": 676.8307284470869, - "2037": 394.1426733178476, - "2038": 229.52333633930795, - "2039": 133.65962503086718, - "2040": 77.83476681857769, - "2041": 45.32596080756083, - "2042": 26.394923593940597, - "2043": 15.370705421731437, - "2044": 8.95090998542922, - "2045": 5.2124341316165514, - "2046": 3.0353863038137057, - "2047": 1.7676137061366362, - "2048": 1.0293445055729715, - "2049": 0.5994240186500138, - "2050": 0.34906598538117933 - }, - "approximatedHistoricalEmission": { - "2021": 379312.20194903, - "2022": 429001.1505482327, - "2023": 437020.7483017165, - "2024": 445040.3460552003 - }, - "totalApproximatedHistoricalEmission": 1278198.1728520645, - "trend": { - "2024": 445040.3460552003, - "2025": 453059.943808686, - "2026": 461079.5415621698, - "2027": 469099.1393156536, - "2028": 477118.7370691374, - "2029": 485138.3348226212, - "2030": 493157.93257610686, - "2031": 501177.53032959066, - "2032": 509197.12808307447, - "2033": 517216.72583655827, - "2034": 525236.3235900421, - "2035": 533255.9213435277, - "2036": 541275.5190970115, - "2037": 549295.1168504953, - "2038": 557314.7146039791, - "2039": 565334.312357463, - "2040": 573353.9101109467, - "2041": 581373.5078644324, - "2042": 589393.1056179162, - "2043": 597412.7033714, - "2044": 605432.3011248838, - "2045": 613451.8988783676, - "2046": 621471.4966318533, - "2047": 629491.0943853371, - "2048": 637510.6921388209, - "2049": 645530.2898923047, - "2050": 653549.8876457885 - }, - "trendEmission": 14281673.038112875, - "historicalEmissionChangePercent": 2.0768505734167655, - "neededEmissionChangePercent": 41.76643335591984, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-10-27", - "electricCarChangePercent": 0.05977188843177565, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.012578616352201259, - "2017": 0.03065134099616858, - "2018": 0.03515625, - "2019": 0.06031746031746032, - "2020": 0.19166666666666668, - "2021": 0.22950819672131148, - "2022": 0.4897119341563786 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.568772462, - "totalConsumptionEmission": 6701.6, - "electricVehiclePerChargePoints": 6.612903225806452 - }, - { - "kommun": "Gävle", - "län": "Gävleborgs län", - "emissions": { - "1990": 500920.9621634, - "2000": 429883.747720515, - "2005": 471914.440500508, - "2010": 520118.690235872, - "2015": 288014.417124067, - "2016": 278383.639304741, - "2017": 245067.120285995, - "2018": 244747.787556423, - "2019": 243868.296274071, - "2020": 225946.939828441, - "2021": 235613.396453782 - }, - "budget": 521855.06416314695, - "emissionBudget": { - "2024": 195246.95276635513, - "2025": 134306.56587461292, - "2026": 92386.86382274791, - "2027": 63551.11942160337, - "2028": 43715.573974754356, - "2029": 30071.08962572551, - "2030": 20685.315302062158, - "2031": 14229.024437467606, - "2032": 9787.868035149851, - "2033": 6732.883276329416, - "2034": 4631.418920839824, - "2035": 3185.8626297182896, - "2036": 2191.492686996032, - "2037": 1507.4850222219914, - "2038": 1036.9695074541467, - "2039": 713.3110734358902, - "2040": 490.67275732672454, - "2041": 337.5242075283012, - "2042": 232.1763109251858, - "2043": 159.70955016703084, - "2044": 109.86108062839577, - "2045": 75.57129191220022, - "2046": 51.98401589181951, - "2047": 35.758789347951755, - "2048": 24.597772867186464, - "2049": 16.920327591022083, - "2050": 11.639162916632396 - }, - "approximatedHistoricalEmission": { - "2021": 235613.396453782, - "2022": 214052.3302645944, - "2023": 204649.64151547477, - "2024": 195246.95276635513 - }, - "totalApproximatedHistoricalEmission": 634132.1463901377, - "trend": { - "2024": 195246.95276635513, - "2025": 185844.2640172355, - "2026": 176441.57526811212, - "2027": 167038.88651899248, - "2028": 157636.19776987284, - "2029": 148233.5090207532, - "2030": 138830.82027162984, - "2031": 129428.1315225102, - "2032": 120025.44277339056, - "2033": 110622.75402427092, - "2034": 101220.06527514756, - "2035": 91817.37652602792, - "2036": 82414.68777690828, - "2037": 73011.99902778864, - "2038": 63609.310278665274, - "2039": 54206.621529545635, - "2040": 44803.932780425996, - "2041": 35401.244031306356, - "2042": 25998.55528218299, - "2043": 16595.866533063352, - "2044": 7193.177783943713, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 2027997.894394951, - "historicalEmissionChangePercent": -3.1453223055461392, - "neededEmissionChangePercent": 31.21195287727092, - "hitNetZero": "2044-10-01", - "budgetRunsOut": "2026-11-15", - "electricCarChangePercent": 0.061005134062167454, - "electricCarChangeYearly": { - "2015": 0.02557272242940863, - "2016": 0.02381530984204131, - "2017": 0.03963873557451079, - "2018": 0.0438106439282564, - "2019": 0.0630550621669627, - "2020": 0.2134387351778656, - "2021": 0.30794430794430794, - "2022": 0.47745013009540327 - }, - "climatePlanLink": "https://app.climateview.global/public/board/505eb0d1-3347-4e97-8a55-4138713941d2", - "climatePlanYear": 2021, - "climatePlanComment": "Klimatplan 2035", - "bicycleMetrePerCapita": 2.8248516, - "totalConsumptionEmission": 6330.1, - "electricVehiclePerChargePoints": 12.942307692307692 - }, - { - "kommun": "Göteborg", - "län": "Västra Götalands län", - "emissions": { - "1990": 2402471.45205336, - "2000": 2370472.07095794, - "2005": 2425469.75800417, - "2010": 2894615.41887103, - "2015": 2190035.40402056, - "2016": 2425555.09657673, - "2017": 2125741.6912483, - "2018": 2316218.76627259, - "2019": 2252193.90619921, - "2020": 2009257.9360872, - "2021": 2043704.69976698 - }, - "budget": 4550929.4981790995, - "emissionBudget": { - "2024": 1949286.595998302, - "2025": 1270151.67426062, - "2026": 827628.5687999785, - "2027": 539281.3014183006, - "2028": 351394.73554072354, - "2029": 228968.1838420678, - "2030": 149195.26079769406, - "2031": 97215.36621806536, - "2032": 63345.35948650344, - "2033": 41275.72342291593, - "2034": 26895.187870045058, - "2035": 17524.85651562004, - "2036": 11419.165293696677, - "2037": 7440.707767766456, - "2038": 4848.351929528579, - "2039": 3159.177482335079, - "2040": 2058.51442097427, - "2041": 1341.324330479507, - "2042": 874.0045448332497, - "2043": 569.4998048056711, - "2044": 371.0850585285864, - "2045": 241.7983632323685, - "2046": 157.55538283778236, - "2047": 102.66280684995625, - "2048": 66.89490210031705, - "2049": 43.588599068318786, - "2050": 28.402253521343294 - }, - "approximatedHistoricalEmission": { - "2021": 2043704.69976698, - "2022": 2031081.8973403573, - "2023": 1990184.2466693372, - "2024": 1949286.595998302 - }, - "totalApproximatedHistoricalEmission": 6017761.791892336, - "trend": { - "2024": 1949286.595998302, - "2025": 1908388.945327267, - "2026": 1867491.294656232, - "2027": 1826593.643985197, - "2028": 1785695.993314162, - "2029": 1744798.3426431417, - "2030": 1703900.6919721067, - "2031": 1663003.0413010716, - "2032": 1622105.3906300366, - "2033": 1581207.7399590015, - "2034": 1540310.0892879814, - "2035": 1499412.4386169463, - "2036": 1458514.7879459113, - "2037": 1417617.1372748762, - "2038": 1376719.4866038412, - "2039": 1335821.8359328061, - "2040": 1294924.185261786, - "2041": 1254026.534590751, - "2042": 1213128.8839197159, - "2043": 1172231.2332486808, - "2044": 1131333.5825776458, - "2045": 1090435.9319066107, - "2046": 1049538.2812355906, - "2047": 1008640.6305645555, - "2048": 967742.9798935205, - "2049": 926845.3292224854, - "2050": 885947.6785514504 - }, - "trendEmission": 36858045.5691468, - "historicalEmissionChangePercent": -0.7470653488961477, - "neededEmissionChangePercent": 34.84017810063848, - "hitNetZero": "2071-08-18", - "budgetRunsOut": "2026-05-25", - "electricCarChangePercent": 0.08139978209978142, - "electricCarChangeYearly": { - "2015": 0.02079287642684602, - "2016": 0.03159101329665291, - "2017": 0.045966015215707715, - "2018": 0.06642745857136112, - "2019": 0.12735198366716327, - "2020": 0.3041364066940322, - "2021": 0.4498621640248105, - "2022": 0.5794771968854282 - }, - "climatePlanLink": "https://www4.goteborg.se/prod/Stadsledningskontoret/LIS/Verksamhetshandbok/Forfattn.nsf//6B3CA866EF066429C12586B200449D53/$File/C12574360024D6C7WEBVCP4393.pdf?OpenElement", - "climatePlanYear": 2021, - "climatePlanComment": "Miljö– och klimatprogram 2021–2030", - "bicycleMetrePerCapita": 1.303877809, - "totalConsumptionEmission": 6268.6, - "electricVehiclePerChargePoints": 6.87375 - }, - { - "kommun": "Götene", - "län": "Västra Götalands län", - "emissions": { - "1990": 125898.433665682, - "2000": 127226.625493231, - "2005": 152396.784885105, - "2010": 117354.271229577, - "2015": 100280.325730626, - "2016": 109482.933782744, - "2017": 114070.34032074, - "2018": 115669.448163133, - "2019": 107719.196012143, - "2020": 102457.848211941, - "2021": 101111.400908884 - }, - "budget": 222408.65765556297, - "emissionBudget": { - "2024": 103418.47975100903, - "2025": 64961.2292289999, - "2026": 40804.71220523331, - "2027": 25631.05036517101, - "2028": 16099.87443405317, - "2029": 10112.96662053707, - "2030": 6352.3535097751555, - "2031": 3990.1639773245615, - "2032": 2506.3794924886224, - "2033": 1574.3558901505637, - "2034": 988.9150770184198, - "2035": 621.1765939789, - "2036": 390.18553753937795, - "2037": 245.09093739302213, - "2038": 153.95129191872718, - "2039": 96.70288316470385, - "2040": 60.74289793750553, - "2041": 38.155011816575694, - "2042": 23.966668963025352, - "2043": 15.054410779495683, - "2044": 9.456269632940582, - "2045": 5.939856210956243, - "2046": 3.7310581419899704, - "2047": 2.3436248899817387, - "2048": 1.472123300124298, - "2049": 0.9246987519345472, - "2050": 0.5808397854698131 - }, - "approximatedHistoricalEmission": { - "2021": 101111.400908884, - "2022": 104697.62903068285, - "2023": 104058.05439084605, - "2024": 103418.47975100903 - }, - "totalApproximatedHistoricalEmission": 311020.6237514754, - "trend": { - "2024": 103418.47975100903, - "2025": 102778.90511117224, - "2026": 102139.33047133544, - "2027": 101499.75583149865, - "2028": 100860.18119166186, - "2029": 100220.60655182484, - "2030": 99581.03191198804, - "2031": 98941.45727215125, - "2032": 98301.88263231446, - "2033": 97662.30799247767, - "2034": 97022.73335264088, - "2035": 96383.15871280385, - "2036": 95743.58407296706, - "2037": 95104.00943313027, - "2038": 94464.43479329348, - "2039": 93824.86015345668, - "2040": 93185.28551361966, - "2041": 92545.71087378287, - "2042": 91906.13623394608, - "2043": 91266.56159410928, - "2044": 90626.98695427249, - "2045": 89987.4123144357, - "2046": 89347.83767459868, - "2047": 88708.26303476188, - "2048": 88068.68839492509, - "2049": 87429.1137550883, - "2050": 86789.53911525151 - }, - "trendEmission": 2472704.245261387, - "historicalEmissionChangePercent": 0.28284877448952517, - "neededEmissionChangePercent": 37.1860528356238, - "hitNetZero": "2185-08-04", - "budgetRunsOut": "2026-03-02", - "electricCarChangePercent": 0.057968732887074007, - "electricCarChangeYearly": { - "2015": 0.00468384074941452, - "2016": 0.010893246187363835, - "2017": 0.022222222222222223, - "2018": 0.03902439024390244, - "2019": 0.04176904176904177, - "2020": 0.14869888475836432, - "2021": 0.28895184135977336, - "2022": 0.447098976109215 - }, - "climatePlanLink": "https://www.gotene.se/download/18.6b0120a216ade1dd99f5d17a/1560261659657/Antaget%20klimat%20och%20milj%C3%B6politiskt%20program,%20KF%2029%20april%202019%20%C2%A7%2070.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Klimat– och miljöpolitiskt program 2019–2024", - "bicycleMetrePerCapita": 3.76946887, - "totalConsumptionEmission": 5959.1, - "electricVehiclePerChargePoints": 10000000000.0 - }, - { - "kommun": "Habo", - "län": "Jönköpings län", - "emissions": { - "1990": 48883.490587102, - "2000": 45283.1807669867, - "2005": 38945.8434604974, - "2010": 39679.0819130585, - "2015": 34697.039058938, - "2016": 33840.573043111, - "2017": 36523.3789203481, - "2018": 34994.2432867874, - "2019": 37631.9692249418, - "2020": 32283.1789475432, - "2021": 33448.1706049408 - }, - "budget": 72108.42708770953, - "emissionBudget": { - "2024": 33541.335459115915, - "2025": 21065.300851824173, - "2026": 13229.851879891741, - "2027": 8308.87638372932, - "2028": 5218.306855349297, - "2029": 3277.305519902721, - "2030": 2058.27901051363, - "2031": 1292.681582291638, - "2032": 811.8557613717392, - "2033": 509.8779052023244, - "2034": 320.223727641283, - "2035": 201.11331496858742, - "2036": 126.30720951122903, - "2037": 79.3259818575679, - "2038": 49.81989089947996, - "2039": 31.288885067853645, - "2040": 19.65067187249852, - "2041": 12.34140827335953, - "2042": 7.750898247042039, - "2043": 4.867874257566027, - "2044": 3.057219825652746, - "2045": 1.9200563876186834, - "2046": 1.2058722440242495, - "2047": 0.7573360231943702, - "2048": 0.4756373279757898, - "2049": 0.2987192749787988, - "2050": 0.18760765817858865 - }, - "approximatedHistoricalEmission": { - "2021": 33448.1706049408, - "2022": 33952.249976868276, - "2023": 33746.792717992095, - "2024": 33541.335459115915 - }, - "totalApproximatedHistoricalEmission": 101193.79572688873, - "trend": { - "2024": 33541.335459115915, - "2025": 33335.87820023979, - "2026": 33130.42094136361, - "2027": 32924.96368248743, - "2028": 32719.506423611252, - "2029": 32514.049164735072, - "2030": 32308.59190585895, - "2031": 32103.13464698277, - "2032": 31897.67738810659, - "2033": 31692.22012923041, - "2034": 31486.76287035423, - "2035": 31281.30561147805, - "2036": 31075.848352601926, - "2037": 30870.391093725746, - "2038": 30664.933834849566, - "2039": 30459.476575973385, - "2040": 30254.019317097205, - "2041": 30048.562058221083, - "2042": 29843.104799344903, - "2043": 29637.647540468723, - "2044": 29432.190281592542, - "2045": 29226.733022716362, - "2046": 29021.27576384024, - "2047": 28815.81850496406, - "2048": 28610.36124608788, - "2049": 28404.9039872117, - "2050": 28199.44672833552 - }, - "trendEmission": 802630.1684368693, - "historicalEmissionChangePercent": -0.29908687846669246, - "neededEmissionChangePercent": 37.19599841961864, - "hitNetZero": "2187-02-22", - "budgetRunsOut": "2026-03-01", - "electricCarChangePercent": 0.0777714944006703, - "electricCarChangeYearly": { - "2015": 0.009456264775413711, - "2016": 0.01059322033898305, - "2017": 0.008316008316008316, - "2018": 0.023809523809523808, - "2019": 0.05429864253393665, - "2020": 0.2271186440677966, - "2021": 0.3662420382165605, - "2022": 0.5905511811023622 - }, - "climatePlanLink": "https://habokommun.se/contentassets/9b46e0c7ebec45209de948336c8fe7e5/klimatprogram-2021-2025.tga.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Klimatprogram 2021–2025", - "bicycleMetrePerCapita": 1.781741558, - "totalConsumptionEmission": 6088.9, - "electricVehiclePerChargePoints": 35.888888888888886 - }, - { - "kommun": "Hagfors", - "län": "Värmlands län", - "emissions": { - "1990": 144176.618979768, - "2000": 154632.817821695, - "2005": 102784.581737691, - "2010": 98129.2255796478, - "2015": 83660.462691986, - "2016": 78746.3488084873, - "2017": 81377.7294624902, - "2018": 81601.7518503302, - "2019": 72966.6635714358, - "2020": 68280.2344353904, - "2021": 79688.3208022694 - }, - "budget": 161838.05378735234, - "emissionBudget": { - "2024": 69204.56159468507, - "2025": 45125.6424414704, - "2026": 29424.702054782247, - "2027": 19186.72054665366, - "2028": 12510.92516247081, - "2029": 8157.894833582926, - "2030": 5319.4505803162865, - "2031": 3468.609862429364, - "2032": 2261.747561348128, - "2033": 1474.798906234263, - "2034": 961.6598470137575, - "2035": 627.0615318802156, - "2036": 408.88279362498645, - "2037": 266.61679982389666, - "2038": 173.85059742458154, - "2039": 113.36131198351791, - "2040": 73.91856712025, - "2041": 48.199464786587264, - "2042": 31.42902380580678, - "2043": 20.49366194748383, - "2044": 13.36313156313019, - "2045": 8.71358596775581, - "2046": 5.681795472773588, - "2047": 3.704881080406078, - "2048": 2.4158109678049478, - "2049": 1.575257749305951, - "2050": 1.02716520862687 - }, - "approximatedHistoricalEmission": { - "2021": 79688.3208022694, - "2022": 72151.6844737134, - "2023": 70678.12303419923, - "2024": 69204.56159468507 - }, - "totalApproximatedHistoricalEmission": 217276.24870638986, - "trend": { - "2024": 69204.56159468507, - "2025": 67731.00015517091, - "2026": 66257.43871565675, - "2027": 64783.87727614213, - "2028": 63310.31583662797, - "2029": 61836.75439711381, - "2030": 60363.19295759965, - "2031": 58889.63151808549, - "2032": 57416.07007857133, - "2033": 55942.50863905717, - "2034": 54468.94719954301, - "2035": 52995.38576002885, - "2036": 51521.82432051469, - "2037": 50048.262881000526, - "2038": 48574.701441486366, - "2039": 47101.140001972206, - "2040": 45627.578562458046, - "2041": 44154.017122943886, - "2042": 42680.455683429725, - "2043": 41206.894243915565, - "2044": 39733.332804401405, - "2045": 38259.771364887245, - "2046": 36786.209925373085, - "2047": 35312.648485858925, - "2048": 33839.087046344765, - "2049": 32365.525606830604, - "2050": 30891.964167316444 - }, - "trendEmission": 1301254.8349060148, - "historicalEmissionChangePercent": -0.4256575094313015, - "neededEmissionChangePercent": 34.793832369373675, - "hitNetZero": "2070-12-06", - "budgetRunsOut": "2026-05-26", - "electricCarChangePercent": 0.024103974436047428, - "electricCarChangeYearly": { - "2015": 0.12315270935960591, - "2016": 0.014925373134328358, - "2017": 0.014492753623188406, - "2018": 0.004651162790697674, - "2019": 0.025974025974025976, - "2020": 0.1724137931034483, - "2021": 0.20270270270270271, - "2022": 0.20754716981132076 - }, - "climatePlanLink": "https://www.hagfors.se/undersidor/miljo-och-energi/miljomal-och-hallbarhetsarbete/miljoverenskommelsen-2022-2025.html", - "climatePlanYear": 2022, - "climatePlanComment": "Miljööverenskommelse 2022–2025", - "bicycleMetrePerCapita": 5.447849972, - "totalConsumptionEmission": 6389.1, - "electricVehiclePerChargePoints": 11.5 - }, - { - "kommun": "Hallsberg", - "län": "Örebro län", - "emissions": { - "1990": 88287.0879328005, - "2000": 76951.5065093057, - "2005": 74175.4370123522, - "2010": 72161.4623308618, - "2015": 56256.3207997535, - "2016": 53538.9638275592, - "2017": 51407.9078539467, - "2018": 49046.3289189396, - "2019": 48200.1554008007, - "2020": 44025.6709436254, - "2021": 45571.0255636995 - }, - "budget": 103102.56229283934, - "emissionBudget": { - "2024": 38087.29105922347, - "2025": 26323.681610075848, - "2026": 18193.370918167184, - "2027": 12574.181312059172, - "2028": 8690.529994672712, - "2029": 6006.380034927135, - "2030": 4151.254428220859, - "2031": 2869.1013934539264, - "2032": 1982.9530924336084, - "2033": 1370.4998281912947, - "2034": 947.2083763551028, - "2035": 654.6543748358929, - "2036": 452.45836205644383, - "2037": 312.7124437931365, - "2038": 216.12833512153418, - "2039": 149.37511496442542, - "2040": 103.23923958461168, - "2041": 71.35285279979333, - "2042": 49.314869260504, - "2043": 34.08351922528382, - "2044": 23.556511457907884, - "2045": 16.28086666751545, - "2046": 11.25237155421133, - "2047": 7.776973313506432, - "2048": 5.374983720330093, - "2049": 3.7148706610113766, - "2050": 2.567498758339609 - }, - "approximatedHistoricalEmission": { - "2021": 45571.0255636995, - "2022": 41965.16419702163, - "2023": 40026.22762812255, - "2024": 38087.29105922347 - }, - "totalApproximatedHistoricalEmission": 123820.55013660566, - "trend": { - "2024": 38087.29105922347, - "2025": 36148.35449032439, - "2026": 34209.41792142531, - "2027": 32270.48135252623, - "2028": 30331.54478362715, - "2029": 28392.60821472807, - "2030": 26453.67164582899, - "2031": 24514.73507692991, - "2032": 22575.798508030828, - "2033": 20636.861939131748, - "2034": 18697.925370232668, - "2035": 16758.988801333588, - "2036": 14820.052232434507, - "2037": 12881.115663535427, - "2038": 10942.179094635881, - "2039": 9003.242525736801, - "2040": 7064.305956837721, - "2041": 5125.369387938641, - "2042": 3186.432819039561, - "2043": 1247.4962501404807, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 374304.2275640296, - "historicalEmissionChangePercent": -3.3800603676402745, - "neededEmissionChangePercent": 30.88591790593853, - "hitNetZero": "2043-08-18", - "budgetRunsOut": "2026-12-04", - "electricCarChangePercent": 0.06981823238845705, - "electricCarChangeYearly": { - "2015": 0.006944444444444444, - "2016": 0.012738853503184714, - "2017": 0.01509433962264151, - "2018": 0.047244094488188976, - "2019": 0.05365853658536585, - "2020": 0.1411042944785276, - "2021": 0.3333333333333333, - "2022": 0.5608465608465608 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.284930497, - "totalConsumptionEmission": 6134.7, - "electricVehiclePerChargePoints": 24.8125 - }, - { - "kommun": "Hallstahammar", - "län": "Västmanlands län", - "emissions": { - "1990": 73129.3098478903, - "2000": 57244.7550450608, - "2005": 53493.3858953871, - "2010": 45884.715119414, - "2015": 38362.8054134091, - "2016": 37449.1367773915, - "2017": 37259.2742064617, - "2018": 37676.3684815123, - "2019": 38100.7933788433, - "2020": 35362.624504384, - "2021": 35566.2660676553 - }, - "budget": 76954.40635448444, - "emissionBudget": { - "2024": 34599.369101902004, - "2025": 22070.16656404651, - "2026": 14078.067456379718, - "2027": 8980.085525464185, - "2028": 5728.196451289706, - "2029": 3653.8888734995526, - "2030": 2330.734291921477, - "2031": 1486.7234685043509, - "2032": 948.3477715425804, - "2033": 604.9299112057076, - "2034": 385.8713105595299, - "2035": 246.1387105427765, - "2036": 157.0063986871969, - "2037": 100.15088311124843, - "2038": 63.88401665046834, - "2039": 40.75019067843782, - "2040": 25.99363858748332, - "2041": 16.580762832460053, - "2042": 10.576499137703314, - "2043": 6.746513121268865, - "2044": 4.303450385884174, - "2045": 2.7450751063363406, - "2046": 1.7510222411636478, - "2047": 1.1169380691888773, - "2048": 0.7124699053361612, - "2049": 0.4544686764758125, - "2050": 0.28989544168918285 - }, - "approximatedHistoricalEmission": { - "2021": 35566.2660676553, - "2022": 35436.592202680185, - "2023": 35017.980652291095, - "2024": 34599.369101902004 - }, - "totalApproximatedHistoricalEmission": 105537.39043974993, - "trend": { - "2024": 34599.369101902004, - "2025": 34180.757551512914, - "2026": 33762.14600112382, - "2027": 33343.53445073473, - "2028": 32924.92290034576, - "2029": 32506.311349956668, - "2030": 32087.699799567577, - "2031": 31669.088249178487, - "2032": 31250.476698789396, - "2033": 30831.865148400306, - "2034": 30413.253598011215, - "2035": 29994.642047622125, - "2036": 29576.030497233034, - "2037": 29157.418946843944, - "2038": 28738.807396454853, - "2039": 28320.195846065762, - "2040": 27901.584295676672, - "2041": 27482.97274528758, - "2042": 27064.361194898607, - "2043": 26645.749644509517, - "2044": 26227.138094120426, - "2045": 25808.526543731336, - "2046": 25389.914993342245, - "2047": 24971.303442953154, - "2048": 24552.691892564064, - "2049": 24134.080342174973, - "2050": 23715.468791785883 - }, - "trendEmission": 758092.8926179431, - "historicalEmissionChangePercent": -1.2089132837078023, - "neededEmissionChangePercent": 36.212228324032466, - "hitNetZero": "2106-08-07", - "budgetRunsOut": "2026-04-04", - "electricCarChangePercent": 0.08123456469983636, - "electricCarChangeYearly": { - "2015": 0.011363636363636364, - "2016": 0.015105740181268883, - "2017": 0.03503184713375796, - "2018": 0.058823529411764705, - "2019": 0.046296296296296294, - "2020": 0.28095238095238095, - "2021": 0.405982905982906, - "2022": 0.6033755274261603 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 1.03456596, - "totalConsumptionEmission": 6200.3, - "electricVehiclePerChargePoints": 79.16666666666667 - }, - { - "kommun": "Halmstad", - "län": "Hallands län", - "emissions": { - "1990": 607658.925796055, - "2000": 590431.427749749, - "2005": 592836.111457245, - "2010": 579832.494123395, - "2015": 361260.187872938, - "2016": 362912.790497176, - "2017": 344683.628991093, - "2018": 341172.371066685, - "2019": 330878.761426481, - "2020": 306959.855974128, - "2021": 323846.285250688 - }, - "budget": 702578.1531363257, - "emissionBudget": { - "2024": 287826.45919471607, - "2025": 191078.8027179013, - "2026": 126851.12046424716, - "2027": 84212.41149805172, - "2028": 55905.933068332546, - "2029": 37114.16520014022, - "2030": 24638.91009241649, - "2031": 16356.986268409708, - "2032": 10858.881289042574, - "2033": 7208.864818652388, - "2034": 4785.7353432939235, - "2035": 3177.0969982391903, - "2036": 2109.173327013321, - "2037": 1400.2128754173843, - "2038": 929.5566520656257, - "2039": 617.1030023858948, - "2040": 409.6749936730057, - "2041": 271.9701569949994, - "2042": 180.5523096069764, - "2043": 119.8629175516961, - "2044": 79.57316655366432, - "2045": 52.8260863719282, - "2046": 35.06955324559605, - "2047": 23.281557452252486, - "2048": 15.455883159007742, - "2049": 10.26066768577747, - "2050": 6.811729894360638 - }, - "approximatedHistoricalEmission": { - "2021": 323846.285250688, - "2022": 304823.0623716749, - "2023": 296324.7607831955, - "2024": 287826.45919471607 - }, - "totalApproximatedHistoricalEmission": 906984.1953775724, - "trend": { - "2024": 287826.45919471607, - "2025": 279328.1576062329, - "2026": 270829.8560177535, - "2027": 262331.55442927405, - "2028": 253833.2528407909, - "2029": 245334.95125231147, - "2030": 236836.64966383204, - "2031": 228338.34807534888, - "2032": 219840.04648686945, - "2033": 211341.74489839002, - "2034": 202843.44330990687, - "2035": 194345.14172142744, - "2036": 185846.840132948, - "2037": 177348.53854446858, - "2038": 168850.23695598543, - "2039": 160351.935367506, - "2040": 151853.63377902657, - "2041": 143355.3321905434, - "2042": 134857.03060206398, - "2043": 126358.72901358455, - "2044": 117860.4274251014, - "2045": 109362.12583662197, - "2046": 100863.82424814254, - "2047": 92365.52265965939, - "2048": 83867.22107117996, - "2049": 75368.91948270053, - "2050": 66870.61789421737 - }, - "trendEmission": 4611062.002156137, - "historicalEmissionChangePercent": -1.7215160851177878, - "neededEmissionChangePercent": 33.61319065227582, - "hitNetZero": "2057-11-05", - "budgetRunsOut": "2026-07-15", - "electricCarChangePercent": 0.06722475368112807, - "electricCarChangeYearly": { - "2015": 0.012723845428840716, - "2016": 0.016216216216216217, - "2017": 0.02810077519379845, - "2018": 0.058524173027989825, - "2019": 0.07479589149328417, - "2020": 0.24431818181818182, - "2021": 0.33992746455654466, - "2022": 0.49320943531093636 - }, - "climatePlanLink": "https://www.halmstad.se/download/18.1ab5eabc17db948137827c20/1643015898074/Plan-for-energi-och-klimat-anpassad.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Plan för energi och klimat. Gäller tills vidare.", - "bicycleMetrePerCapita": 2.855029528, - "totalConsumptionEmission": 6215.6, - "electricVehiclePerChargePoints": 11.330143540669857 - }, - { - "kommun": "Hammarö", - "län": "Värmlands län", - "emissions": { - "1990": 139358.545133385, - "2000": 268969.818569945, - "2005": 278723.604932501, - "2010": 124457.119867858, - "2015": 72442.0358038133, - "2016": 72163.2340816464, - "2017": 72579.9382627036, - "2018": 65165.6119649118, - "2019": 70878.8132235381, - "2020": 58698.3802797512, - "2021": 60909.6622028492 - }, - "budget": 140069.7713415473, - "emissionBudget": { - "2024": 53999.39223577641, - "2025": 36724.899162758804, - "2026": 24976.544414165306, - "2027": 16986.50738584927, - "2028": 11552.496149381945, - "2029": 7856.833912347665, - "2030": 5343.420013130136, - "2031": 3634.051292830262, - "2032": 2471.5123958943896, - "2033": 1680.8715757840384, - "2034": 1143.1580351254072, - "2035": 777.4599273964302, - "2036": 528.7492368812796, - "2037": 359.60149925512343, - "2038": 244.56439697059523, - "2039": 166.32785010486484, - "2040": 113.11930135044412, - "2041": 76.93225355792853, - "2042": 52.3215009891693, - "2043": 35.58376804467753, - "2044": 24.20046298976632, - "2045": 16.458695666622912, - "2046": 11.19353225436486, - "2047": 7.612703148986228, - "2048": 5.177387076540227, - "2049": 3.5211325616834848, - "2050": 2.3947165498069842 - }, - "approximatedHistoricalEmission": { - "2021": 60909.6622028492, - "2022": 58515.67462476529, - "2023": 56257.53343027085, - "2024": 53999.39223577641 - }, - "totalApproximatedHistoricalEmission": 172227.73527434893, - "trend": { - "2024": 53999.39223577641, - "2025": 51741.25104128197, - "2026": 49483.10984678753, - "2027": 47224.968652293086, - "2028": 44966.82745779771, - "2029": 42708.68626330327, - "2030": 40450.54506880883, - "2031": 38192.40387431439, - "2032": 35934.26267981995, - "2033": 33676.12148532551, - "2034": 31417.980290831067, - "2035": 29159.839096336626, - "2036": 26901.697901841253, - "2037": 24643.556707346812, - "2038": 22385.41551285237, - "2039": 20127.27431835793, - "2040": 17869.13312386349, - "2041": 15610.991929369047, - "2042": 13352.850734874606, - "2043": 11094.709540380165, - "2044": 8836.568345884793, - "2045": 6578.427151390351, - "2046": 4320.28595689591, - "2047": 2062.144762401469, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 645738.7478602463, - "historicalEmissionChangePercent": -2.4455472248417798, - "neededEmissionChangePercent": 31.990162032921294, - "hitNetZero": "2047-11-24", - "budgetRunsOut": "2026-10-02", - "electricCarChangePercent": 0.0712436857988574, - "electricCarChangeYearly": { - "2015": 0.005434782608695652, - "2016": 0.027649769585253458, - "2017": 0.015184381778741865, - "2018": 0.3464163822525597, - "2019": 0.12445730824891461, - "2020": 0.31900138696255204, - "2021": 0.46029173419773095, - "2022": 0.4528301886792453 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.259755972, - "totalConsumptionEmission": 6432.4, - "electricVehiclePerChargePoints": 59.1875 - }, - { - "kommun": "Haninge", - "län": "Stockholms län", - "emissions": { - "1990": 208258.327223284, - "2000": 170476.605591408, - "2005": 154950.37936986, - "2010": 159443.913909494, - "2015": 141095.3670928, - "2016": 136570.796830567, - "2017": 115923.591761438, - "2018": 122747.837961976, - "2019": 120952.837918138, - "2020": 111395.316708932, - "2021": 107898.699030336 - }, - "budget": 253747.94311969623, - "emissionBudget": { - "2024": 91316.6956990324, - "2025": 63717.67321660935, - "2026": 44460.01740491839, - "2027": 31022.6825283755, - "2028": 21646.568927116707, - "2029": 15104.23690433038, - "2030": 10539.220937519885, - "2031": 7353.908620038417, - "2032": 5131.306413678956, - "2033": 3580.4504613119925, - "2034": 2498.3161153142028, - "2035": 1743.239706702025, - "2036": 1216.3731628654903, - "2037": 848.7436728586987, - "2038": 592.224363550294, - "2039": 413.233945651977, - "2040": 288.3405417761058, - "2041": 201.19418771505866, - "2042": 140.3864365412545, - "2043": 97.95686340931302, - "2044": 68.35095558658924, - "2045": 47.69296368829761, - "2046": 33.278522090180736, - "2047": 23.22061677157597, - "2048": 16.202553760988465, - "2049": 11.305588949690256, - "2050": 7.888654059405556 - }, - "approximatedHistoricalEmission": { - "2021": 107898.699030336, - "2022": 101667.53271860257, - "2023": 96492.11420881748, - "2024": 91316.6956990324 - }, - "totalApproximatedHistoricalEmission": 297767.34429210424, - "trend": { - "2024": 91316.6956990324, - "2025": 86141.27718924917, - "2026": 80965.85867946409, - "2027": 75790.44016968086, - "2028": 70615.02165989578, - "2029": 65439.603150112554, - "2030": 60264.18464032747, - "2031": 55088.766130544245, - "2032": 49913.34762075916, - "2033": 44737.92911097407, - "2034": 39562.51060119085, - "2035": 34387.092091405764, - "2036": 29211.67358162254, - "2037": 24036.255071837455, - "2038": 18860.83656205423, - "2039": 13685.418052269146, - "2040": 8509.99954248406, - "2041": 3334.5810327008367, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 806203.1427360885, - "historicalEmissionChangePercent": -4.156891058175606, - "neededEmissionChangePercent": 30.223413441705908, - "hitNetZero": "2041-08-19", - "budgetRunsOut": "2027-01-15", - "electricCarChangePercent": 0.0666633859450445, - "electricCarChangeYearly": { - "2015": 0.011811023622047244, - "2016": 0.020225593154414623, - "2017": 0.04060324825986079, - "2018": 0.06451612903225806, - "2019": 0.07324595219737856, - "2020": 0.2308457711442786, - "2021": 0.3701392222755641, - "2022": 0.47905372104484967 - }, - "climatePlanLink": "https://www.haninge.se/globalassets/globala-katalogen/styrdokument/regler-och-styrande-dokument/bygga-bo-och-miljo/klimat-miljopolitiskt-program/haninge-kommun-klimat-och-miljopolitiskt-program.pdf", - "climatePlanYear": 2017, - "climatePlanComment": "Klimat– och miljöpolitisk program. ", - "bicycleMetrePerCapita": 2.076686121, - "totalConsumptionEmission": 5779.9, - "electricVehiclePerChargePoints": 47.013513513513516 - }, - { - "kommun": "Haparanda", - "län": "Norrbottens län", - "emissions": { - "1990": 61232.8560006957, - "2000": 61343.6423654567, - "2005": 42906.7893909288, - "2010": 34151.1480106581, - "2015": 30646.9097967199, - "2016": 30366.5687169065, - "2017": 28473.3431860238, - "2018": 28646.0984306816, - "2019": 29051.5958989258, - "2020": 28457.5268879606, - "2021": 26695.9585691294 - }, - "budget": 59939.042617100014, - "emissionBudget": { - "2024": 25671.282077814918, - "2025": 16727.985798419268, - "2026": 10900.332442450992, - "2027": 7102.902213557437, - "2028": 4628.411116974608, - "2029": 3015.976965985146, - "2030": 1965.2785436438724, - "2031": 1280.6197784887204, - "2032": 834.4807011507681, - "2033": 543.7664264524017, - "2034": 354.3304550111977, - "2035": 230.8897078614184, - "2036": 150.45293579025378, - "2037": 98.03852279761452, - "2038": 63.88411034888567, - "2039": 41.62832566840659, - "2040": 27.125954928245253, - "2041": 17.675883402815657, - "2042": 11.51800387844061, - "2043": 7.5053908379278065, - "2044": 4.890681773036283, - "2045": 3.186878434662991, - "2046": 2.076641791194434, - "2047": 1.3531865797043692, - "2048": 0.8817668638166029, - "2049": 0.5745791554442041, - "2050": 0.3744087234600827 - }, - "approximatedHistoricalEmission": { - "2021": 26695.9585691294, - "2022": 26749.33097979799, - "2023": 26210.306528806454, - "2024": 25671.282077814918 - }, - "totalApproximatedHistoricalEmission": 79143.2578320766, - "trend": { - "2024": 25671.282077814918, - "2025": 25132.257626823615, - "2026": 24593.23317583208, - "2027": 24054.208724840544, - "2028": 23515.18427384901, - "2029": 22976.159822857706, - "2030": 22437.13537186617, - "2031": 21898.110920874635, - "2032": 21359.086469883332, - "2033": 20820.062018891796, - "2034": 20281.03756790026, - "2035": 19742.013116908725, - "2036": 19202.988665917423, - "2037": 18663.964214925887, - "2038": 18124.93976393435, - "2039": 17585.915312942816, - "2040": 17046.890861951513, - "2041": 16507.866410959978, - "2042": 15968.841959968442, - "2043": 15429.81750897714, - "2044": 14890.793057985604, - "2045": 14351.768606994068, - "2046": 13812.744156002533, - "2047": 13273.71970501123, - "2048": 12734.695254019694, - "2049": 12195.670803028159, - "2050": 11656.646352036856 - }, - "trendEmission": 485263.0695880726, - "historicalEmissionChangePercent": -2.2270151852603046, - "neededEmissionChangePercent": 34.83774691223714, - "hitNetZero": "2071-08-05", - "budgetRunsOut": "2026-05-25", - "electricCarChangePercent": 0.03895314311746793, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.006289308176100629, - "2017": 0.005813953488372093, - "2018": 0.03076923076923077, - "2019": 0.030303030303030304, - "2020": 0.09803921568627451, - "2021": 0.1651376146788991, - "2022": 0.31451612903225806 - }, - "climatePlanLink": "/data/climatePlans/Haparanda klimatstrategi 2020_2050.pdf", - "climatePlanYear": 2012, - "climatePlanComment": "Klimatstrategi 2020–2050", - "bicycleMetrePerCapita": 2.869357799, - "totalConsumptionEmission": 6173.1, - "electricVehiclePerChargePoints": 3.3333333333333335 - }, - { - "kommun": "Heby", - "län": "Uppsala län", - "emissions": { - "1990": 93031.7724892031, - "2000": 83081.4631290114, - "2005": 79795.9806252522, - "2010": 69353.5585430307, - "2015": 57937.4738947193, - "2016": 56029.4589727667, - "2017": 52939.4052150503, - "2018": 47714.7032588512, - "2019": 46888.4636573012, - "2020": 44694.1297931206, - "2021": 46040.8639867489 - }, - "budget": 104346.18247107483, - "emissionBudget": { - "2024": 36518.19347387552, - "2025": 25734.668569630143, - "2026": 18135.430682311493, - "2027": 12780.185808223603, - "2028": 9006.301099428974, - "2029": 6346.813787431938, - "2030": 4472.651403459091, - "2031": 3151.913896777312, - "2032": 2221.1794116158208, - "2033": 1565.2832343010461, - "2034": 1103.067852498049, - "2035": 777.3409058188652, - "2036": 547.7984717720368, - "2037": 386.0380476950017, - "2038": 272.04415847692337, - "2039": 191.71173567816075, - "2040": 135.10082261093893, - "2041": 95.20665078528954, - "2042": 67.09290275644962, - "2043": 47.28091538938925, - "2044": 33.319246421242205, - "2045": 23.48034450975555, - "2046": 16.54679014424878, - "2047": 11.660657873399272, - "2048": 8.217360639442727, - "2049": 5.790841015300093, - "2050": 4.080852859678794 - }, - "approximatedHistoricalEmission": { - "2021": 46040.8639867489, - "2022": 41119.0098768007, - "2023": 38818.60167533811, - "2024": 36518.19347387552 - }, - "totalApproximatedHistoricalEmission": 121217.14028245103, - "trend": { - "2024": 36518.19347387552, - "2025": 34217.78527241293, - "2026": 31917.377070950344, - "2027": 29616.968869487755, - "2028": 27316.560668025166, - "2029": 25016.152466562577, - "2030": 22715.744265099987, - "2031": 20415.3360636374, - "2032": 18114.92786217481, - "2033": 15814.51966071222, - "2034": 13514.11145924963, - "2035": 11213.703257787041, - "2036": 8913.295056324452, - "2037": 6612.886854861863, - "2038": 4312.478653399274, - "2039": 2012.0704519366845, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 289983.0146695599, - "historicalEmissionChangePercent": -3.6792994931285694, - "neededEmissionChangePercent": 29.529184985450406, - "hitNetZero": "2039-11-12", - "budgetRunsOut": "2027-03-05", - "electricCarChangePercent": 0.07250361450039211, - "electricCarChangeYearly": { - "2015": 0.004545454545454545, - "2016": 0.0, - "2017": 0.029850746268656716, - "2018": 0.05759162303664921, - "2019": 0.07425742574257425, - "2020": 0.21604938271604937, - "2021": 0.4319526627218935, - "2022": 0.4838709677419355 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete med handlingsplan pågår 2023", - "bicycleMetrePerCapita": 2.222548283, - "totalConsumptionEmission": 6058.8, - "electricVehiclePerChargePoints": 20.8 - }, - { - "kommun": "Hedemora", - "län": "Dalarnas län", - "emissions": { - "1990": 84059.691877911, - "2000": 76338.4706051928, - "2005": 70672.2523658026, - "2010": 71587.3777378244, - "2015": 55731.8626122277, - "2016": 55058.6970512133, - "2017": 57269.8436265632, - "2018": 55419.4380823729, - "2019": 60329.8119198529, - "2020": 60331.1230276874, - "2021": 58791.6820261748 - }, - "budget": 119361.5910763499, - "emissionBudget": { - "2024": 62444.12515403004, - "2025": 37007.52417250517, - "2026": 21932.517142329845, - "2027": 12998.310990930295, - "2028": 7703.4517980999735, - "2029": 4565.452361238089, - "2030": 2705.7163215943488, - "2031": 1603.5433586162155, - "2032": 950.340315590438, - "2033": 563.2193919694867, - "2034": 333.79209351272726, - "2035": 197.8219558492146, - "2036": 117.23922458491795, - "2037": 69.48185160877539, - "2038": 41.17843426614523, - "2039": 24.40440790436687, - "2040": 14.463277581497923, - "2041": 8.571664562369033, - "2042": 5.079998842293103, - "2043": 3.0106624040088263, - "2044": 1.7842697197979493, - "2045": 1.057447832327106, - "2046": 0.6266966847478204, - "2047": 0.3714119246994845, - "2048": 0.2201173568749365, - "2049": 0.13045259878721255, - "2050": 0.07731276066524104 - }, - "approximatedHistoricalEmission": { - "2021": 58791.6820261748, - "2022": 60816.67669059592, - "2023": 61630.40092231287, - "2024": 62444.12515403004 - }, - "totalApproximatedHistoricalEmission": 183064.9812030112, - "trend": { - "2024": 62444.12515403004, - "2025": 63257.84938574722, - "2026": 64071.5736174644, - "2027": 64885.297849181574, - "2028": 65699.02208089852, - "2029": 66512.7463126157, - "2030": 67326.47054433287, - "2031": 68140.19477605005, - "2032": 68953.91900776722, - "2033": 69767.64323948417, - "2034": 70581.36747120135, - "2035": 71395.09170291852, - "2036": 72208.8159346357, - "2037": 73022.54016635264, - "2038": 73836.26439806982, - "2039": 74649.988629787, - "2040": 75463.71286150417, - "2041": 76277.43709322135, - "2042": 77091.1613249383, - "2043": 77904.88555665547, - "2044": 78718.60978837265, - "2045": 79532.33402008982, - "2046": 80346.05825180677, - "2047": 81159.78248352394, - "2048": 81973.50671524112, - "2049": 82787.2309469583, - "2050": 83600.95517867547 - }, - "trendEmission": 1898586.0443251715, - "historicalEmissionChangePercent": 0.9813313647620255, - "neededEmissionChangePercent": 40.734978540864766, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-11-21", - "electricCarChangePercent": 0.07311584698923557, - "electricCarChangeYearly": { - "2015": 0.005780346820809248, - "2016": 0.005, - "2017": 0.02185792349726776, - "2018": 0.046822742474916385, - "2019": 0.059027777777777776, - "2020": 0.23214285714285715, - "2021": 0.40425531914893614, - "2022": 0.5061224489795918 - }, - "climatePlanLink": "https://hedemora.se/wp-content/uploads/2022/10/Energi-_och_klimatstrategi_2020-2025.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Energi– och klimatstrategi 2020–2025 ", - "bicycleMetrePerCapita": 1.72905197, - "totalConsumptionEmission": 6114.4, - "electricVehiclePerChargePoints": 16.576923076923077 - }, - { - "kommun": "Helsingborg", - "län": "Skåne län", - "emissions": { - "1990": 980634.250640479, - "2000": 730080.51304034, - "2005": 679152.080551871, - "2010": 530525.886311344, - "2015": 473581.331344682, - "2016": 464511.702751077, - "2017": 438266.82116507, - "2018": 441900.17502892, - "2019": 447991.34143769, - "2020": 426845.992195317, - "2021": 433330.272411755 - }, - "budget": 926148.7113491021, - "emissionBudget": { - "2024": 406698.2171254307, - "2025": 262156.8562438431, - "2026": 168985.78449990842, - "2027": 108927.89825221348, - "2028": 70214.70505793345, - "2029": 45260.25825778202, - "2030": 29174.671827944527, - "2031": 18805.93503069356, - "2032": 12122.268057182262, - "2033": 7813.989711776747, - "2034": 5036.882118736572, - "2035": 3246.764126117532, - "2036": 2092.85765323567, - "2037": 1349.0518518032202, - "2038": 869.5961218575815, - "2039": 560.5399185650045, - "2040": 361.32290888519043, - "2041": 232.90802342762245, - "2042": 150.1320454446981, - "2043": 96.77481581656717, - "2044": 62.38085245951236, - "2045": 40.21057256209489, - "2046": 25.91965454176707, - "2047": 16.70775740701227, - "2048": 10.769786963084362, - "2049": 6.942183107203939, - "2050": 4.474917327440375 - }, - "approximatedHistoricalEmission": { - "2021": 433330.272411755, - "2022": 420009.65124240704, - "2023": 413353.93418391794, - "2024": 406698.2171254307 - }, - "totalApproximatedHistoricalEmission": 1253377.830194918, - "trend": { - "2024": 406698.2171254307, - "2025": 400042.5000669416, - "2026": 393386.7830084525, - "2027": 386731.06594996527, - "2028": 380075.34889147617, - "2029": 373419.63183298707, - "2030": 366763.91477449983, - "2031": 360108.19771601073, - "2032": 353452.48065752164, - "2033": 346796.7635990344, - "2034": 340141.0465405453, - "2035": 333485.3294820562, - "2036": 326829.61242356896, - "2037": 320173.89536507986, - "2038": 313518.17830659077, - "2039": 306862.46124810353, - "2040": 300206.74418961443, - "2041": 293551.0271311272, - "2042": 286895.3100726381, - "2043": 280239.593014149, - "2044": 273583.87595566176, - "2045": 266928.15889717266, - "2046": 260272.44183868356, - "2047": 253616.72478019632, - "2048": 246961.00772170722, - "2049": 240305.29066321813, - "2050": 233649.5736047309 - }, - "trendEmission": 8324521.279492083, - "historicalEmissionChangePercent": -1.4264330686486872, - "neededEmissionChangePercent": 35.54020027508735, - "hitNetZero": "2085-01-23", - "budgetRunsOut": "2026-04-28", - "electricCarChangePercent": 0.06302096256173736, - "electricCarChangeYearly": { - "2015": 0.019943019943019943, - "2016": 0.047507225433526014, - "2017": 0.050354345393509886, - "2018": 0.07745415318230853, - "2019": 0.07881475508969965, - "2020": 0.2603010115963484, - "2021": 0.3439040068566531, - "2022": 0.4743110695936478 - }, - "climatePlanLink": "https://helsingborg.se/bo-bygga-och-miljo/klimat-och-miljo/helsingborgs-klimat-och-energiplan/", - "climatePlanYear": 2018, - "climatePlanComment": "Klimat– och energiplan 2018–2024 ", - "bicycleMetrePerCapita": 3.099622293, - "totalConsumptionEmission": 6386.7, - "electricVehiclePerChargePoints": 9.923913043478262 - }, - { - "kommun": "Herrljunga", - "län": "Västra Götalands län", - "emissions": { - "1990": 45510.575936091, - "2000": 37577.5855076866, - "2005": 31767.7828417623, - "2010": 30225.8428770312, - "2015": 25988.0341386979, - "2016": 25283.9936728749, - "2017": 24969.9888472132, - "2018": 23801.644870395, - "2019": 23530.005353935, - "2020": 20804.7144727432, - "2021": 21156.8159179098 - }, - "budget": 49036.86490494457, - "emissionBudget": { - "2024": 18313.843205701327, - "2025": 12606.169160259245, - "2026": 8677.343095718921, - "2027": 5972.971030580108, - "2028": 4111.440856792974, - "2029": 2830.073313994425, - "2030": 1948.0554972231444, - "2031": 1340.9264705249218, - "2032": 923.0146686875715, - "2033": 635.3488407749301, - "2034": 437.336656900611, - "2035": 301.03675208680687, - "2036": 207.21593920165844, - "2037": 142.6352269667183, - "2038": 98.18167487612091, - "2039": 67.58247234205027, - "2040": 46.51978664681386, - "2041": 32.02147649633365, - "2042": 22.041695177797553, - "2043": 15.172202517475139, - "2044": 10.44364906484839, - "2045": 7.188791849046541, - "2046": 4.948340175739929, - "2047": 3.4061454287467607, - "2048": 2.344589553210663, - "2049": 1.6138771194649641, - "2050": 1.1108977915413003 - }, - "approximatedHistoricalEmission": { - "2021": 21156.8159179098, - "2022": 20091.85724540893, - "2023": 19202.850225555012, - "2024": 18313.843205701327 - }, - "totalApproximatedHistoricalEmission": 59030.037032769505, - "trend": { - "2024": 18313.843205701327, - "2025": 17424.836185847642, - "2026": 16535.829165993724, - "2027": 15646.822146140039, - "2028": 14757.815126286354, - "2029": 13868.808106432436, - "2030": 12979.801086578751, - "2031": 12090.794066724833, - "2032": 11201.787046871148, - "2033": 10312.780027017463, - "2034": 9423.773007163545, - "2035": 8534.76598730986, - "2036": 7645.758967456175, - "2037": 6756.751947602257, - "2038": 5867.744927748572, - "2039": 4978.737907894654, - "2040": 4089.730888040969, - "2041": 3200.723868187284, - "2042": 2311.716848333366, - "2043": 1422.7098284796812, - "2044": 533.7028086259961, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 188742.3115475854, - "historicalEmissionChangePercent": -3.2768408169689938, - "neededEmissionChangePercent": 31.165899922443437, - "hitNetZero": "2044-08-02", - "budgetRunsOut": "2026-11-17", - "electricCarChangePercent": 0.0742159424778129, - "electricCarChangeYearly": { - "2015": 0.0056179775280898875, - "2016": 0.005405405405405406, - "2017": 0.046153846153846156, - "2018": 0.08552631578947369, - "2019": 0.07100591715976332, - "2020": 0.2608695652173913, - "2021": 0.3614457831325301, - "2022": 0.551948051948052 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Står bakom klimatlöften inom Västra Götalands klimat 2030. Har miljömål från 2014 (med målår 2020).", - "bicycleMetrePerCapita": 3.29488126, - "totalConsumptionEmission": 5999.6, - "electricVehiclePerChargePoints": 28.90909090909091 - }, - { - "kommun": "Hjo", - "län": "Västra Götalands län", - "emissions": { - "1990": 34724.4962775096, - "2000": 32271.2346918504, - "2005": 28275.9749482549, - "2010": 28445.0649875301, - "2015": 23150.353856557, - "2016": 22460.6712002234, - "2017": 21354.8414578989, - "2018": 20692.4586557533, - "2019": 20599.2911400582, - "2020": 18618.4349454047, - "2021": 18812.6023604529 - }, - "budget": 43157.67850720536, - "emissionBudget": { - "2024": 16215.533948951634, - "2025": 11136.655883548501, - "2026": 7648.536561239409, - "2027": 5252.933388651669, - "2028": 3607.65866315479, - "2029": 2477.7015177754934, - "2030": 1701.6589939300432, - "2031": 1168.6812599698233, - "2032": 802.6378330068658, - "2033": 551.2431088272882, - "2034": 378.58789174092436, - "2035": 260.0101288844313, - "2036": 178.57218521072605, - "2037": 122.64147349854728, - "2038": 84.2288568297781, - "2039": 57.84748112093819, - "2040": 39.729033468898386, - "2041": 27.28547673619516, - "2042": 18.739374601304398, - "2043": 12.870002743334165, - "2044": 8.838980709735083, - "2045": 6.070517741539253, - "2046": 4.169166882529291, - "2047": 2.863339378029994, - "2048": 1.9665109660478044, - "2049": 1.3505787715066166, - "2050": 0.9275631051833048 - }, - "approximatedHistoricalEmission": { - "2021": 18812.6023604529, - "2022": 17747.910900079412, - "2023": 16981.722424515523, - "2024": 16215.533948951634 - }, - "totalApproximatedHistoricalEmission": 52243.701479297204, - "trend": { - "2024": 16215.533948951634, - "2025": 15449.345473387511, - "2026": 14683.156997823622, - "2027": 13916.968522259733, - "2028": 13150.780046695843, - "2029": 12384.591571131954, - "2030": 11618.403095567832, - "2031": 10852.214620003942, - "2032": 10086.026144440053, - "2033": 9319.837668876164, - "2034": 8553.649193312274, - "2035": 7787.460717748385, - "2036": 7021.272242184263, - "2037": 6255.083766620373, - "2038": 5488.895291056484, - "2039": 4722.706815492595, - "2040": 3956.5183399287052, - "2041": 3190.329864364583, - "2042": 2424.1413888006937, - "2043": 1657.9529132368043, - "2044": 891.7644376729149, - "2045": 125.57596210902557, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 171644.44204718957, - "historicalEmissionChangePercent": -3.3379751986796222, - "neededEmissionChangePercent": 31.321065845824304, - "hitNetZero": "2045-02-23", - "budgetRunsOut": "2026-11-08", - "electricCarChangePercent": 0.0739392676549078, - "electricCarChangeYearly": { - "2015": 0.015151515151515152, - "2016": 0.015151515151515152, - "2017": 0.014492753623188406, - "2018": 0.023696682464454975, - "2019": 0.14659685863874344, - "2020": 0.1597222222222222, - "2021": 0.43147208121827413, - "2022": 0.5252525252525253 - }, - "climatePlanLink": "https://hjo.se/globalassets/dokument/styrdokument/ovrigt/hallbarhetsstrategi-for-hjo-kommun.pdf", - "climatePlanYear": 2018, - "climatePlanComment": "Hållbarhetsstrategi", - "bicycleMetrePerCapita": 2.510562925, - "totalConsumptionEmission": 6153.7, - "electricVehiclePerChargePoints": 32.583333333333336 - }, - { - "kommun": "Hofors", - "län": "Gävleborgs län", - "emissions": { - "1990": 152849.079553738, - "2000": 145840.783097756, - "2005": 132563.270563869, - "2010": 131983.968361946, - "2015": 108607.062471678, - "2016": 102151.316390874, - "2017": 112356.401887878, - "2018": 106411.729501505, - "2019": 93703.8371939031, - "2020": 75333.0951457577, - "2021": 88139.5693861936 - }, - "budget": 203423.5823121189, - "emissionBudget": { - "2024": 69452.25461668707, - "2025": 49364.05877607853, - "2026": 35086.122290731946, - "2027": 24937.900325099454, - "2028": 17724.924614677955, - "2029": 12598.211898369334, - "2030": 8954.336703061816, - "2031": 6364.406825239873, - "2032": 4523.581766063086, - "2033": 3215.1923276034745, - "2034": 2285.238167028212, - "2035": 1624.2616142142404, - "2036": 1154.4642608698737, - "2037": 820.5499150890046, - "2038": 583.2161167512004, - "2039": 414.52815067497136, - "2040": 294.6310685980509, - "2041": 209.41271766919027, - "2042": 148.84270871454905, - "2043": 105.79181715449133, - "2044": 75.19285743659233, - "2045": 53.44426404192508, - "2046": 37.98617922442465, - "2047": 26.9991520687453, - "2048": 19.189985076533414, - "2049": 13.63952194868648, - "2050": 9.69446084750718 - }, - "approximatedHistoricalEmission": { - "2021": 88139.5693861936, - "2022": 79001.64650530554, - "2023": 74226.95056099631, - "2024": 69452.25461668707 - }, - "totalApproximatedHistoricalEmission": 232024.50906774218, - "trend": { - "2024": 69452.25461668707, - "2025": 64677.55867237784, - "2026": 59902.862728068605, - "2027": 55128.16678375937, - "2028": 50353.470839450136, - "2029": 45578.7748951409, - "2030": 40804.07895083167, - "2031": 36029.38300652243, - "2032": 31254.687062213197, - "2033": 26479.991117903963, - "2034": 21705.295173594728, - "2035": 16930.599229285493, - "2036": 12155.903284976259, - "2037": 7381.207340667024, - "2038": 2606.5113963577896, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 505714.61778949294, - "historicalEmissionChangePercent": -2.6320628443981593, - "neededEmissionChangePercent": 28.923749058222835, - "hitNetZero": "2038-07-15", - "budgetRunsOut": "2027-04-22", - "electricCarChangePercent": 0.05644063397675594, - "electricCarChangeYearly": { - "2015": 0.027586206896551724, - "2016": 0.006329113924050633, - "2017": 0.021739130434782608, - "2018": 0.048, - "2019": 0.04672897196261682, - "2020": 0.10891089108910891, - "2021": 0.2702702702702703, - "2022": 0.4791666666666667 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Hänvisar till Sandvikens kommun Energi- och klimatstrategi från 2007.", - "bicycleMetrePerCapita": 3.464511233, - "totalConsumptionEmission": 6425.2, - "electricVehiclePerChargePoints": 25.857142857142858 - }, - { - "kommun": "Huddinge", - "län": "Stockholms län", - "emissions": { - "1990": 198892.114399642, - "2000": 194913.096899972, - "2005": 175815.477287792, - "2010": 162737.202060496, - "2015": 135713.218811943, - "2016": 130530.464621246, - "2017": 117852.19984323, - "2018": 117965.103059443, - "2019": 115992.028529849, - "2020": 104635.056217558, - "2021": 104930.608832851 - }, - "budget": 245167.3485049594, - "emissionBudget": { - "2024": 86945.77897557989, - "2025": 60986.114147065055, - "2026": 42777.30515018416, - "2027": 30005.155460458802, - "2028": 21046.42522584022, - "2029": 14762.530238198953, - "2030": 10354.83682835445, - "2031": 7263.161803008571, - "2032": 5094.5775632339055, - "2033": 3573.4740945816825, - "2034": 2506.53110020382, - "2035": 1758.148510385224, - "2036": 1233.2127793341276, - "2037": 865.0087009883945, - "2038": 606.740430625153, - "2039": 425.58410075476814, - "2040": 298.5161655184677, - "2041": 209.3872889466743, - "2042": 146.86989127135146, - "2043": 103.01850255844393, - "2044": 72.25995592096045, - "2045": 50.685081805930054, - "2046": 35.55188326552302, - "2047": 24.937049693732515, - "2048": 17.491519163226418, - "2049": 12.269023256364317, - "2050": 8.605823785830763 - }, - "approximatedHistoricalEmission": { - "2021": 104930.608832851, - "2022": 97374.26597972587, - "2023": 92160.02247765288, - "2024": 86945.77897557989 - }, - "totalApproximatedHistoricalEmission": 285472.4823615942, - "trend": { - "2024": 86945.77897557989, - "2025": 81731.5354735069, - "2026": 76517.29197143577, - "2027": 71303.04846936278, - "2028": 66088.80496728979, - "2029": 60874.5614652168, - "2030": 55660.31796314567, - "2031": 50446.07446107268, - "2032": 45231.83095899969, - "2033": 40017.5874569267, - "2034": 34803.343954855576, - "2035": 29589.100452782586, - "2036": 24374.856950709596, - "2037": 19160.613448636606, - "2038": 13946.369946565479, - "2039": 8732.12644449249, - "2040": 3517.882942419499, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 725468.2368152086, - "historicalEmissionChangePercent": -4.102879391489345, - "neededEmissionChangePercent": 29.85730317719741, - "hitNetZero": "2040-08-30", - "budgetRunsOut": "2027-02-10", - "electricCarChangePercent": 0.06869420554248744, - "electricCarChangeYearly": { - "2015": 0.03406813627254509, - "2016": 0.039336366069039334, - "2017": 0.08998849252013809, - "2018": 0.07303370786516854, - "2019": 0.10006476683937823, - "2020": 0.28342245989304815, - "2021": 0.3985611510791367, - "2022": 0.5150476190476191 - }, - "climatePlanLink": "https://www.huddinge.se/organisation-och-styrning/sa-arbetar-vi-med/miljo-och-klimat/klimat-och-energi/", - "climatePlanYear": 2022, - "climatePlanComment": "Miljöprogram 2022–2025", - "bicycleMetrePerCapita": 2.050996867, - "totalConsumptionEmission": 6031.7, - "electricVehiclePerChargePoints": 26.955555555555556 - }, - { - "kommun": "Hudiksvall", - "län": "Gävleborgs län", - "emissions": { - "1990": 317043.145346285, - "2000": 337071.697333743, - "2005": 268638.331148103, - "2010": 216141.405198457, - "2015": 149491.525882212, - "2016": 151974.394519156, - "2017": 135383.031548176, - "2018": 141536.434797508, - "2019": 125289.509697595, - "2020": 116817.27677324, - "2021": 118289.914595419 - }, - "budget": 278097.5355902612, - "emissionBudget": { - "2024": 96823.3144298736, - "2025": 68355.68026517131, - "2026": 48257.9950090274, - "2027": 34069.35712229177, - "2028": 24052.41026920249, - "2029": 16980.609222576426, - "2030": 11988.033063740353, - "2031": 8463.355752057449, - "2032": 5974.9910769377975, - "2033": 4218.246215256576, - "2034": 2978.013005108236, - "2035": 2102.428593788083, - "2036": 1484.2802850073795, - "2037": 1047.877664416722, - "2038": 739.7845344135819, - "2039": 522.2758113297059, - "2040": 368.718201599504, - "2041": 260.3090345015941, - "2042": 183.77393128195203, - "2043": 129.74139711857282, - "2044": 91.59530956789375, - "2045": 64.66479413020961, - "2046": 45.65228961645563, - "2047": 32.229771628563704, - "2048": 22.75369292441669, - "2049": 16.063735966401058, - "2050": 11.340735504140676 - }, - "approximatedHistoricalEmission": { - "2021": 118289.914595419, - "2022": 109252.78523007222, - "2023": 103038.04982997291, - "2024": 96823.3144298736 - }, - "totalApproximatedHistoricalEmission": 319847.44957269146, - "trend": { - "2024": 96823.3144298736, - "2025": 90608.57902977243, - "2026": 84393.84362967312, - "2027": 78179.10822957382, - "2028": 71964.37282947451, - "2029": 65749.63742937334, - "2030": 59534.90202927403, - "2031": 53320.166629174724, - "2032": 47105.43122907542, - "2033": 40890.69582897425, - "2034": 34675.96042887494, - "2035": 28461.225028775632, - "2036": 22246.489628676325, - "2037": 16031.754228577018, - "2038": 9817.018828475848, - "2039": 3602.2834283765405, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 754993.1256510587, - "historicalEmissionChangePercent": -3.6152690571388657, - "neededEmissionChangePercent": 29.401631551583158, - "hitNetZero": "2039-07-27", - "budgetRunsOut": "2027-03-15", - "electricCarChangePercent": 0.0678566222826768, - "electricCarChangeYearly": { - "2015": 0.009016393442622951, - "2016": 0.015003750937734433, - "2017": 0.03383162863886703, - "2018": 0.053784860557768925, - "2019": 0.0663594470046083, - "2020": 0.22959889349930843, - "2021": 0.3163771712158809, - "2022": 0.5223325062034739 - }, - "climatePlanLink": "https://www.hudiksvall.se/Sidor/Kommun-och-politik/Forfattningssamling---Styrdokument/Policy-riktlinjer-planer-och-program/Energi--och-klimatstrategi-2017-2050.html", - "climatePlanYear": 2017, - "climatePlanComment": "Energi– och klimatstrategi 2017–2050", - "bicycleMetrePerCapita": 2.080051418, - "totalConsumptionEmission": 6218.1, - "electricVehiclePerChargePoints": 28.245283018867923 - }, - { - "kommun": "Hultsfred", - "län": "Kalmar län", - "emissions": { - "1990": 107199.911638407, - "2000": 83086.6705675924, - "2005": 84120.6454661191, - "2010": 70794.0928468489, - "2015": 49581.0124805065, - "2016": 46682.7057616999, - "2017": 45614.2872271839, - "2018": 43984.8500093569, - "2019": 43617.8008977714, - "2020": 39129.5890152036, - "2021": 40751.1227109742 - }, - "budget": 91642.81593461835, - "emissionBudget": { - "2024": 34853.25491517037, - "2025": 23827.258726398013, - "2026": 16289.389894761138, - "2027": 11136.162417608439, - "2028": 7613.1834398069805, - "2029": 5204.715943842944, - "2030": 3558.1788183971235, - "2031": 2432.531696310379, - "2032": 1662.9884993301755, - "2033": 1136.8940240734119, - "2034": 777.2320869894436, - "2035": 531.3509476297137, - "2036": 363.2554989341678, - "2037": 248.33786049416685, - "2038": 169.7749741869618, - "2039": 116.06583789852927, - "2040": 79.34784729964181, - "2041": 54.24577106479541, - "2042": 37.08485836171485, - "2043": 25.35288360203603, - "2044": 17.332375943545735, - "2045": 11.849194772632396, - "2046": 8.10064455196995, - "2047": 5.537966369573181, - "2048": 3.786003856083929, - "2049": 2.588283178647605, - "2050": 1.7694672450226965 - }, - "approximatedHistoricalEmission": { - "2021": 40751.1227109742, - "2022": 37966.99699595617, - "2023": 36410.12595556304, - "2024": 34853.25491517037 - }, - "totalApproximatedHistoricalEmission": 112179.31176459149, - "trend": { - "2024": 34853.25491517037, - "2025": 33296.38387477724, - "2026": 31739.51283438457, - "2027": 30182.64179399144, - "2028": 28625.770753598772, - "2029": 27068.89971320564, - "2030": 25512.028672812972, - "2031": 23955.15763241984, - "2032": 22398.286592027172, - "2033": 20841.41555163404, - "2034": 19284.544511241373, - "2035": 17727.67347084824, - "2036": 16170.802430455573, - "2037": 14613.93139006244, - "2038": 13057.060349669773, - "2039": 11500.18930927664, - "2040": 9943.318268883973, - "2041": 8386.44722849084, - "2042": 6829.576188098174, - "2043": 5272.705147705041, - "2044": 3715.834107312374, - "2045": 2158.963066919241, - "2046": 602.092026526574, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 390309.8623719271, - "historicalEmissionChangePercent": -3.1144719075942295, - "neededEmissionChangePercent": 31.635484879700975, - "hitNetZero": "2046-05-16", - "budgetRunsOut": "2026-10-21", - "electricCarChangePercent": 0.048090092273864106, - "electricCarChangeYearly": { - "2015": 0.00847457627118644, - "2016": 0.008547008547008548, - "2017": 0.008771929824561403, - "2018": 0.03017241379310345, - "2019": 0.019455252918287938, - "2020": 0.15384615384615385, - "2021": 0.21238938053097345, - "2022": 0.3793103448275862 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.781709192, - "totalConsumptionEmission": 5728.2, - "electricVehiclePerChargePoints": 5.3584905660377355 - }, - { - "kommun": "Hylte", - "län": "Hallands län", - "emissions": { - "1990": 193378.973771992, - "2000": 118682.85512001, - "2005": 129891.043642742, - "2010": 76457.7400944906, - "2015": 49630.6127580872, - "2016": 48437.5674554573, - "2017": 43925.6170766203, - "2018": 41833.8507574929, - "2019": 40280.587209836, - "2020": 38436.5647237512, - "2021": 43088.441163385 - }, - "budget": 90538.42447587111, - "emissionBudget": { - "2024": 34388.98799616704, - "2025": 23521.357688734348, - "2026": 16088.12296491678, - "2027": 11003.943903214791, - "2028": 7526.470408583451, - "2029": 5147.950344851607, - "2030": 3521.0917354879466, - "2031": 2408.354039801623, - "2032": 1647.2644329515085, - "2033": 1126.6948576591192, - "2034": 770.6360174370819, - "2035": 527.0991230093679, - "2036": 360.5249160313587, - "2037": 246.59159806097458, - "2038": 168.66356118636813, - "2039": 115.36239310567892, - "2040": 78.90549475807478, - "2041": 53.96972908938447, - "2042": 36.91418027238817, - "2043": 25.24853706279582, - "2044": 17.269477992125847, - "2045": 11.81196634794233, - "2046": 8.07914107586451, - "2047": 5.525965669136176, - "2048": 3.779646411633441, - "2049": 2.5852000993713564, - "2050": 1.7682234859904216 - }, - "approximatedHistoricalEmission": { - "2021": 43088.441163385, - "2022": 37479.95586147439, - "2023": 35934.471928820945, - "2024": 34388.98799616704 - }, - "totalApproximatedHistoricalEmission": 112153.14237007135, - "trend": { - "2024": 34388.98799616704, - "2025": 32843.504063513596, - "2026": 31298.020130859688, - "2027": 29752.536198206246, - "2028": 28207.05226555234, - "2029": 26661.568332898896, - "2030": 25116.08440024499, - "2031": 23570.600467591546, - "2032": 22025.11653493764, - "2033": 20479.632602284197, - "2034": 18934.14866963029, - "2035": 17388.664736976847, - "2036": 15843.18080432294, - "2037": 14297.696871669497, - "2038": 12752.21293901559, - "2039": 11206.729006362148, - "2040": 9661.24507370824, - "2041": 8115.761141054798, - "2042": 6570.27720840089, - "2043": 5024.793275747448, - "2044": 3479.3093430935405, - "2045": 1933.8254104400985, - "2046": 388.3414777861908, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 382744.79495238117, - "historicalEmissionChangePercent": -2.1115060897887843, - "neededEmissionChangePercent": 31.602064907068467, - "hitNetZero": "2046-03-27", - "budgetRunsOut": "2026-10-23", - "electricCarChangePercent": 0.07418984128266769, - "electricCarChangeYearly": { - "2015": 0.015625, - "2016": 0.00980392156862745, - "2017": 0.06565656565656566, - "2018": 0.04205607476635514, - "2019": 0.06779661016949153, - "2020": 0.3511450381679389, - "2021": 0.3595505617977528, - "2022": 0.5300546448087432 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.649667798, - "totalConsumptionEmission": 5849.4, - "electricVehiclePerChargePoints": 17.0 - }, - { - "kommun": "Hällefors", - "län": "Örebro län", - "emissions": { - "1990": 94065.6820430102, - "2000": 62696.5452609116, - "2005": 53852.6459042066, - "2010": 35048.8178361106, - "2015": 39138.1734630077, - "2016": 37184.1186301126, - "2017": 38459.9352508168, - "2018": 36648.5282864067, - "2019": 34429.5445907693, - "2020": 29768.6788320136, - "2021": 31849.0491117575 - }, - "budget": 73310.97454756538, - "emissionBudget": { - "2024": 26626.437599983998, - "2025": 18517.312308691326, - "2026": 12877.834439925879, - "2027": 8955.868816032373, - "2028": 6228.344262705304, - "2029": 4331.491790649052, - "2030": 3012.3288535612937, - "2031": 2094.919155009685, - "2032": 1456.9080865251528, - "2033": 1013.2043365523427, - "2034": 704.6312921887605, - "2035": 490.03467515849184, - "2036": 340.7938102092693, - "2037": 237.0044957316299, - "2038": 164.8243873986781, - "2039": 114.62684957719932, - "2040": 79.7170543228681, - "2041": 55.43909453461201, - "2042": 38.555027263920955, - "2043": 26.81303040390812, - "2044": 18.647077967797728, - "2045": 12.968079754478127, - "2046": 9.01862977185626, - "2047": 6.271991266380468, - "2048": 4.361846027687204, - "2049": 3.0334386578682655, - "2050": 2.109599933752983 - }, - "approximatedHistoricalEmission": { - "2021": 31849.0491117575, - "2022": 29535.626407840755, - "2023": 28081.032003912143, - "2024": 26626.437599983998 - }, - "totalApproximatedHistoricalEmission": 86854.40176762364, - "trend": { - "2024": 26626.437599983998, - "2025": 25171.843196055386, - "2026": 23717.24879212724, - "2027": 22262.65438819863, - "2028": 20808.059984270018, - "2029": 19353.465580341872, - "2030": 17898.87117641326, - "2031": 16444.276772485115, - "2032": 14989.682368556503, - "2033": 13535.087964628357, - "2034": 12080.493560699746, - "2035": 10625.899156771135, - "2036": 9171.304752842989, - "2037": 7716.710348914377, - "2038": 6262.115944986232, - "2039": 4807.52154105762, - "2040": 3352.9271371294744, - "2041": 1898.332733200863, - "2042": 443.7383292722516, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 243853.45252794307, - "historicalEmissionChangePercent": -3.145866745714621, - "neededEmissionChangePercent": 30.45516419852405, - "hitNetZero": "2042-04-17", - "budgetRunsOut": "2026-12-31", - "electricCarChangePercent": 0.02273222109920967, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.012295081967213115, - "2017": 0.004366812227074236, - "2018": 0.01092896174863388, - "2019": 0.018072289156626505, - "2020": 0.08391608391608392, - "2021": 0.1450381679389313, - "2022": 0.14285714285714285 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Saknas", - "bicycleMetrePerCapita": 1.564050556, - "totalConsumptionEmission": 6045.2, - "electricVehiclePerChargePoints": 18.0 - }, - { - "kommun": "Härjedalen", - "län": "Jämtlands län", - "emissions": { - "1990": 129790.735120347, - "2000": 125855.927927557, - "2005": 116687.902314254, - "2010": 100016.171616061, - "2015": 86135.1220868306, - "2016": 82471.1527291391, - "2017": 73679.1523256813, - "2018": 44104.7123920889, - "2019": 46966.5873387135, - "2020": 44292.8261846297, - "2021": 41363.3668840834 - }, - "budget": 124125.14248918142, - "emissionBudget": { - "2024": 8990.8849164024, - "2025": 8362.665717895596, - "2026": 7778.342016332876, - "2027": 7234.846706066163, - "2028": 6729.326989012202, - "2029": 6259.129400361604, - "2030": 5821.78588058503, - "2031": 5415.000820628685, - "2032": 5036.639012299564, - "2033": 4684.71444059222, - "2034": 4357.379859128163, - "2035": 4052.917093989521, - "2036": 3769.7280250519752, - "2037": 3506.3261974781, - "2038": 3261.3290193399885, - "2039": 3033.450504416614, - "2040": 2821.494522072977, - "2041": 2624.3485187897677, - "2042": 2440.9776783879624, - "2043": 2270.419490295452, - "2044": 2111.778697344633, - "2045": 1964.222596582036, - "2046": 1826.9766684240014, - "2047": 1699.3205112159287, - "2048": 1580.5840598556538, - "2049": 1470.1440686325802, - "2050": 1367.4208398210335 - }, - "approximatedHistoricalEmission": { - "2021": 41363.3668840834, - "2022": 25946.91946527362, - "2023": 17468.90219083801, - "2024": 8990.8849164024 - }, - "totalApproximatedHistoricalEmission": 68592.94755635453, - "trend": { - "2024": 8990.8849164024, - "2025": 512.8676419630647, - "2026": 0, - "2027": 0, - "2028": 0, - "2029": 0, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 5008.310100164264, - "historicalEmissionChangePercent": -10.145311151887359, - "neededEmissionChangePercent": 6.987289953636469, - "hitNetZero": "2025-01-22", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.046836886718426424, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.02830188679245283, - "2017": 0.008264462809917356, - "2018": 0.0594059405940594, - "2019": 0.027522935779816515, - "2020": 0.12857142857142856, - "2021": 0.1937984496124031, - "2022": 0.3968253968253968 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.525898392, - "totalConsumptionEmission": 6683.0, - "electricVehiclePerChargePoints": 1.8918918918918919 - }, - { - "kommun": "Härnösand", - "län": "Västernorrlands län", - "emissions": { - "1990": 184667.092199817, - "2000": 128241.831967433, - "2005": 110079.393017511, - "2010": 99019.4416818916, - "2015": 77576.6971909888, - "2016": 75394.6469951961, - "2017": 67340.8138974701, - "2018": 66580.4302765076, - "2019": 66980.5378539768, - "2020": 59234.9069116391, - "2021": 59782.1249581941 - }, - "budget": 140085.31828122708, - "emissionBudget": { - "2024": 49113.56410292629, - "2025": 34589.07009546733, - "2026": 24359.94601332278, - "2027": 17155.909891019666, - "2028": 12082.343861838443, - "2029": 8509.197945375112, - "2030": 5992.748634002105, - "2031": 4220.496035099689, - "2032": 2972.356738146135, - "2033": 2093.3332256036697, - "2034": 1474.2658366604246, - "2035": 1038.2770074827847, - "2036": 731.2243948549911, - "2037": 514.9773247193028, - "2038": 362.6816157133846, - "2039": 255.42474991140296, - "2040": 179.88726210721748, - "2041": 126.68869042508611, - "2042": 89.22268366093131, - "2043": 62.83660564291607, - "2044": 44.25375752794456, - "2045": 31.166467941810136, - "2046": 21.949519729584757, - "2047": 15.458325828224998, - "2048": 10.88679116242737, - "2049": 7.667209446310123, - "2050": 5.39976378866076 - }, - "approximatedHistoricalEmission": { - "2021": 59782.1249581941, - "2022": 55260.955024997704, - "2023": 52187.259563962, - "2024": 49113.56410292629 - }, - "totalApproximatedHistoricalEmission": 161896.0591195199, - "trend": { - "2024": 49113.56410292629, - "2025": 46039.86864189152, - "2026": 42966.17318085581, - "2027": 39892.477719820105, - "2028": 36818.78225878533, - "2029": 33745.086797749624, - "2030": 30671.391336713918, - "2031": 27597.695875679143, - "2032": 24524.000414643437, - "2033": 21450.304953608662, - "2034": 18376.609492572956, - "2035": 15302.91403153725, - "2036": 12229.218570502475, - "2037": 9155.523109466769, - "2038": 6081.827648431063, - "2039": 3008.132187396288, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 392416.7882711175, - "historicalEmissionChangePercent": -4.110568386525487, - "neededEmissionChangePercent": 29.573284433237795, - "hitNetZero": "2039-12-20", - "budgetRunsOut": "2027-03-02", - "electricCarChangePercent": 0.07240952545804048, - "electricCarChangeYearly": { - "2015": 0.01303538175046555, - "2016": 0.014586709886547812, - "2017": 0.026415094339622643, - "2018": 0.03915171288743882, - "2019": 0.07331975560081466, - "2020": 0.2087912087912088, - "2021": 0.37305699481865284, - "2022": 0.5428571428571428 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Har eget klimatlöfte. ", - "bicycleMetrePerCapita": 2.233581042, - "totalConsumptionEmission": 6107.7, - "electricVehiclePerChargePoints": 12.0 - }, - { - "kommun": "Härryda", - "län": "Västra Götalands län", - "emissions": { - "1990": 177926.213568809, - "2000": 165038.594365017, - "2005": 160426.490900806, - "2010": 161074.377398724, - "2015": 143747.172470026, - "2016": 139382.835857454, - "2017": 136410.267370231, - "2018": 141430.152052833, - "2019": 142775.044744714, - "2020": 130848.39525732, - "2021": 131690.249963079 - }, - "budget": 286244.52394768555, - "emissionBudget": { - "2024": 127995.97295653075, - "2025": 81846.27102485076, - "2026": 52336.11594130652, - "2027": 33466.02108470187, - "2028": 21399.650071429245, - "2029": 13683.880196590193, - "2030": 8750.076595160293, - "2031": 5595.1849417865, - "2032": 3577.808056001468, - "2033": 2287.808288514201, - "2034": 1462.9255351512156, - "2035": 935.4591169819456, - "2036": 598.1738226027949, - "2037": 382.49872768533345, - "2038": 244.58655854295029, - "2039": 156.3994342723611, - "2040": 100.00869706999535, - "2041": 63.949972301182434, - "2042": 40.892433129687916, - "2043": 26.148425512845463, - "2044": 16.720456682838734, - "2045": 10.69179754419041, - "2046": 6.8368069661209745, - "2047": 4.371755946444991, - "2048": 2.7954935907925633, - "2049": 1.7875619114825212, - "2050": 1.1430459357544491 - }, - "approximatedHistoricalEmission": { - "2021": 131690.249963079, - "2022": 131344.1780527183, - "2023": 129670.07550462475, - "2024": 127995.97295653075 - }, - "totalApproximatedHistoricalEmission": 390857.3650171479, - "trend": { - "2024": 127995.97295653075, - "2025": 126321.87040843721, - "2026": 124647.76786034368, - "2027": 122973.66531224968, - "2028": 121299.56276415614, - "2029": 119625.46021606261, - "2030": 117951.35766796861, - "2031": 116277.25511987507, - "2032": 114603.15257178154, - "2033": 112929.05002368754, - "2034": 111254.947475594, - "2035": 109580.84492750047, - "2036": 107906.74237940647, - "2037": 106232.63983131293, - "2038": 104558.53728321893, - "2039": 102884.4347351254, - "2040": 101210.33218703186, - "2041": 99536.22963893786, - "2042": 97862.12709084433, - "2043": 96188.02454275079, - "2044": 94513.92199465679, - "2045": 92839.81944656326, - "2046": 91165.71689846972, - "2047": 89491.61435037572, - "2048": 87817.51180228218, - "2049": 86143.40925418865, - "2050": 84469.30670609465 - }, - "trendEmission": 2762048.6356141344, - "historicalEmissionChangePercent": -1.3746573641529471, - "neededEmissionChangePercent": 36.05558898900129, - "hitNetZero": "2100-05-28", - "budgetRunsOut": "2026-04-09", - "electricCarChangePercent": 0.08968315530502405, - "electricCarChangeYearly": { - "2015": 0.016592920353982302, - "2016": 0.025329280648429583, - "2017": 0.031512605042016806, - "2018": 0.06702702702702702, - "2019": 0.1457286432160804, - "2020": 0.3130227001194743, - "2021": 0.45492227979274613, - "2022": 0.6540483701366983 - }, - "climatePlanLink": "https://www.harryda.se/download/18.c0a4fce181800179101eedd/1660123092984/Energi-%20och%20klimatplan.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Energi– och klimatplan.", - "bicycleMetrePerCapita": 3.211264818, - "totalConsumptionEmission": 6205.1, - "electricVehiclePerChargePoints": 8.007142857142858 - }, - { - "kommun": "Hässleholm", - "län": "Skåne län", - "emissions": { - "1990": 276612.279032317, - "2000": 245996.775910537, - "2005": 242108.811148532, - "2010": 242125.433158102, - "2015": 191806.911137593, - "2016": 186680.954094786, - "2017": 188135.843672401, - "2018": 187638.562737101, - "2019": 188366.2714246, - "2020": 197529.288775962, - "2021": 174606.772585002 - }, - "budget": 389475.68463331176, - "emissionBudget": { - "2024": 181464.94665894425, - "2025": 113879.55845039283, - "2026": 71465.88953749997, - "2027": 44848.9038496841, - "2028": 28145.233894594767, - "2029": 17662.732485869343, - "2030": 11084.367606811671, - "2031": 6956.070095112962, - "2032": 4365.328982628621, - "2033": 2739.491820239912, - "2034": 1719.1866782609134, - "2035": 1078.8872640075833, - "2036": 677.0630223910524, - "2037": 424.89549333125234, - "2038": 266.6460496035415, - "2039": 167.33553752650408, - "2040": 105.01255188635722, - "2041": 65.90133940878047, - "2042": 41.35683266292951, - "2043": 25.95376092889654, - "2044": 16.28745875788741, - "2045": 10.221305248077666, - "2046": 6.414449456320916, - "2047": 4.025431276052913, - "2048": 2.526186708394307, - "2049": 1.5853256081235325, - "2050": 0.9948818412435236 - }, - "approximatedHistoricalEmission": { - "2021": 174606.772585002, - "2022": 183584.46941203158, - "2023": 182524.70803548768, - "2024": 181464.94665894425 - }, - "totalApproximatedHistoricalEmission": 544145.0370694924, - "trend": { - "2024": 181464.94665894425, - "2025": 180405.18528240034, - "2026": 179345.4239058569, - "2027": 178285.66252931347, - "2028": 177225.90115276957, - "2029": 176166.13977622613, - "2030": 175106.37839968223, - "2031": 174046.6170231388, - "2032": 172986.8556465949, - "2033": 171927.09427005146, - "2034": 170867.33289350756, - "2035": 169807.57151696412, - "2036": 168747.81014042022, - "2037": 167688.04876387678, - "2038": 166628.28738733334, - "2039": 165568.52601078944, - "2040": 164508.764634246, - "2041": 163449.0032577021, - "2042": 162389.24188115867, - "2043": 161329.48050461477, - "2044": 160269.71912807133, - "2045": 159209.95775152743, - "2046": 158150.196374984, - "2047": 157090.4349984401, - "2048": 156030.67362189665, - "2049": 154970.91224535322, - "2050": 153911.15086880932 - }, - "trendEmission": 4359889.267860796, - "historicalEmissionChangePercent": -1.418292510141253, - "neededEmissionChangePercent": 37.24432153586959, - "hitNetZero": "2195-02-12", - "budgetRunsOut": "2026-02-28", - "electricCarChangePercent": 0.05603986261884942, - "electricCarChangeYearly": { - "2015": 0.009428032683846637, - "2016": 0.016483516483516484, - "2017": 0.03430232558139535, - "2018": 0.03853211009174312, - "2019": 0.04564032697547684, - "2020": 0.20342205323193915, - "2021": 0.30058774139378674, - "2022": 0.4054794520547945 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Ny energi– och klimatplan hösten 2023.", - "bicycleMetrePerCapita": 3.359049704, - "totalConsumptionEmission": 6088.8, - "electricVehiclePerChargePoints": 19.058139534883722 - }, - { - "kommun": "Håbo", - "län": "Uppsala län", - "emissions": { - "1990": 100893.439927914, - "2000": 99964.0002846107, - "2005": 91853.5644896127, - "2010": 85393.4883317571, - "2015": 77333.3591624511, - "2016": 74847.0464331836, - "2017": 71279.731006438, - "2018": 72928.0631004936, - "2019": 72508.8565213722, - "2020": 66571.6213817533, - "2021": 70300.7397701479 - }, - "budget": 149825.2154307345, - "emissionBudget": { - "2024": 64448.57760408381, - "2025": 41917.744833903074, - "2026": 27263.554872448705, - "2027": 17732.38105313908, - "2028": 11533.24793060944, - "2029": 7501.2942385061, - "2030": 4878.887160944904, - "2031": 3173.2577302518366, - "2032": 2063.9060282453515, - "2033": 1342.3769688853613, - "2034": 873.0901029083268, - "2035": 567.8630857540969, - "2036": 369.34158695419706, - "2037": 240.22200293701806, - "2038": 156.24184422597676, - "2039": 101.62064086000755, - "2040": 66.09467969325026, - "2041": 42.98837959279745, - "2042": 27.959902197743258, - "2043": 18.185289566912356, - "2044": 11.827822368389556, - "2045": 7.692887235225309, - "2046": 5.003500405286393, - "2047": 3.254306938371212, - "2048": 2.116620923612142, - "2049": 1.3766630557949209, - "2050": 0.8953899812897672 - }, - "approximatedHistoricalEmission": { - "2021": 70300.7397701479, - "2022": 67049.97637300054, - "2023": 65749.27698854217, - "2024": 64448.57760408381 - }, - "totalApproximatedHistoricalEmission": 200173.91204865856, - "trend": { - "2024": 64448.57760408381, - "2025": 63147.87821962545, - "2026": 61847.178835167084, - "2027": 60546.47945070872, - "2028": 59245.78006625036, - "2029": 57945.080681791995, - "2030": 56644.38129733363, - "2031": 55343.68191287527, - "2032": 54042.982528416906, - "2033": 52742.28314395854, - "2034": 51441.58375950018, - "2035": 50140.88437504182, - "2036": 48840.18499058299, - "2037": 47539.485606124625, - "2038": 46238.78622166626, - "2039": 44938.0868372079, - "2040": 43637.387452749535, - "2041": 42336.68806829117, - "2042": 41035.98868383281, - "2043": 39735.289299374446, - "2044": 38434.58991491608, - "2045": 37133.89053045772, - "2046": 35833.19114599936, - "2047": 34532.491761540994, - "2048": 33231.79237708263, - "2049": 31931.092992624268, - "2050": 30630.393608165905 - }, - "trendEmission": 1236026.6257592456, - "historicalEmissionChangePercent": -1.4716938806742024, - "neededEmissionChangePercent": 34.959394928140455, - "hitNetZero": "2073-07-07", - "budgetRunsOut": "2026-05-20", - "electricCarChangePercent": 0.06332352673472733, - "electricCarChangeYearly": { - "2015": 0.022900763358778626, - "2016": 0.024691358024691357, - "2017": 0.0328719723183391, - "2018": 0.049910873440285206, - "2019": 0.10841121495327102, - "2020": 0.24161073825503357, - "2021": 0.4116666666666667, - "2022": 0.4085554866707998 - }, - "climatePlanLink": "https://www.habo.se/download/18.385a44c917cdfc2502fd07bb/1637050665118/H%C3%A5llbarhetsstrategi_AntagenKF20211108.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Hållbarhetsstrategi 2021. Uppdateras senast 2026.", - "bicycleMetrePerCapita": 3.741361443, - "totalConsumptionEmission": 6181.4, - "electricVehiclePerChargePoints": 129.66666666666666 - }, - { - "kommun": "Höganäs", - "län": "Skåne län", - "emissions": { - "1990": 231489.050489962, - "2000": 282729.431037201, - "2005": 258192.569413089, - "2010": 274512.067410078, - "2015": 240468.569820765, - "2016": 230889.280708248, - "2017": 238396.418782253, - "2018": 240397.727029552, - "2019": 213741.521789884, - "2020": 202471.831736101, - "2021": 241295.112733841 - }, - "budget": 476240.8854183951, - "emissionBudget": { - "2024": 212735.03047206998, - "2025": 136094.72163549162, - "2026": 87064.98979477513, - "2027": 55698.79828452845, - "2028": 35632.647952446736, - "2029": 22795.565419868108, - "2030": 14583.19357868002, - "2031": 9329.42574733839, - "2032": 5968.389866424484, - "2033": 3818.2068824333637, - "2034": 2442.6527293524896, - "2035": 1562.6582162595275, - "2036": 999.6921263100373, - "2037": 639.5412234151047, - "2038": 409.1389395623197, - "2039": 261.74180136864936, - "2040": 167.44622415307967, - "2041": 107.12174301739843, - "2042": 68.52986912738636, - "2043": 43.841173886182325, - "2044": 28.046872877368056, - "2045": 17.942655464505503, - "2046": 11.478601786573208, - "2047": 7.343299838497616, - "2048": 4.697789288339575, - "2049": 3.00535517859955, - "2050": 1.922640458130793 - }, - "approximatedHistoricalEmission": { - "2021": 241295.112733841, - "2022": 218378.61377188656, - "2023": 215556.82212197874, - "2024": 212735.03047206998 - }, - "totalApproximatedHistoricalEmission": 660950.5074968208, - "trend": { - "2024": 212735.03047206998, - "2025": 209913.23882216215, - "2026": 207091.4471722534, - "2027": 204269.65552234557, - "2028": 201447.8638724368, - "2029": 198626.07222252898, - "2030": 195804.28057262022, - "2031": 192982.4889227124, - "2032": 190160.69727280363, - "2033": 187338.9056228958, - "2034": 184517.11397298705, - "2035": 181695.32232307922, - "2036": 178873.53067317046, - "2037": 176051.73902326263, - "2038": 173229.94737335388, - "2039": 170408.15572344605, - "2040": 167586.3640735373, - "2041": 164764.57242362946, - "2042": 161942.7807737207, - "2043": 159120.98912381288, - "2044": 156299.19747390412, - "2045": 153477.4058239963, - "2046": 150655.61417408753, - "2047": 147833.8225241797, - "2048": 145012.03087427095, - "2049": 142190.2392243622, - "2050": 139368.44757445436 - }, - "trendEmission": 4577345.214604822, - "historicalEmissionChangePercent": 0.4868331369381936, - "neededEmissionChangePercent": 36.02618180302021, - "hitNetZero": "2099-05-04", - "budgetRunsOut": "2026-04-10", - "electricCarChangePercent": 0.07286294683214967, - "electricCarChangeYearly": { - "2015": 0.018867924528301886, - "2016": 0.016176470588235296, - "2017": 0.0395738203957382, - "2018": 0.044563279857397504, - "2019": 0.09886547811993517, - "2020": 0.24080882352941177, - "2021": 0.3763779527559055, - "2022": 0.5419354838709678 - }, - "climatePlanLink": "https://www.hoganas.se/download/18.765ba991784b13246f10c29/1618312885309/Milj%C3%B6program%202015-2025_2021.pdf", - "climatePlanYear": 2015, - "climatePlanComment": "Miljöprogram 2015–2025", - "bicycleMetrePerCapita": 3.869861408, - "totalConsumptionEmission": 6602.1, - "electricVehiclePerChargePoints": 18.057142857142857 - }, - { - "kommun": "Högsby", - "län": "Kalmar län", - "emissions": { - "1990": 37787.6807639273, - "2000": 34180.236297579, - "2005": 31147.9678376911, - "2010": 28524.0103594017, - "2015": 23709.582054178, - "2016": 23119.2126309056, - "2017": 22147.8109927882, - "2018": 18941.5420639679, - "2019": 19113.499278451, - "2020": 16857.50467984, - "2021": 17959.3007233107 - }, - "budget": 42020.08704505275, - "emissionBudget": { - "2024": 13233.65642997669, - "2025": 9658.389140440584, - "2026": 7049.032992640939, - "2027": 5144.632858422375, - "2028": 3754.7344828135288, - "2029": 2740.3376342684646, - "2030": 1999.995042035846, - "2031": 1459.6669104373937, - "2032": 1065.3163856131494, - "2033": 777.5054660352533, - "2034": 567.450907428561, - "2035": 414.1456830952972, - "2036": 302.25812414982056, - "2037": 220.59863797625513, - "2038": 161.00066528851232, - "2039": 117.50396313024241, - "2040": 85.75853600710889, - "2041": 62.58960380707134, - "2042": 45.68010004743346, - "2043": 33.338947899008424, - "2044": 24.331939856932234, - "2045": 17.758307760485028, - "2046": 12.960639240864172, - "2047": 9.459131568020547, - "2048": 6.903607789576661, - "2049": 5.038496416883756, - "2050": 3.67727236493358 - }, - "approximatedHistoricalEmission": { - "2021": 17959.3007233107, - "2022": 15577.125830624718, - "2023": 14405.391130300704, - "2024": 13233.65642997669 - }, - "totalApproximatedHistoricalEmission": 45578.99553756912, - "trend": { - "2024": 13233.65642997669, - "2025": 12061.921729652677, - "2026": 10890.187029328663, - "2027": 9718.452329005115, - "2028": 8546.7176286811, - "2029": 7374.982928357087, - "2030": 6203.248228033073, - "2031": 5031.513527709059, - "2032": 3859.7788273850456, - "2033": 2688.0441270614974, - "2034": 1516.3094267374836, - "2035": 344.57472641346976, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 74852.55872335262, - "historicalEmissionChangePercent": -4.254629183408467, - "neededEmissionChangePercent": 27.01647355327635, - "hitNetZero": "2035-04-15", - "budgetRunsOut": "2027-10-27", - "electricCarChangePercent": 0.04783248420472141, - "electricCarChangeYearly": { - "2015": 0.024390243902439025, - "2016": 0.0, - "2017": 0.031578947368421054, - "2018": 0.02702702702702703, - "2019": 0.12, - "2020": 0.22448979591836735, - "2021": 0.26229508196721313, - "2022": 0.3150684931506849 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Hade en energi- och klimatstrategi fram till 2010. ", - "bicycleMetrePerCapita": 2.926082874, - "totalConsumptionEmission": 5669.7, - "electricVehiclePerChargePoints": 9.875 - }, - { - "kommun": "Hörby", - "län": "Skåne län", - "emissions": { - "1990": 63647.0615682229, - "2000": 69336.7623681881, - "2005": 57405.3746447822, - "2010": 55754.10584353, - "2015": 47402.3518181614, - "2016": 45610.7719429292, - "2017": 46273.3861581273, - "2018": 45858.0888251982, - "2019": 45740.5318095739, - "2020": 41774.7505546109, - "2021": 41796.3025070363 - }, - "budget": 93152.06462697052, - "emissionBudget": { - "2024": 39560.23086111271, - "2025": 25871.446763046995, - "2026": 16919.30868561035, - "2027": 11064.824051813303, - "2028": 7236.130835635829, - "2029": 4732.256855169664, - "2030": 3094.783034189365, - "2031": 2023.9142383498013, - "2032": 1323.5916052732287, - "2033": 865.5973184803371, - "2034": 566.0799862852571, - "2035": 370.20279988309136, - "2036": 242.1037951555812, - "2037": 158.33010351960016, - "2038": 103.54410869279344, - "2039": 67.71537570338154, - "2040": 44.28423948536296, - "2041": 28.960835651083126, - "2042": 18.93969528112293, - "2043": 12.386108662868464, - "2044": 8.100219434960687, - "2045": 5.2973501751372165, - "2046": 3.464340577850344, - "2047": 2.265596051337036, - "2048": 1.481645742526564, - "2049": 0.9689609518217325, - "2050": 0.633677335416394 - }, - "approximatedHistoricalEmission": { - "2021": 41796.3025070363, - "2022": 41347.59122243873, - "2023": 40453.91104177572, - "2024": 39560.23086111271 - }, - "totalApproximatedHistoricalEmission": 122479.76894828895, - "trend": { - "2024": 39560.23086111271, - "2025": 38666.5506804497, - "2026": 37772.87049978669, - "2027": 36879.19031912368, - "2028": 35985.51013846067, - "2029": 35091.82995779766, - "2030": 34198.14977713465, - "2031": 33304.46959647164, - "2032": 32410.789415808627, - "2033": 31517.109235145617, - "2034": 30623.429054482607, - "2035": 29729.748873819597, - "2036": 28836.068693156587, - "2037": 27942.388512493577, - "2038": 27048.708331830567, - "2039": 26155.028151167324, - "2040": 25261.347970504314, - "2041": 24367.667789841304, - "2042": 23473.987609178293, - "2043": 22580.307428515283, - "2044": 21686.627247852273, - "2045": 20792.947067189263, - "2046": 19899.266886526253, - "2047": 19005.586705863243, - "2048": 18111.906525200233, - "2049": 17218.226344537223, - "2050": 16324.546163874213 - }, - "trendEmission": 726502.1013248303, - "historicalEmissionChangePercent": -2.0165287383711914, - "neededEmissionChangePercent": 34.60238679122988, - "hitNetZero": "2068-03-27", - "budgetRunsOut": "2026-06-03", - "electricCarChangePercent": 0.07039356467764031, - "electricCarChangeYearly": { - "2015": 0.0015600624024961, - "2016": 0.005597014925373134, - "2017": 0.0166270783847981, - "2018": 0.036827195467422094, - "2019": 0.07641196013289037, - "2020": 0.22983870967741934, - "2021": 0.4134275618374558, - "2022": 0.45794392523364486 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.95921921, - "totalConsumptionEmission": 6171.6, - "electricVehiclePerChargePoints": 73.57142857142857 - }, - { - "kommun": "Höör", - "län": "Skåne län", - "emissions": { - "1990": 73484.2597128744, - "2000": 66156.285486373, - "2005": 61423.1457885453, - "2010": 62389.7402237666, - "2015": 52712.3474348904, - "2016": 50270.4135573662, - "2017": 50252.8482781923, - "2018": 47098.4777834348, - "2019": 47043.3891488485, - "2020": 43151.1995388947, - "2021": 43181.7418189813 - }, - "budget": 98855.78978245053, - "emissionBudget": { - "2024": 37807.26593422657, - "2025": 25791.697258881628, - "2026": 17594.809649845432, - "2027": 12002.98388690523, - "2028": 8188.302406020755, - "2029": 5585.969032716297, - "2030": 3810.6860845200617, - "2031": 2599.607758243074, - "2032": 1773.4235638485322, - "2033": 1209.8098749092735, - "2034": 825.3188709479679, - "2035": 563.0233748868264, - "2036": 384.0882982656732, - "2037": 262.0207747045576, - "2038": 178.74766476037775, - "2039": 121.93967326947457, - "2040": 83.18589189402512, - "2041": 56.74849230497902, - "2042": 38.713191691096924, - "2043": 26.409709756819787, - "2044": 18.01641091762175, - "2045": 12.29059559311441, - "2046": 8.384507920261408, - "2047": 5.71981825716489, - "2048": 3.901996540063712, - "2049": 2.661898737708491, - "2050": 1.8159177787734153 - }, - "approximatedHistoricalEmission": { - "2021": 43181.7418189813, - "2022": 41095.81622094149, - "2023": 39451.54107758403, - "2024": 37807.26593422657 - }, - "totalApproximatedHistoricalEmission": 121041.86117512945, - "trend": { - "2024": 37807.26593422657, - "2025": 36162.990790868644, - "2026": 34518.715647511184, - "2027": 32874.44050415326, - "2028": 31230.1653607958, - "2029": 29585.89021743834, - "2030": 27941.615074080415, - "2031": 26297.339930722956, - "2032": 24653.064787365496, - "2033": 23008.78964400757, - "2034": 21364.51450065011, - "2035": 19720.239357292652, - "2036": 18075.964213934727, - "2037": 16431.689070577268, - "2038": 14787.413927219808, - "2039": 13143.138783861883, - "2040": 11498.863640504424, - "2041": 9854.588497146498, - "2042": 8210.313353789039, - "2043": 6566.0382104315795, - "2044": 4921.763067073654, - "2045": 3277.487923716195, - "2046": 1633.2127803587355, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 434661.8722506135, - "historicalEmissionChangePercent": -3.210717808799588, - "neededEmissionChangePercent": 31.78110973760564, - "hitNetZero": "2046-12-23", - "budgetRunsOut": "2026-10-13", - "electricCarChangePercent": 0.06332638122639997, - "electricCarChangeYearly": { - "2015": 0.017412935323383085, - "2016": 0.00684931506849315, - "2017": 0.0275, - "2018": 0.061696658097686374, - "2019": 0.0935483870967742, - "2020": 0.23310810810810811, - "2021": 0.4019607843137255, - "2022": 0.4024390243902439 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Ny miljö– och klimatstrategi kommer under 2023.", - "bicycleMetrePerCapita": 3.594365932, - "totalConsumptionEmission": 6011.7, - "electricVehiclePerChargePoints": 73.5 - }, - { - "kommun": "Jokkmokk", - "län": "Norrbottens län", - "emissions": { - "1990": 79485.7400189356, - "2000": 78442.5715340555, - "2005": 78971.9206901286, - "2010": 48743.5705255833, - "2015": 44207.0886942614, - "2016": 41630.0821660033, - "2017": 35898.7413144812, - "2018": 32067.0297069838, - "2019": 33180.3742108357, - "2020": 30207.2420241308, - "2021": 31891.2540988899 - }, - "budget": 73786.06711474256, - "emissionBudget": { - "2024": 22187.783636475913, - "2025": 16425.542706550976, - "2026": 12159.77483939365, - "2027": 9001.841022018716, - "2028": 6664.033080874027, - "2029": 4933.361608404003, - "2030": 3652.15125193863, - "2031": 2703.675470355793, - "2032": 2001.5219920378186, - "2033": 1481.7200986344162, - "2034": 1096.9124793187386, - "2035": 812.0406738047835, - "2036": 601.1510201095242, - "2037": 445.0301082647478, - "2038": 329.4543145348899, - "2039": 243.893937398689, - "2040": 180.55387371026865, - "2041": 133.66343443992008, - "2042": 98.95059762020891, - "2043": 73.25279954404822, - "2044": 54.22880477828064, - "2045": 40.14540448945623, - "2046": 29.71950992118386, - "2047": 22.001254718639636, - "2048": 16.287455966742968, - "2049": 12.05754968346613, - "2050": 8.92616407781006 - }, - "approximatedHistoricalEmission": { - "2021": 31891.2540988899, - "2022": 26652.894434583373, - "2023": 24420.339035529643, - "2024": 22187.783636475913 - }, - "totalApproximatedHistoricalEmission": 78112.75233779592, - "trend": { - "2024": 22187.783636475913, - "2025": 19955.228237422183, - "2026": 17722.672838368453, - "2027": 15490.117439314723, - "2028": 13257.562040260993, - "2029": 11025.006641207263, - "2030": 8792.451242153533, - "2031": 6559.895843099803, - "2032": 4327.340444046073, - "2033": 2094.7850449923426, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 110318.95158910332, - "historicalEmissionChangePercent": -5.030681936292774, - "neededEmissionChangePercent": 25.970331351401953, - "hitNetZero": "2033-12-06", - "budgetRunsOut": "2028-03-22", - "electricCarChangePercent": 0.055159193566814764, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.013888888888888888, - "2017": 0.012195121951219513, - "2018": 0.023809523809523808, - "2019": 0.0, - "2020": 0.2727272727272727, - "2021": 0.24324324324324326, - "2022": 0.3898305084745763 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.773408665, - "totalConsumptionEmission": 6223.4, - "electricVehiclePerChargePoints": 2.5555555555555554 - }, - { - "kommun": "Järfälla", - "län": "Stockholms län", - "emissions": { - "1990": 121150.746538133, - "2000": 121927.615725138, - "2005": 107386.69150898, - "2010": 90845.5993050477, - "2015": 77441.9011063115, - "2016": 74991.5815492753, - "2017": 83548.8308583607, - "2018": 82608.2329230938, - "2019": 81230.127485373, - "2020": 72636.2590316657, - "2021": 72857.259205152 - }, - "budget": 161539.65327045636, - "emissionBudget": { - "2024": 73448.46871310077, - "2025": 46614.25575898371, - "2026": 29583.85488540995, - "2027": 18775.4680543692, - "2028": 11915.898114903608, - "2029": 7562.454766698694, - "2030": 4799.530975078867, - "2031": 3046.0344281566404, - "2032": 1933.173425839405, - "2033": 1226.893386307937, - "2034": 778.6509793928877, - "2035": 494.1728062729394, - "2036": 313.62801681708504, - "2037": 199.0448112158778, - "2038": 126.32429103127926, - "2039": 80.17202964034061, - "2040": 50.88138064483672, - "2041": 32.29199644737553, - "2042": 20.494196921190092, - "2043": 13.006693721429947, - "2044": 8.25473094718665, - "2045": 5.238885797562207, - "2046": 3.324872073420283, - "2047": 2.1101384400771193, - "2048": 1.3392046785459144, - "2049": 0.8499296240362886, - "2050": 0.5394099777181297 - }, - "approximatedHistoricalEmission": { - "2021": 72857.259205152, - "2022": 74932.9882925069, - "2023": 74190.72850280395, - "2024": 73448.46871310077 - }, - "totalApproximatedHistoricalEmission": 222276.58075443722, - "trend": { - "2024": 73448.46871310077, - "2025": 72706.20892339782, - "2026": 71963.94913369487, - "2027": 71221.68934399169, - "2028": 70479.42955428874, - "2029": 69737.1697645858, - "2030": 68994.90997488284, - "2031": 68252.65018517966, - "2032": 67510.39039547672, - "2033": 66768.13060577377, - "2034": 66025.87081607082, - "2035": 65283.61102636764, - "2036": 64541.35123666469, - "2037": 63799.09144696174, - "2038": 63056.831657258794, - "2039": 62314.57186755561, - "2040": 61572.312077852665, - "2041": 60830.052288149716, - "2042": 60087.79249844677, - "2043": 59345.53270874359, - "2044": 58603.27291904064, - "2045": 57861.01312933769, - "2046": 57118.75333963474, - "2047": 56376.49354993156, - "2048": 55634.23376022861, - "2049": 54891.973970525665, - "2050": 54149.714180822484 - }, - "trendEmission": 1658776.3776210044, - "historicalEmissionChangePercent": -0.8037628370891697, - "neededEmissionChangePercent": 36.534747999900404, - "hitNetZero": "2122-11-20", - "budgetRunsOut": "2026-03-23", - "electricCarChangePercent": 0.08209290709034771, - "electricCarChangeYearly": { - "2015": 0.01383399209486166, - "2016": 0.01273560876209883, - "2017": 0.026525198938992044, - "2018": 0.04708960104643558, - "2019": 0.09398034398034398, - "2020": 0.2443267776096823, - "2021": 0.43021844660194175, - "2022": 0.6007046388725779 - }, - "climatePlanLink": "https://www.jarfalla.se/download/18.5e2d810118697502d1121381/1677764821650/Miljoplan-2023-2030-Jarfalla-kommun-med-bolag.pdf", - "climatePlanYear": 2023, - "climatePlanComment": "Miljöplan 2023–2030", - "bicycleMetrePerCapita": 2.422133029, - "totalConsumptionEmission": 5996.9, - "electricVehiclePerChargePoints": 53.768115942028984 - }, - { - "kommun": "Jönköping", - "län": "Jönköpings län", - "emissions": { - "1990": 484856.707441359, - "2000": 446255.060935865, - "2005": 450692.401044119, - "2010": 543640.94184649, - "2015": 440034.068911602, - "2016": 412969.208399042, - "2017": 408051.686344652, - "2018": 403788.804557544, - "2019": 400841.10993352, - "2020": 379728.453382934, - "2021": 385811.84637716 - }, - "budget": 838700.2211672622, - "emissionBudget": { - "2024": 353812.4352623485, - "2025": 232039.79433859594, - "2026": 152177.99260439852, - "2027": 99802.45629468045, - "2028": 65453.15858085324, - "2029": 42925.95720851678, - "2030": 28152.007362505414, - "2031": 18462.850221108518, - "2032": 12108.438091028911, - "2033": 7941.042214416938, - "2034": 5207.950932818729, - "2035": 3415.5155187824357, - "2036": 2239.987743649828, - "2037": 1469.0447354460005, - "2038": 963.4393941929429, - "2039": 631.8496938087188, - "2040": 414.38417192874175, - "2041": 271.7643826176364, - "2042": 178.23045536653729, - "2043": 116.88836820407431, - "2044": 76.65856316931374, - "2045": 50.27476555172612, - "2046": 32.971555254675025, - "2047": 21.62364048806117, - "2048": 14.18137010357193, - "2049": 9.300527269010098, - "2050": 6.099538115842098 - }, - "approximatedHistoricalEmission": { - "2021": 385811.84637716, - "2022": 370695.2034085393, - "2023": 362253.81933544204, - "2024": 353812.4352623485 - }, - "totalApproximatedHistoricalEmission": 1102761.1635637356, - "trend": { - "2024": 353812.4352623485, - "2025": 345371.05118925497, - "2026": 336929.6671161577, - "2027": 328488.2830430642, - "2028": 320046.8989699669, - "2029": 311605.5148968734, - "2030": 303164.1308237761, - "2031": 294722.7467506826, - "2032": 286281.36267758533, - "2033": 277839.9786044918, - "2034": 269398.59453139454, - "2035": 260957.210458301, - "2036": 252515.82638520375, - "2037": 244074.44231211022, - "2038": 235633.05823901668, - "2039": 227191.67416591942, - "2040": 218750.2900928259, - "2041": 210308.90601972863, - "2042": 201867.5219466351, - "2043": 193426.13787353784, - "2044": 184984.7538004443, - "2045": 176543.36972734705, - "2046": 168101.9856542535, - "2047": 159660.60158115625, - "2048": 151219.21750806272, - "2049": 142777.8334349692, - "2050": 134336.44936187193 - }, - "trendEmission": 6345935.500114869, - "historicalEmissionChangePercent": -2.1301920111284915, - "neededEmissionChangePercent": 34.41728689763527, - "hitNetZero": "2065-11-19", - "budgetRunsOut": "2026-06-11", - "electricCarChangePercent": 0.060566948614435206, - "electricCarChangeYearly": { - "2015": 0.04287800345148016, - "2016": 0.03979619939410631, - "2017": 0.05429147465437788, - "2018": 0.06259426847662142, - "2019": 0.07340186315451333, - "2020": 0.2023178157532901, - "2021": 0.33393357342937174, - "2022": 0.4945994599459946 - }, - "climatePlanLink": "https://www.jonkoping.se/download/18.6751acba183a2e89e794ecfe/1666359577980/Program%20f%C3%B6r%20h%C3%A5llbarhet%20i%20J%C3%B6nk%C3%B6pings%20kommun%202022-2030.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Hållbarhetsprogram 2022–2030", - "bicycleMetrePerCapita": 2.698136433, - "totalConsumptionEmission": 6166.6, - "electricVehiclePerChargePoints": 34.00888888888889 - }, - { - "kommun": "Kalix", - "län": "Norrbottens län", - "emissions": { - "1990": 156631.99232068, - "2000": 147543.692771637, - "2005": 105004.848214785, - "2010": 87195.4463702249, - "2015": 70164.4951257483, - "2016": 65586.1037687898, - "2017": 67289.2887141805, - "2018": 64514.3913970966, - "2019": 64617.1462337387, - "2020": 58756.646458194, - "2021": 64815.2841043127 - }, - "budget": 135005.8823612679, - "emissionBudget": { - "2024": 58167.902936164755, - "2025": 37806.427400810644, - "2026": 24572.416756735278, - "2027": 15970.926288944664, - "2028": 10380.358149223934, - "2029": 6746.749271565251, - "2030": 4385.0727575107185, - "2031": 2850.0930321665173, - "2032": 1852.4277112827997, - "2033": 1203.9917247613364, - "2034": 782.5385381920985, - "2035": 508.6135985504501, - "2036": 330.5751474273535, - "2037": 214.85844737156938, - "2038": 139.64798251225585, - "2039": 90.76468371763829, - "2040": 58.992816524505834, - "2041": 38.342582808094, - "2042": 24.920892796919436, - "2043": 16.197419482770172, - "2044": 10.527568174975402, - "2045": 6.84242893114232, - "2046": 4.447260079400324, - "2047": 2.8905118946593022, - "2048": 1.8786980891599903, - "2049": 1.2210662466861817, - "2050": 0.7936361820982857 - }, - "approximatedHistoricalEmission": { - "2021": 64815.2841043127, - "2022": 60480.66651944583, - "2023": 59324.284727805294, - "2024": 58167.902936164755 - }, - "totalApproximatedHistoricalEmission": 181296.54476748986, - "trend": { - "2024": 58167.902936164755, - "2025": 57011.52114452422, - "2026": 55855.13935288321, - "2027": 54698.75756124267, - "2028": 53542.375769602135, - "2029": 52385.99397796113, - "2030": 51229.61218632059, - "2031": 50073.23039468005, - "2032": 48916.848603039514, - "2033": 47760.46681139851, - "2034": 46604.08501975797, - "2035": 45447.70322811743, - "2036": 44291.32143647643, - "2037": 43134.93964483589, - "2038": 41978.55785319535, - "2039": 40822.17606155481, - "2040": 39665.79426991381, - "2041": 38509.41247827327, - "2042": 37353.03068663273, - "2043": 36196.648894991726, - "2044": 35040.26710335119, - "2045": 33883.88531171065, - "2046": 32727.50352007011, - "2047": 31571.121728429105, - "2048": 30414.739936788566, - "2049": 29258.358145148028, - "2050": 28101.976353507023 - }, - "trendEmission": 1121508.430765735, - "historicalEmissionChangePercent": -1.1085133563885166, - "neededEmissionChangePercent": 35.004658080418366, - "hitNetZero": "2074-04-08", - "budgetRunsOut": "2026-05-18", - "electricCarChangePercent": 0.06042340263846041, - "electricCarChangeYearly": { - "2015": 0.01699029126213592, - "2016": 0.011037527593818985, - "2017": 0.019002375296912115, - "2018": 0.01440922190201729, - "2019": 0.0641025641025641, - "2020": 0.18090452261306533, - "2021": 0.2761904761904762, - "2022": 0.47619047619047616 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Hade en miljöplan 2017–2019.", - "bicycleMetrePerCapita": 2.483080714, - "totalConsumptionEmission": 6289.7, - "electricVehiclePerChargePoints": 18.291666666666668 - }, - { - "kommun": "Kalmar", - "län": "Kalmar län", - "emissions": { - "1990": 239883.40755098, - "2000": 188020.639526944, - "2005": 180725.254795366, - "2010": 190508.108531532, - "2015": 149200.411496865, - "2016": 145661.089744481, - "2017": 138695.370985864, - "2018": 128156.096132051, - "2019": 127592.700657912, - "2020": 114610.680333967, - "2021": 116813.181802889 - }, - "budget": 272749.7860078822, - "emissionBudget": { - "2024": 95025.96625823714, - "2025": 67070.90881647155, - "2026": 47339.76392560489, - "2027": 33413.19341093579, - "2028": 23583.588115714017, - "2029": 16645.68907171901, - "2030": 11748.804436069875, - "2031": 8292.501745183705, - "2032": 5852.985771280548, - "2033": 4131.134787967856, - "2034": 2915.8237014856727, - "2035": 2058.0369062050954, - "2036": 1452.5967071137245, - "2037": 1025.2669362516083, - "2038": 723.6504705145683, - "2039": 510.76454819707845, - "2040": 360.5061204609747, - "2041": 254.4512209169144, - "2042": 179.59590739629928, - "2043": 126.76178104891945, - "2044": 89.47057517985122, - "2045": 63.14982131660132, - "2046": 44.57219509657017, - "2047": 31.459797261602677, - "2048": 22.20484859668271, - "2049": 15.672551768265404, - "2050": 11.06194792815001 - }, - "approximatedHistoricalEmission": { - "2021": 116813.181802889, - "2022": 107194.90756044537, - "2023": 101110.43690934218, - "2024": 95025.96625823714 - }, - "totalApproximatedHistoricalEmission": 314224.9185003506, - "trend": { - "2024": 95025.96625823714, - "2025": 88941.49560713395, - "2026": 82857.02495603077, - "2027": 76772.55430492572, - "2028": 70688.08365382254, - "2029": 64603.61300271936, - "2030": 58519.14235161431, - "2031": 52434.67170051113, - "2032": 46350.201049407944, - "2033": 40265.7303983029, - "2034": 34181.259747199714, - "2035": 28096.78909609653, - "2036": 22012.318444991484, - "2037": 15927.8477938883, - "2038": 9843.377142783254, - "2039": 3758.9064916800708, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 742765.9988702266, - "historicalEmissionChangePercent": -3.907611830891281, - "neededEmissionChangePercent": 29.418335369299488, - "hitNetZero": "2039-08-10", - "budgetRunsOut": "2027-03-14", - "electricCarChangePercent": 0.05652943773447291, - "electricCarChangeYearly": { - "2015": 0.011147540983606558, - "2016": 0.02457075192421551, - "2017": 0.037132247929163094, - "2018": 0.034261241970021415, - "2019": 0.04354492486967188, - "2020": 0.18652849740932642, - "2021": 0.2855960264900662, - "2022": 0.43770096463022506 - }, - "climatePlanLink": "https://kalmar.se/download/18.27a4559e1709e0628a5856/1584024404535/handlingsplan-fossilbranslefri-kommun-2030.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Handlingsplan Fossilbränslefri kommun 2030", - "bicycleMetrePerCapita": 2.898366807, - "totalConsumptionEmission": 6169.9, - "electricVehiclePerChargePoints": 16.114427860696516 - }, - { - "kommun": "Karlsborg", - "län": "Västra Götalands län", - "emissions": { - "1990": 35029.7720233554, - "2000": 31326.042981827, - "2005": 29301.9397507562, - "2010": 27439.0510922527, - "2015": 23136.9773298058, - "2016": 22380.5165476161, - "2017": 23183.6061348435, - "2018": 20479.7674112495, - "2019": 19917.3732951603, - "2020": 17614.7184054177, - "2021": 17780.8039766664 - }, - "budget": 42803.71339432223, - "emissionBudget": { - "2024": 14456.3199036445, - "2025": 10312.909925420203, - "2026": 7357.066794227326, - "2027": 5248.415064821479, - "2028": 3744.1362791838087, - "2029": 2671.0075906653174, - "2030": 1905.4545607904417, - "2031": 1359.321140054385, - "2032": 969.7181973377773, - "2033": 691.7816213837486, - "2034": 493.5060649559338, - "2035": 352.0594196491209, - "2036": 251.15362052286665, - "2037": 179.169019720054, - "2038": 127.81634427811233, - "2039": 91.1821579988941, - "2040": 65.04790904709857, - "2041": 46.40414927941194, - "2042": 33.103985998793554, - "2043": 23.615859918253573, - "2044": 16.847180871176686, - "2045": 12.018512317087417, - "2046": 8.573816558419445, - "2047": 6.116425098047578, - "2048": 4.363360905277271, - "2049": 3.1127526430070263, - "2050": 2.2205884928813844 - }, - "approximatedHistoricalEmission": { - "2021": 17780.8039766664, - "2022": 16518.201988180168, - "2023": 15487.26094591245, - "2024": 14456.3199036445 - }, - "totalApproximatedHistoricalEmission": 48124.02487424807, - "trend": { - "2024": 14456.3199036445, - "2025": 13425.378861376783, - "2026": 12394.437819109065, - "2027": 11363.496776841348, - "2028": 10332.555734573398, - "2029": 9301.61469230568, - "2030": 8270.673650037963, - "2031": 7239.732607770013, - "2032": 6208.791565502295, - "2033": 5177.850523234578, - "2034": 4146.909480966628, - "2035": 3115.96843869891, - "2036": 2085.0273964311928, - "2037": 1054.0863541634753, - "2038": 23.145311895757914, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 101367.82916472934, - "historicalEmissionChangePercent": -4.118019672572016, - "neededEmissionChangePercent": 28.661581964437065, - "hitNetZero": "2038-01-05", - "budgetRunsOut": "2027-05-14", - "electricCarChangePercent": 0.06578073314142187, - "electricCarChangeYearly": { - "2015": 0.011627906976744186, - "2016": 0.005714285714285714, - "2017": 0.020512820512820513, - "2018": 0.025477707006369428, - "2019": 0.06557377049180328, - "2020": 0.16666666666666666, - "2021": 0.31297709923664124, - "2022": 0.5131578947368421 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.403046603, - "totalConsumptionEmission": 6340.2, - "electricVehiclePerChargePoints": 18.25 - }, - { - "kommun": "Karlshamn", - "län": "Blekinge län", - "emissions": { - "1990": 218750.351070417, - "2000": 238132.947918973, - "2005": 257773.643762704, - "2010": 301217.906920006, - "2015": 111459.574227852, - "2016": 103270.602098149, - "2017": 89038.6810049438, - "2018": 113920.538995508, - "2019": 84900.6359585237, - "2020": 87020.2138414585, - "2021": 161074.659994972 - }, - "budget": 222377.08314550453, - "emissionBudget": { - "2024": 131284.9371048212, - "2025": 72747.8426050118, - "2026": 40311.16379678885, - "2027": 22337.293704701424, - "2028": 12377.58087475113, - "2029": 6858.687105804556, - "2030": 3800.5478850305262, - "2031": 2105.966346560087, - "2032": 1166.9618136670363, - "2033": 646.6389535528144, - "2034": 358.31672583862746, - "2035": 198.55110074996088, - "2036": 110.0214887171513, - "2037": 60.965302805255924, - "2038": 33.78220190868165, - "2039": 18.71945374313051, - "2040": 10.372856967359196, - "2041": 5.747825932408783, - "2042": 3.184995517939913, - "2043": 1.764875375244036, - "2044": 0.9779558786184558, - "2045": 0.5419066490131932, - "2046": 0.3002822751672202, - "2047": 0.16639294783298927, - "2048": 0.0922019558867864, - "2049": 0.05109111161298527, - "2050": 0.028310697541554092 - }, - "approximatedHistoricalEmission": { - "2021": 161074.659994972, - "2022": 123270.19169470947, - "2023": 127277.5643997658, - "2024": 131284.9371048212 - }, - "totalApproximatedHistoricalEmission": 396727.55464437185, - "trend": { - "2024": 131284.9371048212, - "2025": 135292.30980987754, - "2026": 139299.68251493294, - "2027": 143307.05521998927, - "2028": 147314.42792504467, - "2029": 151321.800630101, - "2030": 155329.1733351564, - "2031": 159336.5460402118, - "2032": 163343.91874526814, - "2033": 167351.29145032354, - "2034": 171358.66415537987, - "2035": 175366.03686043527, - "2036": 179373.4095654916, - "2037": 183380.782270547, - "2038": 187388.15497560333, - "2039": 191395.52768065874, - "2040": 195402.90038571414, - "2041": 199410.27309077047, - "2042": 203417.64579582587, - "2043": 207425.0185008822, - "2044": 211432.3912059376, - "2045": 215439.76391099393, - "2046": 219447.13661604933, - "2047": 223454.50932110567, - "2048": 227461.88202616107, - "2049": 231469.25473121647, - "2050": 235476.6274362728 - }, - "trendEmission": 4767900.339034224, - "historicalEmissionChangePercent": 11.489963461414845, - "neededEmissionChangePercent": 44.58782232806488, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-08-27", - "electricCarChangePercent": 0.05164583397223511, - "electricCarChangeYearly": { - "2015": 0.010014306151645207, - "2016": 0.017676767676767676, - "2017": 0.02696793002915452, - "2018": 0.031413612565445025, - "2019": 0.043333333333333335, - "2020": 0.14912280701754385, - "2021": 0.26864035087719296, - "2022": 0.39644970414201186 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas men har ett miljöråd. ", - "bicycleMetrePerCapita": 3.701085608, - "totalConsumptionEmission": 6011.4, - "electricVehiclePerChargePoints": 4.831932773109243 - }, - { - "kommun": "Karlskoga", - "län": "Örebro län", - "emissions": { - "1990": 239819.536762397, - "2000": 176808.624548812, - "2005": 181294.408285385, - "2010": 129053.674162172, - "2015": 98010.7109463367, - "2016": 104582.839388156, - "2017": 91311.3997732019, - "2018": 94763.0199892456, - "2019": 88973.610679066, - "2020": 81917.5169960221, - "2021": 81092.8269941256 - }, - "budget": 189781.764864751, - "emissionBudget": { - "2024": 70431.25659479853, - "2025": 48594.97151875951, - "2026": 33528.73952675504, - "2027": 23133.59467283587, - "2028": 15961.327805359757, - "2029": 11012.727979076324, - "2030": 7598.37646467013, - "2031": 5242.599745362581, - "2032": 3617.200624090034, - "2033": 2495.735129596933, - "2034": 1721.965266626909, - "2035": 1188.0925761334152, - "2036": 819.7400939615891, - "2037": 565.5904557833854, - "2038": 390.23657135922247, - "2039": 269.24885324536825, - "2040": 185.77178638445045, - "2041": 128.1756865460803, - "2042": 88.43650018824482, - "2043": 61.01792606926037, - "2044": 42.10012035605885, - "2045": 29.047531572652897, - "2046": 20.041726325916237, - "2047": 13.828052587472898, - "2048": 9.54084669416194, - "2049": 6.582832619827067, - "2050": 4.541911917227987 - }, - "approximatedHistoricalEmission": { - "2021": 81092.8269941256, - "2022": 77461.40557587333, - "2023": 73946.3310853364, - "2024": 70431.25659479853 - }, - "totalApproximatedHistoricalEmission": 227169.7784556718, - "trend": { - "2024": 70431.25659479853, - "2025": 66916.18210426159, - "2026": 63401.10761372466, - "2027": 59886.03312318772, - "2028": 56370.958632650785, - "2029": 52855.88414211385, - "2030": 49340.809651576914, - "2031": 45825.73516103905, - "2032": 42310.66067050211, - "2033": 38795.586179965176, - "2034": 35280.51168942824, - "2035": 31765.437198891304, - "2036": 28250.36270835437, - "2037": 24735.288217817433, - "2038": 21220.213727279566, - "2039": 17705.13923674263, - "2040": 14190.064746205695, - "2041": 10674.99025566876, - "2042": 7159.915765131824, - "2043": 3644.841274594888, - "2044": 129.76678405795246, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 705675.1171805938, - "historicalEmissionChangePercent": -2.8751569774822503, - "neededEmissionChangePercent": 31.003685198556663, - "hitNetZero": "2044-01-09", - "budgetRunsOut": "2026-11-27", - "electricCarChangePercent": 0.06741071126861059, - "electricCarChangeYearly": { - "2015": 0.007761966364812419, - "2016": 0.012376237623762377, - "2017": 0.010869565217391304, - "2018": 0.03894080996884735, - "2019": 0.054441260744985676, - "2020": 0.18574108818011256, - "2021": 0.3378607809847199, - "2022": 0.5070422535211268 - }, - "climatePlanLink": "https://karlskoga.se/download/18.52754ae1775ea851a920ca/1666080772061/miljoprogram-karlskoga-kommun.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Miljöprogram 2021–2030. ", - "bicycleMetrePerCapita": 3.623405516, - "totalConsumptionEmission": 6230.6, - "electricVehiclePerChargePoints": 48.04545454545455 - }, - { - "kommun": "Karlskrona", - "län": "Blekinge län", - "emissions": { - "1990": 218198.945724246, - "2000": 203552.226115188, - "2005": 182258.079557121, - "2010": 157679.732940153, - "2015": 122624.231640475, - "2016": 113066.52935583, - "2017": 121964.491070716, - "2018": 121403.701348345, - "2019": 114517.091661267, - "2020": 105707.184563507, - "2021": 104241.611582051 - }, - "budget": 238029.97631744976, - "emissionBudget": { - "2024": 98221.98820973467, - "2025": 65012.8307414614, - "2026": 43031.79194451501, - "2027": 28482.610229969545, - "2028": 18852.55177284737, - "2029": 12478.445812312426, - "2030": 8259.444756708384, - "2031": 5466.90098391955, - "2032": 3618.5248825238646, - "2033": 2395.0904477616255, - "2034": 1585.3029726737411, - "2035": 1049.307143083863, - "2036": 694.5331583336507, - "2037": 459.70935317111747, - "2038": 304.2802015386049, - "2039": 201.40212595133053, - "2040": 133.30744535006917, - "2041": 88.23578649838122, - "2042": 58.402994660521955, - "2043": 38.65676185001796, - "2044": 25.586791318067835, - "2045": 16.935818175728755, - "2046": 11.209765762180886, - "2047": 7.419709348500706, - "2048": 4.911082709860153, - "2049": 3.250630482979896, - "2050": 2.15158228055561 - }, - "approximatedHistoricalEmission": { - "2021": 104241.611582051, - "2022": 103744.41315040365, - "2023": 100983.2006800687, - "2024": 98221.98820973467 - }, - "totalApproximatedHistoricalEmission": 305959.4137263652, - "trend": { - "2024": 98221.98820973467, - "2025": 95460.77573939972, - "2026": 92699.5632690657, - "2027": 89938.35079873167, - "2028": 87177.13832839672, - "2029": 84415.92585806269, - "2030": 81654.71338772774, - "2031": 78893.50091739371, - "2032": 76132.28844705876, - "2033": 73371.07597672474, - "2034": 70609.86350638978, - "2035": 67848.65103605576, - "2036": 65087.438565720804, - "2037": 62326.22609538678, - "2038": 59565.01362505276, - "2039": 56803.8011547178, - "2040": 54042.58868438378, - "2041": 51281.376214048825, - "2042": 48520.1637437148, - "2043": 45758.95127337985, - "2044": 42997.738803045824, - "2045": 40236.52633271087, - "2046": 37475.31386237685, - "2047": 34714.10139204189, - "2048": 31952.88892170787, - "2049": 29191.676451373845, - "2050": 26430.46398103889 - }, - "trendEmission": 1620481.8784800563, - "historicalEmissionChangePercent": -2.522742820392277, - "neededEmissionChangePercent": 33.81030874406791, - "hitNetZero": "2059-07-19", - "budgetRunsOut": "2026-07-06", - "electricCarChangePercent": 0.07043528444297543, - "electricCarChangeYearly": { - "2015": 0.014041514041514042, - "2016": 0.016884531590413945, - "2017": 0.030786146234194612, - "2018": 0.054213317619328225, - "2019": 0.08313953488372093, - "2020": 0.23233908948194662, - "2021": 0.35057085292142376, - "2022": 0.5304054054054054 - }, - "climatePlanLink": "https://www.karlskrona.se/globalassets/kommun-och-politik/sa-arbetar-vi-med/hallbarhetsprogram_karlskrona_kommun_210517.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Hållbarhetsprogram 2021–2025", - "bicycleMetrePerCapita": 1.512487322, - "totalConsumptionEmission": 6165.4, - "electricVehiclePerChargePoints": 22.198275862068964 - }, - { - "kommun": "Karlstad", - "län": "Värmlands län", - "emissions": { - "1990": 424132.405580009, - "2000": 357880.029915797, - "2005": 288559.087098907, - "2010": 290882.490135866, - "2015": 219915.361551138, - "2016": 219941.925214314, - "2017": 216937.702417902, - "2018": 206265.388731755, - "2019": 205895.692588209, - "2020": 193113.08003322, - "2021": 196040.384620013 - }, - "budget": 431939.0768226275, - "emissionBudget": { - "2024": 179088.94123980775, - "2025": 118305.03778545393, - "2026": 78151.57021156505, - "2027": 51626.43992903693, - "2028": 34104.104274952144, - "2029": 22528.958611043745, - "2030": 14882.489568004772, - "2031": 9831.279801508295, - "2032": 6494.482129074525, - "2033": 4290.21439491504, - "2034": 2834.0888755296487, - "2035": 1872.1814378136614, - "2036": 1236.7513829074921, - "2037": 816.9902511744856, - "2038": 539.6986651795604, - "2039": 356.5215726599799, - "2040": 235.5159276327946, - "2041": 155.5803531183124, - "2042": 102.77541107180865, - "2043": 67.89279564718996, - "2044": 44.84955742546737, - "2045": 29.627337953692738, - "2046": 19.57163469630768, - "2047": 12.928899831784321, - "2048": 8.54075060433495, - "2049": 5.641966589154134, - "2050": 3.7270479455254244 - }, - "approximatedHistoricalEmission": { - "2021": 196040.384620013, - "2022": 188826.4148816131, - "2023": 183957.67806071043, - "2024": 179088.94123980775 - }, - "totalApproximatedHistoricalEmission": 560348.7558722339, - "trend": { - "2024": 179088.94123980775, - "2025": 174220.20441890694, - "2026": 169351.46759800427, - "2027": 164482.7307771016, - "2028": 159613.99395620078, - "2029": 154745.2571352981, - "2030": 149876.52031439543, - "2031": 145007.78349349461, - "2032": 140139.04667259194, - "2033": 135270.30985169113, - "2034": 130401.57303078845, - "2035": 125532.83620988578, - "2036": 120664.09938898496, - "2037": 115795.36256808229, - "2038": 110926.62574717961, - "2039": 106057.8889262788, - "2040": 101189.15210537612, - "2041": 96320.41528447345, - "2042": 91451.67846357264, - "2043": 86582.94164266996, - "2044": 81714.20482176915, - "2045": 76845.46800086647, - "2046": 71976.7311799638, - "2047": 67107.99435906298, - "2048": 62239.25753816031, - "2049": 57370.520717257634, - "2050": 52501.78389635682 - }, - "trendEmission": 3010679.4267701395, - "historicalEmissionChangePercent": -1.8575075192348833, - "neededEmissionChangePercent": 33.94062359940001, - "hitNetZero": "2060-10-03", - "budgetRunsOut": "2026-07-01", - "electricCarChangePercent": 0.04989308453351107, - "electricCarChangeYearly": { - "2015": 0.0165016501650165, - "2016": 0.03211009174311927, - "2017": 0.06412918108419839, - "2018": 0.04465525219805645, - "2019": 0.08192219679633868, - "2020": 0.23139339675433687, - "2021": 0.30685920577617326, - "2022": 0.3419607843137255 - }, - "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab2cd964d14c504ed938/1670425390573/Viable-Cities-Klimatkontrakt-Karlstad-FINAL.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities. Ny Energi– och klimatplan samt handlingsplan beslutas maj 2023.", - "bicycleMetrePerCapita": 2.913788973, - "totalConsumptionEmission": 6351.9, - "electricVehiclePerChargePoints": 18.075396825396826 - }, - { - "kommun": "Katrineholm", - "län": "Södermanlands län", - "emissions": { - "1990": 208000.404936604, - "2000": 114215.158232253, - "2005": 111887.847394823, - "2010": 105152.077744385, - "2015": 85105.4503117667, - "2016": 81420.5539362881, - "2017": 78318.2574589682, - "2018": 73708.3527087122, - "2019": 73140.8909856511, - "2020": 67788.418975007, - "2021": 70156.4487205661 - }, - "budget": 156895.9700279148, - "emissionBudget": { - "2024": 59100.77304896247, - "2025": 40550.8345980788, - "2026": 27823.158679133594, - "2027": 19090.313838347567, - "2028": 13098.443877255462, - "2029": 8987.239992931512, - "2030": 6166.418198027318, - "2031": 4230.966728703032, - "2032": 2902.9947182496812, - "2033": 1991.8328066760503, - "2034": 1366.6569576616657, - "2035": 937.7048282691572, - "2036": 643.387749961589, - "2037": 441.44786751787655, - "2038": 302.89078358690415, - "2039": 207.8225619204596, - "2040": 142.59336890913124, - "2041": 97.8376393254051, - "2042": 67.12937454243065, - "2043": 46.05950181882397, - "2044": 31.60282249400846, - "2045": 21.6836559265527, - "2046": 14.877814613877135, - "2047": 10.208120274304981, - "2048": 7.004101223137945, - "2049": 4.805726483008403, - "2050": 3.297354834506717 - }, - "approximatedHistoricalEmission": { - "2021": 70156.4487205661, - "2022": 64621.3902753545, - "2023": 61861.08166215848, - "2024": 59100.77304896247 - }, - "totalApproximatedHistoricalEmission": 191111.08282227727, - "trend": { - "2024": 59100.77304896247, - "2025": 56340.46443576738, - "2026": 53580.15582257137, - "2027": 50819.84720937535, - "2028": 48059.53859618027, - "2029": 45299.22998298425, - "2030": 42538.92136978824, - "2031": 39778.61275659315, - "2032": 37018.30414339714, - "2033": 34257.99553020112, - "2034": 31497.686917006038, - "2035": 28737.378303810023, - "2036": 25977.069690614007, - "2037": 23216.761077418923, - "2038": 20456.452464222908, - "2039": 17696.143851026893, - "2040": 14935.835237830877, - "2041": 12175.526624635793, - "2042": 9415.218011439778, - "2043": 6654.909398243763, - "2044": 3894.6007850486785, - "2045": 1134.2921718526632, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 633035.3309044898, - "historicalEmissionChangePercent": -3.103461539061256, - "neededEmissionChangePercent": 31.386964152762992, - "hitNetZero": "2045-05-24", - "budgetRunsOut": "2026-11-04", - "electricCarChangePercent": 0.06806819251218851, - "electricCarChangeYearly": { - "2015": 0.00998003992015968, - "2016": 0.012808783165599268, - "2017": 0.02662993572084481, - "2018": 0.030526315789473683, - "2019": 0.043568464730290454, - "2020": 0.26734104046242774, - "2021": 0.3618421052631579, - "2022": 0.47246376811594204 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Ska påbörjas 2023", - "bicycleMetrePerCapita": 2.805132199, - "totalConsumptionEmission": 5768.7, - "electricVehiclePerChargePoints": 27.195652173913043 - }, - { - "kommun": "Kil", - "län": "Värmlands län", - "emissions": { - "1990": 58934.3614561996, - "2000": 53658.3197520476, - "2005": 50228.7847903218, - "2010": 46319.5670792933, - "2015": 37093.8639772829, - "2016": 36916.0742267188, - "2017": 37584.023551899, - "2018": 36309.192741783, - "2019": 35714.1035763735, - "2020": 33720.4095473731, - "2021": 35690.6495938968 - }, - "budget": 74955.14919339515, - "emissionBudget": { - "2024": 33474.56835553795, - "2025": 21417.13602618404, - "2026": 13702.752211536283, - "2027": 8767.064743913721, - "2028": 5609.19609706331, - "2029": 3588.781624676903, - "2030": 2296.113975469954, - "2031": 1469.0610741251453, - "2032": 939.9099794547492, - "2033": 601.3574146362345, - "2034": 384.75039955183956, - "2035": 246.1645376815487, - "2036": 157.4968594770909, - "2037": 100.76699503011235, - "2038": 64.47104609648203, - "2039": 41.24878174180559, - "2040": 26.391102645315346, - "2041": 16.88511198209955, - "2042": 10.803148715677128, - "2043": 6.911889142148552, - "2044": 4.422248806407984, - "2045": 2.8293689472713046, - "2046": 1.8102393126734848, - "2047": 1.1581969089994233, - "2048": 0.7410180911576355, - "2049": 0.4741057476118505, - "2050": 0.30333437550416803 - }, - "approximatedHistoricalEmission": { - "2021": 35690.6495938968, - "2022": 34365.34639013617, - "2023": 33919.957372837, - "2024": 33474.56835553795 - }, - "totalApproximatedHistoricalEmission": 102867.91273769055, - "trend": { - "2024": 33474.56835553795, - "2025": 33029.179338238784, - "2026": 32583.790320939734, - "2027": 32138.401303640567, - "2028": 31693.012286341516, - "2029": 31247.62326904235, - "2030": 30802.2342517433, - "2031": 30356.845234444132, - "2032": 29911.456217144965, - "2033": 29466.067199845915, - "2034": 29020.678182546748, - "2035": 28575.289165247697, - "2036": 28129.90014794853, - "2037": 27684.51113064948, - "2038": 27239.122113350313, - "2039": 26793.733096051263, - "2040": 26348.344078752096, - "2041": 25902.955061453045, - "2042": 25457.56604415388, - "2043": 25012.177026854828, - "2044": 24566.78800955566, - "2045": 24121.39899225661, - "2046": 23676.009974957444, - "2047": 23230.620957658393, - "2048": 22785.231940359226, - "2049": 22339.84292306006, - "2050": 21894.45390576101 - }, - "trendEmission": 719797.2893968861, - "historicalEmissionChangePercent": -0.5733871366737643, - "neededEmissionChangePercent": 36.01967977985641, - "hitNetZero": "2099-02-08", - "budgetRunsOut": "2026-04-10", - "electricCarChangePercent": 0.06355871073210718, - "electricCarChangeYearly": { - "2015": 0.02262443438914027, - "2016": 0.0, - "2017": 0.02880658436213992, - "2018": 0.026041666666666668, - "2019": 0.08426966292134831, - "2020": 0.23417721518987342, - "2021": 0.28921568627450983, - "2022": 0.4824120603015075 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.45585916, - "totalConsumptionEmission": 6153.6, - "electricVehiclePerChargePoints": 39.0 - }, - { - "kommun": "Kinda", - "län": "Östergötlands län", - "emissions": { - "1990": 72572.6746077543, - "2000": 61630.4404641393, - "2005": 59248.0144682838, - "2010": 55485.948395628, - "2015": 48576.4574664306, - "2016": 47326.4148415829, - "2017": 46571.7165840146, - "2018": 42816.1056510491, - "2019": 43484.5621024737, - "2020": 38285.9056131397, - "2021": 38712.3814730806 - }, - "budget": 90579.98662775644, - "emissionBudget": { - "2024": 32804.70605057897, - "2025": 22837.619011151517, - "2026": 15898.842114127225, - "2027": 11068.28082413133, - "2028": 7705.393859655824, - "2029": 5364.256245014586, - "2030": 3734.428841183633, - "2031": 2599.7935469293034, - "2032": 1809.8956424385888, - "2033": 1259.993217687323, - "2034": 877.1682031782793, - "2035": 610.657300266476, - "2036": 425.1206747093531, - "2037": 295.95582986802987, - "2038": 206.0352705564316, - "2039": 143.43536578479, - "2040": 99.85525343429737, - "2041": 69.51613072461029, - "2042": 48.39497437258806, - "2043": 33.69108033071682, - "2044": 23.454685296697903, - "2045": 16.328424525632663, - "2046": 11.367342776789178, - "2047": 7.913591516571282, - "2048": 5.50919699712249, - "2049": 3.8353320978909626, - "2050": 2.670039265031865 - }, - "approximatedHistoricalEmission": { - "2021": 38712.3814730806, - "2022": 36430.448973326944, - "2023": 34617.57751195319, - "2024": 32804.70605057897 - }, - "totalApproximatedHistoricalEmission": 106806.57024710992, - "trend": { - "2024": 32804.70605057897, - "2025": 30991.83458920475, - "2026": 29178.96312783053, - "2027": 27366.091666456312, - "2028": 25553.220205082092, - "2029": 23740.348743707873, - "2030": 21927.477282333653, - "2031": 20114.605820959434, - "2032": 18301.734359585214, - "2033": 16488.86289821146, - "2034": 14675.991436837241, - "2035": 12863.119975463022, - "2036": 11050.248514088802, - "2037": 9237.377052714583, - "2038": 7424.505591340363, - "2039": 5611.6341299661435, - "2040": 3798.762668591924, - "2041": 1985.8912072177045, - "2042": 173.019745843485, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 296886.0420407241, - "historicalEmissionChangePercent": -3.585364809220387, - "neededEmissionChangePercent": 30.383101205235608, - "hitNetZero": "2042-01-30", - "budgetRunsOut": "2027-01-05", - "electricCarChangePercent": 0.07656595537898003, - "electricCarChangeYearly": { - "2015": 0.007272727272727273, - "2016": 0.006289308176100629, - "2017": 0.02877697841726619, - "2018": 0.040145985401459854, - "2019": 0.06545454545454546, - "2020": 0.3192771084337349, - "2021": 0.3177570093457944, - "2022": 0.5754716981132075 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 1.666942945, - "totalConsumptionEmission": 6124.1, - "electricVehiclePerChargePoints": 38.1 - }, - { - "kommun": "Kiruna", - "län": "Norrbottens län", - "emissions": { - "1990": 278729.053745472, - "2000": 543407.349444547, - "2005": 607465.687371568, - "2010": 705602.073394352, - "2015": 669562.379461224, - "2016": 697347.8312432, - "2017": 705702.257008999, - "2018": 695370.935933844, - "2019": 711087.333820587, - "2020": 702549.349758414, - "2021": 685614.104946655 - }, - "budget": 1441831.7643200788, - "emissionBudget": { - "2024": 709021.3039457691, - "2025": 433605.5299881793, - "2026": 265173.6338386674, - "2027": 162168.26405585874, - "2028": 99174.814200762, - "2029": 60650.85440125193, - "2030": 37091.33381541132, - "2031": 22683.39098909508, - "2032": 13872.14138280387, - "2033": 8483.577549627056, - "2034": 5188.174345581045, - "2035": 3172.854009135403, - "2036": 1940.374762436621, - "2037": 1186.6459055035273, - "2038": 725.6992475412492, - "2039": 443.80500993551846, - "2040": 271.4111768906997, - "2041": 165.9828647538195, - "2042": 101.5076523653245, - "2043": 62.07751326621481, - "2044": 37.96381419055938, - "2045": 23.216960732860215, - "2046": 14.198448632308793, - "2047": 8.68313238256814, - "2048": 5.310213103256699, - "2049": 3.247487422696554, - "2050": 1.9860172003463377 - }, - "approximatedHistoricalEmission": { - "2021": 685614.104946655, - "2022": 704453.9260673192, - "2023": 706737.6150065442, - "2024": 709021.3039457691 - }, - "totalApproximatedHistoricalEmission": 2108509.2455200753, - "trend": { - "2024": 709021.3039457691, - "2025": 711304.992884994, - "2026": 713588.681824219, - "2027": 715872.3707634439, - "2028": 718156.0597026697, - "2029": 720439.7486418947, - "2030": 722723.4375811196, - "2031": 725007.1265203445, - "2032": 727290.8154595695, - "2033": 729574.5043987944, - "2034": 731858.1933380202, - "2035": 734141.8822772452, - "2036": 736425.5712164701, - "2037": 738709.260155695, - "2038": 740992.94909492, - "2039": 743276.6380341449, - "2040": 745560.3269733707, - "2041": 747844.0159125957, - "2042": 750127.7048518206, - "2043": 752411.3937910455, - "2044": 754695.0827302705, - "2045": 756978.7716694954, - "2046": 759262.4606087212, - "2047": 761546.1495479462, - "2048": 763829.8384871711, - "2049": 766113.527426396, - "2050": 768397.216365621 - }, - "trendEmission": 19206440.764048077, - "historicalEmissionChangePercent": 0.42212568775620496, - "neededEmissionChangePercent": 38.84449908978411, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2026-01-10", - "electricCarChangePercent": 0.03892288872701098, - "electricCarChangeYearly": { - "2015": 0.014586709886547812, - "2016": 0.00697350069735007, - "2017": 0.023255813953488372, - "2018": 0.01037344398340249, - "2019": 0.023985239852398525, - "2020": 0.13190184049079753, - "2021": 0.1697530864197531, - "2022": 0.3168831168831169 - }, - "climatePlanLink": "https://kiruna.se/download/18.22bd3f5d17597b58e4e4c2/1604915931895/atgardsplan-for-hallbar-energi-tillika-energiplan-for-kiruna-kommunkoncern.pdf", - "climatePlanYear": 2015, - "climatePlanComment": "Åtgärdsplan för hållbar energi för kommunkoncernen", - "bicycleMetrePerCapita": 1.255295331, - "totalConsumptionEmission": 6496.0, - "electricVehiclePerChargePoints": 14.030303030303031 - }, - { - "kommun": "Klippan", - "län": "Skåne län", - "emissions": { - "1990": 147739.012774459, - "2000": 128751.020330947, - "2005": 116387.716031546, - "2010": 91619.6267998664, - "2015": 77655.3021279539, - "2016": 74492.2456302469, - "2017": 71802.5930582471, - "2018": 73024.334246371, - "2019": 67936.3283950764, - "2020": 66384.8031012905, - "2021": 67082.1645574866 - }, - "budget": 147635.57138520578, - "emissionBudget": { - "2024": 60096.70392399235, - "2025": 40000.57613188022, - "2026": 26624.523250160488, - "2027": 17721.375711220695, - "2028": 11795.409598417875, - "2029": 7851.065846222881, - "2030": 5225.69686176859, - "2031": 3478.2420917073086, - "2032": 2315.1300905024027, - "2033": 1540.9586781576695, - "2034": 1025.6674808602809, - "2035": 682.6878593214524, - "2036": 454.39942472778404, - "2037": 302.44984493816503, - "2038": 201.3116736622638, - "2039": 133.9937534469138, - "2040": 89.18671051791019, - "2041": 59.36298617201485, - "2042": 39.51221103228328, - "2043": 26.299465733340806, - "2044": 17.505016292154558, - "2045": 11.65140001304775, - "2046": 7.755212562977873, - "2047": 5.161896581493948, - "2048": 3.4357764022147768, - "2049": 2.286864779185374, - "2050": 1.5221451881756234 - }, - "approximatedHistoricalEmission": { - "2021": 67082.1645574866, - "2022": 63796.74409774132, - "2023": 61946.72401086707, - "2024": 60096.70392399235 - }, - "totalApproximatedHistoricalEmission": 189332.90234934786, - "trend": { - "2024": 60096.70392399235, - "2025": 58246.68383711809, - "2026": 56396.66375024337, - "2027": 54546.64366336912, - "2028": 52696.623576494865, - "2029": 50846.603489620145, - "2030": 48996.58340274589, - "2031": 47146.56331587117, - "2032": 45296.54322899692, - "2033": 43446.5231421222, - "2034": 41596.503055247944, - "2035": 39746.48296837369, - "2036": 37896.46288149897, - "2037": 36046.442794624716, - "2038": 34196.422707749996, - "2039": 32346.402620875742, - "2040": 30496.382534001023, - "2041": 28646.36244712677, - "2042": 26796.342360252514, - "2043": 24946.322273377795, - "2044": 23096.30218650354, - "2045": 21246.28209962882, - "2046": 19396.262012754567, - "2047": 17546.241925879847, - "2048": 15696.221839005593, - "2049": 13846.20175213134, - "2050": 11996.18166525662 - }, - "trendEmission": 937207.5126602391, - "historicalEmissionChangePercent": -2.363863138643421, - "neededEmissionChangePercent": 33.439650563080505, - "hitNetZero": "2056-06-17", - "budgetRunsOut": "2026-07-23", - "electricCarChangePercent": 0.06431778429002259, - "electricCarChangeYearly": { - "2015": 0.020080321285140562, - "2016": 0.015625, - "2017": 0.03932584269662921, - "2018": 0.0321285140562249, - "2019": 0.08917197452229299, - "2020": 0.245136186770428, - "2021": 0.3779527559055118, - "2022": 0.43673469387755104 - }, - "climatePlanLink": "https://www.klippan.se/download/18.1b71982c18529d736e712692/1673968304934/Ha%CC%8Allbarhetsstrategi.pdf?query=klimat", - "climatePlanYear": "Saknas", - "climatePlanComment": "Hållbarhetsstrategi 2021–2023", - "bicycleMetrePerCapita": 2.953589832, - "totalConsumptionEmission": 6164.1, - "electricVehiclePerChargePoints": 29.1875 - }, - { - "kommun": "Knivsta", - "län": "Uppsala län", - "emissions": { - "1990": 82605.9270022822, - "2000": 79426.2432003221, - "2005": 79042.6684531072, - "2010": 78745.2637768465, - "2015": 71217.5120526025, - "2016": 69011.1076090503, - "2017": 68599.7038887571, - "2018": 68009.5838609182, - "2019": 66746.2763657719, - "2020": 58256.8793403496, - "2021": 58815.7302393248 - }, - "budget": 136461.4010518996, - "emissionBudget": { - "2024": 52829.42130092066, - "2025": 35871.031802710444, - "2026": 24356.331962482436, - "2027": 16537.882431968916, - "2028": 11229.17669848307, - "2029": 7624.580102347661, - "2030": 5177.068924827687, - "2031": 3515.2155650071754, - "2032": 2386.8217031474032, - "2033": 1620.645373594277, - "2034": 1100.4137525182914, - "2035": 747.1779122448132, - "2036": 507.3317479619907, - "2037": 344.47686189877135, - "2038": 233.89884205022278, - "2039": 158.81667062013545, - "2040": 107.83608266623565, - "2041": 73.22040362257087, - "2042": 49.71645273174253, - "2043": 33.75733470370623, - "2044": 22.92113744411365, - "2045": 15.563389300230131, - "2046": 10.56749854151419, - "2047": 7.175302453126547, - "2048": 4.872010636347503, - "2049": 3.308081825922241, - "2050": 2.2461784638469475 - }, - "approximatedHistoricalEmission": { - "2021": 58815.7302393248, - "2022": 57155.65197950788, - "2023": 54992.5366402138, - "2024": 52829.42130092066 - }, - "totalApproximatedHistoricalEmission": 167970.7643898444, - "trend": { - "2024": 52829.42130092066, - "2025": 50666.30596162658, - "2026": 48503.19062233344, - "2027": 46340.07528304029, - "2028": 44176.95994374622, - "2029": 42013.84460445307, - "2030": 39850.729265158996, - "2031": 37687.61392586585, - "2032": 35524.498586571775, - "2033": 33361.38324727863, - "2034": 31198.267907985486, - "2035": 29035.15256869141, - "2036": 26872.037229398265, - "2037": 24708.92189010419, - "2038": 22545.806550811045, - "2039": 20382.6912115179, - "2040": 18219.575872223824, - "2041": 16056.46053293068, - "2042": 13893.345193636604, - "2043": 11730.229854343459, - "2044": 9567.114515050314, - "2045": 7403.999175756238, - "2046": 5240.883836463094, - "2047": 3077.768497169018, - "2048": 914.6531578758731, - "2049": 0, - "2050": 0 - }, - "trendEmission": 645386.2200844926, - "historicalEmissionChangePercent": -3.0286103671018156, - "neededEmissionChangePercent": 32.10027496158599, - "hitNetZero": "2048-05-28", - "budgetRunsOut": "2026-09-26", - "electricCarChangePercent": 0.09554434701457269, - "electricCarChangeYearly": { - "2015": 0.030211480362537766, - "2016": 0.030612244897959183, - "2017": 0.022900763358778626, - "2018": 0.07828282828282829, - "2019": 0.1293634496919918, - "2020": 0.3317422434367542, - "2021": 0.5384615384615384, - "2022": 0.6743362831858407 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.840850954, - "totalConsumptionEmission": 6273.3, - "electricVehiclePerChargePoints": 47.48 - }, - { - "kommun": "Kramfors", - "län": "Västernorrlands län", - "emissions": { - "1990": 179418.960357908, - "2000": 173337.317881884, - "2005": 134611.202217196, - "2010": 131165.000261707, - "2015": 91755.4205560817, - "2016": 97785.3247988768, - "2017": 92984.7508979819, - "2018": 89910.8784853485, - "2019": 84611.7927809191, - "2020": 80689.0754995074, - "2021": 82433.5722273519 - }, - "budget": 183714.599590052, - "emissionBudget": { - "2024": 73482.04467044026, - "2025": 49257.505114465974, - "2026": 33018.97519296539, - "2027": 22133.738204160036, - "2028": 14836.994910570873, - "2029": 9945.740567896091, - "2030": 6666.96699972704, - "2031": 4469.093947506006, - "2032": 2995.785146747021, - "2033": 2008.176321842249, - "2034": 1346.1486528788148, - "2035": 902.3690678640504, - "2036": 604.8885707358348, - "2037": 405.4773108224108, - "2038": 271.8051845346828, - "2039": 182.20022765290975, - "2040": 122.13498801946575, - "2041": 81.87122206527508, - "2042": 54.88105506174264, - "2043": 36.788631325041784, - "2044": 24.660666476751032, - "2045": 16.530880578413633, - "2046": 11.081209542953737, - "2047": 7.428110338852418, - "2048": 4.97931412561834, - "2049": 3.3378030253401825, - "2050": 2.237442498084327 - }, - "approximatedHistoricalEmission": { - "2021": 82433.5722273519, - "2022": 78519.97336343955, - "2023": 76001.00901693944, - "2024": 73482.04467044026 - }, - "totalApproximatedHistoricalEmission": 232478.79082927507, - "trend": { - "2024": 73482.04467044026, - "2025": 70963.08032394014, - "2026": 68444.11597744003, - "2027": 65925.15163094085, - "2028": 63406.18728444073, - "2029": 60887.22293794155, - "2030": 58368.25859144144, - "2031": 55849.294244941324, - "2032": 53330.32989844214, - "2033": 50811.36555194203, - "2034": 48292.401205441914, - "2035": 45773.43685894273, - "2036": 43254.47251244262, - "2037": 40735.508165943436, - "2038": 38216.54381944332, - "2039": 35697.57947294321, - "2040": 33178.61512644403, - "2041": 30659.650779943913, - "2042": 28140.68643344473, - "2043": 25621.722086944617, - "2044": 23102.757740444504, - "2045": 20583.79339394532, - "2046": 18064.829047445208, - "2047": 15545.864700946026, - "2048": 13026.900354445912, - "2049": 10507.936007945798, - "2050": 7988.971661446616 - }, - "trendEmission": 1059123.212314521, - "historicalEmissionChangePercent": -1.6685352661789654, - "neededEmissionChangePercent": 32.96661063885602, - "hitNetZero": "2053-02-24", - "budgetRunsOut": "2026-08-14", - "electricCarChangePercent": 0.08132507376740258, - "electricCarChangeYearly": { - "2015": 0.0029154518950437317, - "2016": 0.013368983957219251, - "2017": 0.04075235109717868, - "2018": 0.04057971014492753, - "2019": 0.060498220640569395, - "2020": 0.28125, - "2021": 0.4882154882154882, - "2022": 0.533724340175953 - }, - "climatePlanLink": "https://www.kramfors.se/download/18.22be0c416e405e2b6c7c6cb/1575389653000/Kramfors-kommun-Program-f%C3%B6r-ekologisk-h%C3%A5llbarhet-2020-2031.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Program för Ekologisk hållbarhet 2020–2031", - "bicycleMetrePerCapita": 2.479463175, - "totalConsumptionEmission": 6163.1, - "electricVehiclePerChargePoints": 10.290322580645162 - }, - { - "kommun": "Kristianstad", - "län": "Skåne län", - "emissions": { - "1990": 383605.33709947, - "2000": 339503.884302256, - "2005": 306093.096778466, - "2010": 288481.078418043, - "2015": 242826.864884333, - "2016": 229502.906328977, - "2017": 231082.45640406, - "2018": 223063.006033357, - "2019": 218748.804854722, - "2020": 199736.257528065, - "2021": 196241.92700692 - }, - "budget": 456553.8111960789, - "emissionBudget": { - "2024": 174824.2255521901, - "2025": 119206.78111452119, - "2026": 81283.10947067912, - "2027": 55424.22858373432, - "2028": 37791.92422762966, - "2029": 25769.04673863251, - "2030": 17571.04946067671, - "2031": 11981.109828431747, - "2032": 8169.517309833778, - "2033": 5570.520096334824, - "2034": 3798.350987801691, - "2035": 2589.968257367345, - "2036": 1766.0125659036817, - "2037": 1204.184790318591, - "2038": 821.0932567700173, - "2039": 559.8759772865277, - "2040": 381.7606676927598, - "2041": 260.30980665319, - "2042": 177.49653427983628, - "2043": 121.02893888791195, - "2044": 82.52557779657982, - "2045": 56.27142610055188, - "2046": 38.36959982509934, - "2047": 26.162944370870047, - "2048": 17.839635056748204, - "2049": 12.16424934619755, - "2050": 8.294394010066663 - }, - "approximatedHistoricalEmission": { - "2021": 196241.92700692, - "2022": 189940.06575100496, - "2023": 182382.14565159753, - "2024": 174824.2255521901 - }, - "totalApproximatedHistoricalEmission": 557855.2876821575, - "trend": { - "2024": 174824.2255521901, - "2025": 167266.30545278266, - "2026": 159708.38535337523, - "2027": 152150.46525396965, - "2028": 144592.54515456222, - "2029": 137034.6250551548, - "2030": 129476.70495574735, - "2031": 121918.78485633992, - "2032": 114360.86475693434, - "2033": 106802.94465752691, - "2034": 99245.02455811948, - "2035": 91687.10445871204, - "2036": 84129.1843593046, - "2037": 76571.26425989904, - "2038": 69013.3441604916, - "2039": 61455.424061084166, - "2040": 53897.50396167673, - "2041": 46339.58386227116, - "2042": 38781.663762863725, - "2043": 31223.74366345629, - "2044": 23665.823564048856, - "2045": 16107.903464641422, - "2046": 8549.98336523585, - "2047": 992.0632658284158, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 2022383.3530401215, - "historicalEmissionChangePercent": -3.4406998754813425, - "neededEmissionChangePercent": 31.813350959799042, - "hitNetZero": "2047-02-11", - "budgetRunsOut": "2026-10-12", - "electricCarChangePercent": 0.07535474375627423, - "electricCarChangeYearly": { - "2015": 0.01085915043117215, - "2016": 0.017018779342723004, - "2017": 0.032505366452008584, - "2018": 0.03319783197831978, - "2019": 0.0628997867803838, - "2020": 0.2339688041594454, - "2021": 0.4082941427960667, - "2022": 0.5450490633363069 - }, - "climatePlanLink": "https://www.kristianstad.se/sv/bygga-bo-och-miljo/samhallsutveckling-och-hallbarhet/klimat-och-miljo/klimat-och-miljoplan/", - "climatePlanYear": 2023, - "climatePlanComment": "Remissversion, kommer klubbas 2023", - "bicycleMetrePerCapita": 4.197073098, - "totalConsumptionEmission": 6072.5, - "electricVehiclePerChargePoints": 14.435294117647059 - }, - { - "kommun": "Kristinehamn", - "län": "Värmlands län", - "emissions": { - "1990": 158504.862567709, - "2000": 169071.916787885, - "2005": 142251.2271408, - "2010": 135955.328901623, - "2015": 99976.8652132213, - "2016": 93947.8612245658, - "2017": 91200.3882881163, - "2018": 92084.2413099675, - "2019": 83192.3512407978, - "2020": 80632.8444123013, - "2021": 80865.1948404024 - }, - "budget": 184226.76480425202, - "emissionBudget": { - "2024": 69134.30340627395, - "2025": 47502.5605181747, - "2026": 32639.270877184725, - "2027": 22426.6227288241, - "2028": 15409.455956094309, - "2029": 10587.922030615115, - "2030": 7275.0195234536295, - "2031": 4998.705970217339, - "2032": 3434.6383945956077, - "2033": 2359.958951759945, - "2034": 1621.540789491942, - "2035": 1114.1696045286183, - "2036": 765.5520697967783, - "2037": 526.0150422233831, - "2038": 361.4278317067542, - "2039": 248.33905315728822, - "2040": 170.6351307585423, - "2041": 117.24433784703075, - "2042": 80.5592300722665, - "2043": 55.352690535074025, - "2044": 38.03313843395915, - "2045": 26.13277882526991, - "2046": 17.955976215749395, - "2047": 12.337650121952857, - "2048": 8.47726732886912, - "2049": 5.824777056794737, - "2050": 4.002236386461626 - }, - "approximatedHistoricalEmission": { - "2021": 80865.1948404024, - "2022": 75703.8092484381, - "2023": 72419.05632735603, - "2024": 69134.30340627395 - }, - "totalApproximatedHistoricalEmission": 223122.6146991323, - "trend": { - "2024": 69134.30340627395, - "2025": 65849.55048519094, - "2026": 62564.797564108856, - "2027": 59280.04464302678, - "2028": 55995.2917219447, - "2029": 52710.53880086262, - "2030": 49425.78587977961, - "2031": 46141.03295869753, - "2032": 42856.28003761545, - "2033": 39571.52711653337, - "2034": 36286.77419545129, - "2035": 33002.02127436828, - "2036": 29717.2683532862, - "2037": 26432.51543220412, - "2038": 23147.76251112204, - "2039": 19863.00959003996, - "2040": 16578.25666895788, - "2041": 13293.50374787487, - "2042": 10008.750826792791, - "2043": 6723.997905710712, - "2044": 3439.2449846286327, - "2045": 154.49206354655325, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 727609.5984648801, - "historicalEmissionChangePercent": -3.405073736539824, - "neededEmissionChangePercent": 31.28944940831813, - "hitNetZero": "2045-01-12", - "budgetRunsOut": "2026-11-10", - "electricCarChangePercent": 0.05632201864964928, - "electricCarChangeYearly": { - "2015": 0.012222222222222223, - "2016": 0.024757804090419805, - "2017": 0.03773584905660377, - "2018": 0.036756756756756756, - "2019": 0.051047120418848166, - "2020": 0.1643598615916955, - "2021": 0.31135531135531136, - "2022": 0.4270650263620387 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.445690665, - "totalConsumptionEmission": 5767.0, - "electricVehiclePerChargePoints": 17.0 - }, - { - "kommun": "Krokom", - "län": "Jämtlands län", - "emissions": { - "1990": 83918.4081323876, - "2000": 80322.453219623, - "2005": 75466.4158521212, - "2010": 67395.6596243179, - "2015": 60831.2173563344, - "2016": 58122.7331068045, - "2017": 54523.4195770528, - "2018": 41496.9592099231, - "2019": 42839.2978264091, - "2020": 39932.603862411, - "2021": 39702.8662282482 - }, - "budget": 99963.30727607019, - "emissionBudget": { - "2024": 24324.992390234023, - "2025": 19070.928425239006, - "2026": 14951.713248905566, - "2027": 11722.225792722335, - "2028": 9190.289784725703, - "2029": 7205.237965956168, - "2030": 5648.946372979432, - "2031": 4428.805165848925, - "2032": 3472.207718393495, - "2033": 2722.2300345561466, - "2034": 2134.243386933151, - "2035": 1673.2586066741299, - "2036": 1311.8439920913981, - "2037": 1028.4929375064917, - "2038": 806.3441452472914, - "2039": 632.1782647831559, - "2040": 495.63125226348205, - "2041": 388.5776400498806, - "2042": 304.6470166220786, - "2043": 238.84494415278067, - "2044": 187.25575579199867, - "2045": 146.80954709597268, - "2046": 115.09949602011424, - "2047": 90.23864078419813, - "2048": 70.74759292739658, - "2049": 55.466503723060164, - "2050": 43.48604536153591 - }, - "approximatedHistoricalEmission": { - "2021": 39702.8662282482, - "2022": 32285.66622049734, - "2023": 28305.32930536568, - "2024": 24324.992390234023 - }, - "totalApproximatedHistoricalEmission": 92604.92483510413, - "trend": { - "2024": 24324.992390234023, - "2025": 20344.655475102365, - "2026": 16364.318559970707, - "2027": 12383.981644839048, - "2028": 8403.64472970739, - "2029": 4423.3078145748, - "2030": 442.9708994431421, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 74525.37531875446, - "historicalEmissionChangePercent": -6.443699806862473, - "neededEmissionChangePercent": 21.599447517625595, - "hitNetZero": "2030-02-08", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.0929713150065911, - "electricCarChangeYearly": { - "2015": 0.04975124378109453, - "2016": 0.010638297872340425, - "2017": 0.06666666666666667, - "2018": 0.05333333333333334, - "2019": 0.11594202898550725, - "2020": 0.30526315789473685, - "2021": 0.5, - "2022": 0.7046632124352331 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 1.078378995, - "totalConsumptionEmission": 6107.5, - "electricVehiclePerChargePoints": 6.552238805970149 - }, - { - "kommun": "Kumla", - "län": "Örebro län", - "emissions": { - "1990": 149435.591000509, - "2000": 141729.340107194, - "2005": 178567.799414359, - "2010": 183040.797142535, - "2015": 190780.299923389, - "2016": 194299.288310504, - "2017": 202851.522333662, - "2018": 196725.355222654, - "2019": 187473.137967606, - "2020": 177000.848891856, - "2021": 191950.953151967 - }, - "budget": 397271.5700701852, - "emissionBudget": { - "2024": 181626.63578931475, - "2025": 114981.13197577078, - "2026": 72790.31873808125, - "2027": 46080.86919085095, - "2028": 29172.100661147488, - "2029": 18467.782225624433, - "2030": 11691.272572198577, - "2031": 7401.313957871365, - "2032": 4685.499201621987, - "2033": 2966.216930313044, - "2034": 1877.8026628688704, - "2035": 1188.767687434541, - "2036": 752.5650286007451, - "2037": 476.42119504028517, - "2038": 301.6047071781099, - "2039": 190.93482896851702, - "2040": 120.87380616280645, - "2041": 76.52075367921903, - "2042": 48.44247012250918, - "2043": 30.667143209378548, - "2044": 19.41423858540062, - "2045": 12.290439226031044, - "2046": 7.780624293056495, - "2047": 4.925626600999066, - "2048": 3.1182327405425587, - "2049": 1.9740382720483487, - "2050": 1.2496909062771215 - }, - "approximatedHistoricalEmission": { - "2021": 191950.953151967, - "2022": 184945.44318343047, - "2023": 183286.03948637284, - "2024": 181626.63578931475 - }, - "totalApproximatedHistoricalEmission": 555020.2771404441, - "trend": { - "2024": 181626.63578931475, - "2025": 179967.23209225712, - "2026": 178307.82839519903, - "2027": 176648.4246981414, - "2028": 174989.02100108378, - "2029": 173329.61730402568, - "2030": 171670.21360696806, - "2031": 170010.80990990996, - "2032": 168351.40621285234, - "2033": 166692.00251579424, - "2034": 165032.59881873662, - "2035": 163373.195121679, - "2036": 161713.7914246209, - "2037": 160054.38772756327, - "2038": 158394.98403050518, - "2039": 156735.58033344755, - "2040": 155076.17663638946, - "2041": 153416.77293933183, - "2042": 151757.3692422742, - "2043": 150097.9655452161, - "2044": 148438.56184815848, - "2045": 146779.1581511004, - "2046": 145119.75445404276, - "2047": 143460.35075698467, - "2048": 141800.94705992704, - "2049": 140141.54336286942, - "2050": 138482.13966581132 - }, - "trendEmission": 4161414.0809166413, - "historicalEmissionChangePercent": 0.23054793517035935, - "neededEmissionChangePercent": 36.69368400946003, - "hitNetZero": "2133-05-19", - "budgetRunsOut": "2026-03-18", - "electricCarChangePercent": 0.07362269170409613, - "electricCarChangeYearly": { - "2015": 0.01834862385321101, - "2016": 0.02142857142857143, - "2017": 0.035916824196597356, - "2018": 0.060948081264108354, - "2019": 0.1038961038961039, - "2020": 0.2626865671641791, - "2021": 0.3817204301075269, - "2022": 0.5411471321695761 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Nya handlingsplanen för ökad ekologisk hållbarhet förväntas hösten 2023.", - "bicycleMetrePerCapita": 3.84927185, - "totalConsumptionEmission": 6108.8, - "electricVehiclePerChargePoints": 45.705882352941174 - }, - { - "kommun": "Kungsbacka", - "län": "Hallands län", - "emissions": { - "1990": 252923.434702942, - "2000": 240822.485181889, - "2005": 227569.636573946, - "2010": 240139.945458325, - "2015": 199859.118908086, - "2016": 192309.658500629, - "2017": 190809.092456781, - "2018": 185553.640890128, - "2019": 186077.90382155, - "2020": 170648.221239489, - "2021": 170972.7920826 - }, - "budget": 383985.2637107224, - "emissionBudget": { - "2024": 156308.6946354732, - "2025": 104038.7420898021, - "2026": 69247.97037599923, - "2027": 46091.30507418257, - "2028": 30678.27680589568, - "2029": 20419.39724345824, - "2030": 13591.108341066323, - "2031": 9046.213447744185, - "2032": 6021.140858312609, - "2033": 4007.6588337280546, - "2034": 2667.48938540189, - "2035": 1775.4753876124446, - "2036": 1181.7527257161423, - "2037": 786.5721566636387, - "2038": 523.5407917198233, - "2039": 348.4676622132587, - "2040": 231.93935129577798, - "2041": 154.3783498813838, - "2042": 102.75390863582518, - "2043": 68.39278790097194, - "2044": 45.52209739724189, - "2045": 30.29941335984828, - "2046": 20.167226521653546, - "2047": 13.423264033047364, - "2048": 8.9344966253758, - "2049": 5.946782373670513, - "2050": 3.9581659809861858 - }, - "approximatedHistoricalEmission": { - "2021": 170972.7920826, - "2022": 165931.0548950415, - "2023": 161119.87476525642, - "2024": 156308.6946354732 - }, - "totalApproximatedHistoricalEmission": 490691.67301933456, - "trend": { - "2024": 156308.6946354732, - "2025": 151497.5145056881, - "2026": 146686.334375903, - "2027": 141875.15424611978, - "2028": 137063.9741163347, - "2029": 132252.7939865496, - "2030": 127441.61385676451, - "2031": 122630.43372698128, - "2032": 117819.25359719619, - "2033": 113008.0734674111, - "2034": 108196.89333762787, - "2035": 103385.71320784278, - "2036": 98574.53307805769, - "2037": 93763.35294827446, - "2038": 88952.17281848937, - "2039": 84140.99268870428, - "2040": 79329.81255892105, - "2041": 74518.63242913596, - "2042": 69707.45229935087, - "2043": 64896.27216956578, - "2044": 60085.092039782554, - "2045": 55273.91190999746, - "2046": 50462.73178021237, - "2047": 45651.551650429145, - "2048": 40840.371520644054, - "2049": 36029.19139085896, - "2050": 31218.011261075735 - }, - "trendEmission": 2437847.1766551174, - "historicalEmissionChangePercent": -2.5218820510414557, - "neededEmissionChangePercent": 33.440207960004805, - "hitNetZero": "2056-06-19", - "budgetRunsOut": "2026-07-23", - "electricCarChangePercent": 0.08085876171896782, - "electricCarChangeYearly": { - "2015": 0.01701059676519799, - "2016": 0.021672616012238653, - "2017": 0.04974592136935009, - "2018": 0.07088545499141526, - "2019": 0.07749248207263475, - "2020": 0.2435483870967742, - "2021": 0.4542525773195876, - "2022": 0.594327990135635 - }, - "climatePlanLink": "https://kungsbacka.se/download/18.5c06deb5186a19d6e5c23920/1678800987979/Klimatstrategi%202022.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatstrategi", - "bicycleMetrePerCapita": 2.391165078, - "totalConsumptionEmission": 6550.5, - "electricVehiclePerChargePoints": 22.670103092783506 - }, - { - "kommun": "Kungsör", - "län": "Västmanlands län", - "emissions": { - "1990": 52522.4727123086, - "2000": 45488.9044743324, - "2005": 44308.8196679703, - "2010": 45117.2707947385, - "2015": 37791.3099553668, - "2016": 36520.4229961647, - "2017": 36557.1018438579, - "2018": 36078.9479151651, - "2019": 36061.185872988, - "2020": 33039.3772842081, - "2021": 33670.3774418063 - }, - "budget": 73974.74072486217, - "emissionBudget": { - "2024": 31426.787986622658, - "2025": 20549.350057580035, - "2026": 13436.810276911321, - "2027": 8786.062328580121, - "2028": 5745.030974675584, - "2029": 3756.5612063345966, - "2030": 2456.3404721651495, - "2031": 1606.152058702567, - "2032": 1050.2308067254978, - "2033": 686.7249843618599, - "2034": 449.03577492376706, - "2035": 293.61554006769654, - "2036": 191.98934736075526, - "2037": 125.5380062360129, - "2038": 82.08679922277128, - "2039": 53.674921314040866, - "2040": 35.09696084323965, - "2041": 22.949202910329568, - "2042": 15.006026207563357, - "2043": 9.812141337628905, - "2044": 6.415963580090225, - "2045": 4.195270659543064, - "2046": 2.743203836355847, - "2047": 1.793726292886441, - "2048": 1.1728818584864222, - "2049": 0.7669240616152674, - "2050": 0.5014763524806173 - }, - "approximatedHistoricalEmission": { - "2021": 33670.3774418063, - "2022": 32842.559767727274, - "2023": 32134.673877174966, - "2024": 31426.787986622658 - }, - "totalApproximatedHistoricalEmission": 97525.81635911672, - "trend": { - "2024": 31426.787986622658, - "2025": 30718.90209607035, - "2026": 30011.01620551804, - "2027": 29303.130314965732, - "2028": 28595.244424413657, - "2029": 27887.35853386135, - "2030": 27179.47264330904, - "2031": 26471.58675275673, - "2032": 25763.700862204423, - "2033": 25055.814971652115, - "2034": 24347.929081099806, - "2035": 23640.043190547498, - "2036": 22932.15729999519, - "2037": 22224.27140944288, - "2038": 21516.385518890573, - "2039": 20808.499628338264, - "2040": 20100.613737785956, - "2041": 19392.727847233647, - "2042": 18684.841956681572, - "2043": 17976.956066129263, - "2044": 17269.070175576955, - "2045": 16561.184285024647, - "2046": 15853.298394472338, - "2047": 15145.41250392003, - "2048": 14437.526613367721, - "2049": 13729.640722815413, - "2050": 13021.754832263105 - }, - "trendEmission": 577831.0566455161, - "historicalEmissionChangePercent": -1.8482495901534177, - "neededEmissionChangePercent": 34.61199386228331, - "hitNetZero": "2068-05-13", - "budgetRunsOut": "2026-06-03", - "electricCarChangePercent": 0.07679359962426027, - "electricCarChangeYearly": { - "2015": 0.016666666666666666, - "2016": 0.03626943005181347, - "2017": 0.017241379310344827, - "2018": 0.03759398496240601, - "2019": 0.05384615384615385, - "2020": 0.2608695652173913, - "2021": 0.4019607843137255, - "2022": 0.5702479338842975 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plans saknas. ", - "bicycleMetrePerCapita": 0.7854633489, - "totalConsumptionEmission": 5957.7, - "electricVehiclePerChargePoints": 21.25 - }, - { - "kommun": "Kungälv", - "län": "Västra Götalands län", - "emissions": { - "1990": 138693.046343355, - "2000": 132298.295321465, - "2005": 125900.57085809, - "2010": 122626.891289009, - "2015": 105751.143222024, - "2016": 103075.582173927, - "2017": 101486.031249544, - "2018": 102628.353832327, - "2019": 102645.662462831, - "2020": 94757.4662368021, - "2021": 94700.2499214517 - }, - "budget": 208856.91945465954, - "emissionBudget": { - "2024": 90300.08117926866, - "2025": 58602.922484822, - "2026": 38032.108929604285, - "2027": 24682.067861170413, - "2028": 16018.161786164195, - "2029": 10395.46234338746, - "2030": 6746.444365802899, - "2031": 4378.305656585383, - "2032": 2841.431631698661, - "2033": 1844.0315388840115, - "2034": 1196.7390939355735, - "2035": 776.6594164764018, - "2036": 504.0362199732222, - "2037": 327.1092909650101, - "2038": 212.28729999069552, - "2039": 137.77015505854328, - "2040": 89.4100383098139, - "2041": 58.02530270191973, - "2042": 37.657245397688754, - "2043": 24.438789026684955, - "2044": 15.860278753354459, - "2045": 10.292999455064596, - "2046": 6.679948027997445, - "2047": 4.335150881096301, - "2048": 2.8134250570665107, - "2049": 1.825855839584526, - "2050": 1.1849434334749755 - }, - "approximatedHistoricalEmission": { - "2021": 94700.2499214517, - "2022": 93773.6012194599, - "2023": 92036.84119936451, - "2024": 90300.08117926866 - }, - "totalApproximatedHistoricalEmission": 278310.6079691846, - "trend": { - "2024": 90300.08117926866, - "2025": 88563.32115917327, - "2026": 86826.56113907741, - "2027": 85089.80111898202, - "2028": 83353.04109888617, - "2029": 81616.28107879078, - "2030": 79879.52105869493, - "2031": 78142.76103859907, - "2032": 76406.00101850368, - "2033": 74669.24099840783, - "2034": 72932.48097831244, - "2035": 71195.72095821658, - "2036": 69458.96093812119, - "2037": 67722.20091802534, - "2038": 65985.44089792995, - "2039": 64248.68087783409, - "2040": 62511.92085773824, - "2041": 60775.16083764285, - "2042": 59038.40081754699, - "2043": 57301.640797451604, - "2044": 55564.88077735575, - "2045": 53828.12075726036, - "2046": 52091.360737164505, - "2047": 50354.600717069115, - "2048": 48617.84069697326, - "2049": 46881.080676877405, - "2050": 45144.320656782016 - }, - "trendEmission": 1760777.2238686602, - "historicalEmissionChangePercent": -1.7791627641884096, - "neededEmissionChangePercent": 35.10202679831453, - "hitNetZero": "2075-12-16", - "budgetRunsOut": "2026-05-14", - "electricCarChangePercent": 0.06459040640158112, - "electricCarChangeYearly": { - "2015": 0.056195965417867436, - "2016": 0.047619047619047616, - "2017": 0.06621678616617462, - "2018": 0.09133709981167608, - "2019": 0.06986143187066975, - "2020": 0.24234354194407456, - "2021": 0.37776332899869963, - "2022": 0.5230485556238476 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.359773817, - "totalConsumptionEmission": 6141.1, - "electricVehiclePerChargePoints": 15.886363636363637 - }, - { - "kommun": "Kävlinge", - "län": "Skåne län", - "emissions": { - "1990": 117359.887003556, - "2000": 110092.910897172, - "2005": 102207.668911966, - "2010": 93300.9901463465, - "2015": 76843.8983701967, - "2016": 73916.149228269, - "2017": 72863.595053532, - "2018": 69984.8944386851, - "2019": 70140.4171776683, - "2020": 64690.2711788349, - "2021": 64984.7393355088 - }, - "budget": 146168.0941600283, - "emissionBudget": { - "2024": 58327.90688064229, - "2025": 39135.65245352254, - "2026": 26258.430567327767, - "2027": 17618.338589807052, - "2028": 11821.188393921337, - "2029": 7931.536468792027, - "2030": 5321.73827701849, - "2031": 3570.669869642167, - "2032": 2395.7742102855614, - "2033": 1607.4670233360466, - "2034": 1078.544973069419, - "2035": 723.6597964660892, - "2036": 485.5462814230146, - "2037": 325.78180044684143, - "2038": 218.58633370918616, - "2039": 146.6625367619948, - "2040": 98.40459522085631, - "2041": 66.02547981489631, - "2042": 44.30041071764234, - "2043": 29.723773235026528, - "2044": 19.94344253281225, - "2045": 13.381238543122985, - "2046": 8.978266648466692, - "2047": 6.024051641497478, - "2048": 4.041893563678678, - "2049": 2.7119461373086837, - "2050": 1.8196055229543817 - }, - "approximatedHistoricalEmission": { - "2021": 64984.7393355088, - "2022": 62381.65052912757, - "2023": 60354.77870488493, - "2024": 58327.90688064229 - }, - "totalApproximatedHistoricalEmission": 184392.75234208803, - "trend": { - "2024": 58327.90688064229, - "2025": 56301.03505639965, - "2026": 54274.16323215701, - "2027": 52247.29140791437, - "2028": 50220.419583671726, - "2029": 48193.547759429086, - "2030": 46166.675935186446, - "2031": 44139.804110943805, - "2032": 42112.932286701165, - "2033": 40086.060462458525, - "2034": 38059.188638215885, - "2035": 36032.316813973244, - "2036": 34005.444989730604, - "2037": 31978.573165487964, - "2038": 29951.701341245323, - "2039": 27924.829517002683, - "2040": 25897.957692759577, - "2041": 23871.085868516937, - "2042": 21844.214044274297, - "2043": 19817.342220031656, - "2044": 17790.470395789016, - "2045": 15763.598571546376, - "2046": 13736.726747303735, - "2047": 11709.854923061095, - "2048": 9682.983098818455, - "2049": 7656.111274575815, - "2050": 5629.239450333174 - }, - "trendEmission": 831442.9023026822, - "historicalEmissionChangePercent": -2.7129505121992583, - "neededEmissionChangePercent": 32.9040684871365, - "hitNetZero": "2052-10-03", - "budgetRunsOut": "2026-08-17", - "electricCarChangePercent": 0.09283559648488335, - "electricCarChangeYearly": { - "2015": 0.031932773109243695, - "2016": 0.02346041055718475, - "2017": 0.05398110661268556, - "2018": 0.10201149425287356, - "2019": 0.16779431664411368, - "2020": 0.3195084485407066, - "2021": 0.5037688442211056, - "2022": 0.6796875 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Ska tas fram 2023.", - "bicycleMetrePerCapita": 4.384705605, - "totalConsumptionEmission": 6198.9, - "electricVehiclePerChargePoints": 32.59649122807018 - }, - { - "kommun": "Köping", - "län": "Västmanlands län", - "emissions": { - "1990": 275184.911119743, - "2000": 276242.310290388, - "2005": 337929.071582352, - "2010": 321341.079993235, - "2015": 305690.275769299, - "2016": 321715.876364122, - "2017": 301347.992908397, - "2018": 275923.764467451, - "2019": 267807.959495348, - "2020": 255863.166979467, - "2021": 270481.333456314 - }, - "budget": 592118.0293278998, - "emissionBudget": { - "2024": 227503.1358226277, - "2025": 154925.5668745506, - "2026": 105501.54038366265, - "2027": 71844.66223278997, - "2028": 48924.930124934755, - "2029": 33317.00245139833, - "2030": 22688.28283478233, - "2031": 15450.314857766387, - "2032": 10521.388107792725, - "2033": 7164.877139002575, - "2034": 4879.153196428505, - "2035": 3322.6160689661947, - "2036": 2262.642121963578, - "2037": 1540.8188204172357, - "2038": 1049.2700610079862, - "2039": 714.5341466101596, - "2040": 486.5849752555011, - "2041": 331.3556661604479, - "2042": 225.6472827566882, - "2043": 153.6617641263516, - "2044": 104.64091331373515, - "2045": 71.25859058945203, - "2046": 48.52582581700986, - "2047": 33.04521955520323, - "2048": 22.503203542984522, - "2049": 15.324279169973174, - "2050": 10.435560058402626 - }, - "approximatedHistoricalEmission": { - "2021": 270481.333456314, - "2022": 246851.15575986728, - "2023": 237177.1457912475, - "2024": 227503.1358226277 - }, - "totalApproximatedHistoricalEmission": 733020.5361905856, - "trend": { - "2024": 227503.1358226277, - "2025": 217829.12585401163, - "2026": 208155.11588539183, - "2027": 198481.10591677204, - "2028": 188807.09594815224, - "2029": 179133.08597953618, - "2030": 169459.07601091638, - "2031": 159785.0660422966, - "2032": 150111.05607368052, - "2033": 140437.04610506073, - "2034": 130763.03613644093, - "2035": 121089.02616782486, - "2036": 111415.01619920507, - "2037": 101741.00623058528, - "2038": 92066.99626196921, - "2039": 82392.98629334942, - "2040": 72718.97632472962, - "2041": 63044.96635611355, - "2042": 53370.95638749376, - "2043": 43696.946418873966, - "2044": 34022.9364502579, - "2045": 24348.926481638104, - "2046": 14674.91651301831, - "2047": 5000.906544402242, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 2676296.940493034, - "historicalEmissionChangePercent": -1.868945577905195, - "neededEmissionChangePercent": 31.90178838003449, - "hitNetZero": "2047-07-02", - "budgetRunsOut": "2026-10-07", - "electricCarChangePercent": 0.0670495271242888, - "electricCarChangeYearly": { - "2015": 0.00851063829787234, - "2016": 0.00816326530612245, - "2017": 0.020134228187919462, - "2018": 0.036231884057971016, - "2019": 0.061377245508982034, - "2020": 0.2505694760820046, - "2021": 0.34968017057569295, - "2022": 0.4668141592920354 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.951098729, - "totalConsumptionEmission": 6160.5, - "electricVehiclePerChargePoints": 11.304347826086957 - }, - { - "kommun": "Laholm", - "län": "Hallands län", - "emissions": { - "1990": 173435.285044534, - "2000": 154023.186086601, - "2005": 128247.09489487, - "2010": 120430.460488648, - "2015": 102061.284515313, - "2016": 99429.7180782214, - "2017": 96321.341805945, - "2018": 88003.2497259283, - "2019": 87769.6341299853, - "2020": 78858.8474330307, - "2021": 77361.1891192005 - }, - "budget": 186568.63431719353, - "emissionBudget": { - "2024": 63444.95172508806, - "2025": 45155.42223173755, - "2026": 32138.288413579336, - "2027": 22873.655722976582, - "2028": 16279.775680654819, - "2029": 11586.739759583616, - "2030": 8246.584037140477, - "2031": 5869.308338039694, - "2032": 4177.339394327866, - "2033": 2973.1210920215062, - "2034": 2116.047606719642, - "2035": 1506.0461162916984, - "2036": 1071.8921905133775, - "2037": 762.8935499748218, - "2038": 542.9711810050944, - "2039": 386.4467112243862, - "2040": 275.0441751617439, - "2041": 195.75609286652485, - "2042": 139.32470255671686, - "2043": 99.16101439434213, - "2044": 70.57547294394615, - "2045": 50.23039963522069, - "2046": 35.75028182266553, - "2047": 25.444405373670143, - "2048": 18.109445067624442, - "2049": 12.888963048697224, - "2050": 9.17341022048635 - }, - "approximatedHistoricalEmission": { - "2021": 77361.1891192005, - "2022": 72287.36137899384, - "2023": 67866.15655204095, - "2024": 63444.95172508806 - }, - "totalApproximatedHistoricalEmission": 210556.58835317908, - "trend": { - "2024": 63444.95172508806, - "2025": 59023.74689813517, - "2026": 54602.54207118228, - "2027": 50181.33724422939, - "2028": 45760.1324172765, - "2029": 41338.92759032361, - "2030": 36917.72276337072, - "2031": 32496.517936417833, - "2032": 28075.313109464943, - "2033": 23654.108282512054, - "2034": 19232.903455559164, - "2035": 14811.698628606275, - "2036": 10390.493801653385, - "2037": 5969.288974700496, - "2038": 1548.084147747606, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 455725.29318372346, - "historicalEmissionChangePercent": -4.442915307396002, - "neededEmissionChangePercent": 28.8273991800017, - "hitNetZero": "2038-05-04", - "budgetRunsOut": "2027-04-30", - "electricCarChangePercent": 0.060605190709050294, - "electricCarChangeYearly": { - "2015": 0.019966722129783693, - "2016": 0.028481012658227847, - "2017": 0.037162162162162164, - "2018": 0.057245080500894455, - "2019": 0.08333333333333333, - "2020": 0.2023121387283237, - "2021": 0.34206219312602293, - "2022": 0.4487369985141159 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.734875322, - "totalConsumptionEmission": 6146.9, - "electricVehiclePerChargePoints": 15.426470588235293 - }, - { - "kommun": "Landskrona", - "län": "Skåne län", - "emissions": { - "1990": 221517.150665182, - "2000": 238974.903206676, - "2005": 221662.979018637, - "2010": 228150.291232666, - "2015": 214212.190840295, - "2016": 214934.91761128, - "2017": 194373.431350113, - "2018": 206898.925765666, - "2019": 213865.812473545, - "2020": 198518.789973287, - "2021": 200544.976214399 - }, - "budget": 427566.54329812113, - "emissionBudget": { - "2024": 194548.10959760332, - "2025": 123429.11344634641, - "2026": 78308.37358256569, - "2027": 49681.96888015637, - "2028": 31520.23109260896, - "2029": 19997.69716309089, - "2030": 12687.34009759421, - "2031": 8049.356755392635, - "2032": 5106.834346457778, - "2033": 3239.98026608633, - "2034": 2055.573259765151, - "2035": 1304.1380129655836, - "2036": 827.3973932975437, - "2037": 524.9340481064842, - "2038": 333.03918660324643, - "2039": 211.29340002508792, - "2040": 134.05299643416384, - "2041": 85.048590494754, - "2042": 53.958232471862395, - "2043": 34.23326400297176, - "2044": 21.718953913256538, - "2045": 13.779374325662099, - "2046": 8.742187011632483, - "2047": 5.546393612663791, - "2048": 3.5188542713241753, - "2049": 2.2325020991197695, - "2050": 1.4163887556214796 - }, - "approximatedHistoricalEmission": { - "2021": 200544.976214399, - "2022": 198429.64659976307, - "2023": 196488.87809868297, - "2024": 194548.10959760332 - }, - "totalApproximatedHistoricalEmission": 592465.0676044472, - "trend": { - "2024": 194548.10959760332, - "2025": 192607.34109652322, - "2026": 190666.5725954431, - "2027": 188725.804094363, - "2028": 186785.03559328336, - "2029": 184844.26709220326, - "2030": 182903.49859112315, - "2031": 180962.7300900435, - "2032": 179021.9615889634, - "2033": 177081.1930878833, - "2034": 175140.42458680365, - "2035": 173199.65608572355, - "2036": 171258.88758464344, - "2037": 169318.1190835638, - "2038": 167377.3505824837, - "2039": 165436.58208140358, - "2040": 163495.81358032394, - "2041": 161555.04507924384, - "2042": 159614.27657816373, - "2043": 157673.50807708362, - "2044": 155732.73957600398, - "2045": 153791.97107492387, - "2046": 151851.20257384377, - "2047": 149910.43407276412, - "2048": 147969.66557168402, - "2049": 146028.8970706039, - "2050": 144088.12856952427 - }, - "trendEmission": 4402271.096172654, - "historicalEmissionChangePercent": -0.9288361236154857, - "neededEmissionChangePercent": 36.555994452147075, - "hitNetZero": "2124-03-05", - "budgetRunsOut": "2026-03-23", - "electricCarChangePercent": 0.073765669003437, - "electricCarChangeYearly": { - "2015": 0.017804154302670624, - "2016": 0.025495750708215296, - "2017": 0.027285129604365622, - "2018": 0.05547445255474453, - "2019": 0.09612817089452604, - "2020": 0.20211161387631976, - "2021": 0.4315937940761636, - "2022": 0.5321888412017167 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.130120968, - "totalConsumptionEmission": 6015.8, - "electricVehiclePerChargePoints": 20.285714285714285 - }, - { - "kommun": "Laxå", - "län": "Örebro län", - "emissions": { - "1990": 81219.2126806876, - "2000": 61071.5955164122, - "2005": 45663.7779513741, - "2010": 45148.6071348353, - "2015": 37850.1362316764, - "2016": 36409.0688466917, - "2017": 34674.5022250052, - "2018": 35063.5425499929, - "2019": 34303.0187225259, - "2020": 32173.2541113684, - "2021": 31187.2362827871 - }, - "budget": 71587.71177130443, - "emissionBudget": { - "2024": 28344.719962908188, - "2025": 19077.25595474053, - "2026": 12839.84090295956, - "2027": 8641.783430721687, - "2028": 5816.304222763556, - "2029": 3914.631173407227, - "2030": 2634.720715576745, - "2031": 1773.2841081544996, - "2032": 1193.4989957920282, - "2033": 803.2778540146221, - "2034": 540.6416871948294, - "2035": 363.8758774091025, - "2036": 244.90463332053346, - "2037": 164.8316998887835, - "2038": 110.9390578685635, - "2039": 74.66691521757451, - "2040": 50.25415156052334, - "2041": 33.82327690529289, - "2042": 22.764568201580953, - "2043": 15.321565880665316, - "2044": 10.312094609344033, - "2045": 6.940497861661418, - "2046": 4.671263442839083, - "2047": 3.143967851779065, - "2048": 2.1160300578150832, - "2049": 1.4241822488875617, - "2050": 0.9585379331240492 - }, - "approximatedHistoricalEmission": { - "2021": 31187.2362827871, - "2022": 30404.135164321866, - "2023": 29374.42756361491, - "2024": 28344.719962908188 - }, - "totalApproximatedHistoricalEmission": 89544.54085078443, - "trend": { - "2024": 28344.719962908188, - "2025": 27315.012362201232, - "2026": 26285.304761494277, - "2027": 25255.59716078732, - "2028": 24225.8895600806, - "2029": 23196.181959373644, - "2030": 22166.47435866669, - "2031": 21136.766757959733, - "2032": 20107.059157252777, - "2033": 19077.351556546055, - "2034": 18047.6439558391, - "2035": 17017.936355132144, - "2036": 15988.228754425189, - "2037": 14958.521153718233, - "2038": 13928.81355301151, - "2039": 12899.105952304322, - "2040": 11869.3983515976, - "2041": 10839.690750890877, - "2042": 9809.983150183689, - "2043": 8780.275549476966, - "2044": 7750.567948770244, - "2045": 6720.860348063055, - "2046": 5691.152747356333, - "2047": 4661.445146649145, - "2048": 3631.737545942422, - "2049": 2602.0299452356994, - "2050": 1572.3223445285112 - }, - "trendEmission": 388921.5499966772, - "historicalEmissionChangePercent": -3.148634275252381, - "neededEmissionChangePercent": 32.69555677493034, - "hitNetZero": "2051-07-05", - "budgetRunsOut": "2026-08-27", - "electricCarChangePercent": 0.07003482854357825, - "electricCarChangeYearly": { - "2015": 0.008547008547008548, - "2016": 0.031007751937984496, - "2017": 0.0, - "2018": 0.208, - "2019": 0.06930693069306931, - "2020": 0.16216216216216217, - "2021": 0.45, - "2022": 0.5 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.420762914, - "totalConsumptionEmission": 6576.6, - "electricVehiclePerChargePoints": 14.333333333333334 - }, - { - "kommun": "Lekeberg", - "län": "Örebro län", - "emissions": { - "1990": 37123.6735479364, - "2000": 34228.6055604051, - "2005": 30891.7177039356, - "2010": 33119.0407198041, - "2015": 28796.8131194765, - "2016": 27488.7428487618, - "2017": 27719.6227335774, - "2018": 27441.7911451874, - "2019": 27338.9517558107, - "2020": 25034.8424168121, - "2021": 25252.8960235231 - }, - "budget": 56009.71682950055, - "emissionBudget": { - "2024": 23599.04647840862, - "2025": 15484.938966539225, - "2026": 10160.721324771695, - "2027": 6667.1401200067985, - "2028": 4374.76395218457, - "2029": 2870.5800827407907, - "2030": 1883.5827718917976, - "2031": 1235.9467272482834, - "2032": 810.9886835827849, - "2033": 532.1448169239869, - "2034": 349.1763965534508, - "2035": 229.11837536034636, - "2036": 150.34014453989224, - "2037": 98.64839092337357, - "2038": 64.72991669359823, - "2039": 42.47369952962305, - "2040": 27.869882179396008, - "2041": 18.287324657266762, - "2042": 11.999557119316261, - "2043": 7.873725312932373, - "2044": 5.166486536716824, - "2045": 3.3900831021161526, - "2046": 2.224464025518735, - "2047": 1.4596220953221566, - "2048": 0.9577573009551462, - "2049": 0.6284496860335806, - "2050": 0.4123685692417419 - }, - "approximatedHistoricalEmission": { - "2021": 25252.8960235231, - "2022": 24736.205273374682, - "2023": 24167.625875891652, - "2024": 23599.04647840862 - }, - "totalApproximatedHistoricalEmission": 73329.80240023219, - "trend": { - "2024": 23599.04647840862, - "2025": 23030.46708092559, - "2026": 22461.887683442328, - "2027": 21893.308285959298, - "2028": 21324.728888476267, - "2029": 20756.149490993237, - "2030": 20187.570093510207, - "2031": 19618.990696027176, - "2032": 19050.411298543913, - "2033": 18481.831901060883, - "2034": 17913.252503577853, - "2035": 17344.673106094822, - "2036": 16776.093708611792, - "2037": 16207.514311128762, - "2038": 15638.934913645731, - "2039": 15070.355516162468, - "2040": 14501.776118679438, - "2041": 13933.196721196407, - "2042": 13364.617323713377, - "2043": 12796.037926230347, - "2044": 12227.458528747316, - "2045": 11658.879131264053, - "2046": 11090.299733781023, - "2047": 10521.720336297993, - "2048": 9953.140938814962, - "2049": 9384.561541331932, - "2050": 8815.982143848902 - }, - "trendEmission": 421395.37208934594, - "historicalEmissionChangePercent": -2.10608140685666, - "neededEmissionChangePercent": 34.38320069115167, - "hitNetZero": "2065-06-23", - "budgetRunsOut": "2026-06-12", - "electricCarChangePercent": 0.08794698058806111, - "electricCarChangeYearly": { - "2015": 0.03571428571428571, - "2016": 0.013157894736842105, - "2017": 0.007633587786259542, - "2018": 0.06521739130434782, - "2019": 0.07246376811594203, - "2020": 0.19148936170212766, - "2021": 0.5804195804195804, - "2022": 0.6060606060606061 - }, - "climatePlanLink": "https://lekeberg.se/download/18.4743cfc18120db3f63d6f13/1655444950983/H%C3%A5llbarhetsprogram%20f%C3%B6r%20Lekebergs%20kommun%202022-2030%20-%20%20antagen.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Hållbarhetsprogram 2022–2030", - "bicycleMetrePerCapita": 1.332483676, - "totalConsumptionEmission": 6034.4, - "electricVehiclePerChargePoints": 21.266666666666666 - }, - { - "kommun": "Leksand", - "län": "Dalarnas län", - "emissions": { - "1990": 74909.9515759805, - "2000": 69814.5863237373, - "2005": 60724.8214713033, - "2010": 53672.7805932176, - "2015": 44372.3122621856, - "2016": 42272.5340665295, - "2017": 38474.9006088442, - "2018": 36952.5495949117, - "2019": 36350.9050526229, - "2020": 33460.4154038264, - "2021": 35064.8140512671 - }, - "budget": 79078.73591291448, - "emissionBudget": { - "2024": 27920.334252658766, - "2025": 19614.815760890335, - "2026": 13779.956710118333, - "2027": 9680.805022464105, - "2028": 6801.036306170041, - "2029": 4777.918234125301, - "2030": 3356.6212006950373, - "2031": 2358.1202801847535, - "2032": 1656.6454548601403, - "2033": 1163.8397694004557, - "2034": 817.6299912961517, - "2035": 574.4079384839442, - "2036": 403.5376433175215, - "2037": 283.49648161906646, - "2038": 199.16420790303, - "2039": 139.91842679353255, - "2040": 98.29660842428538, - "2041": 69.05611683281097, - "2042": 48.51385361581475, - "2043": 34.082339126523614, - "2044": 23.943796539731046, - "2045": 16.82118679142762, - "2046": 11.817354219602693, - "2047": 8.302021877714944, - "2048": 5.832402581597039, - "2049": 4.09742594934991, - "2050": 2.8785563368653544 - }, - "approximatedHistoricalEmission": { - "2021": 35064.8140512671, - "2022": 31325.386217971798, - "2023": 29622.860235315282, - "2024": 27920.334252658766 - }, - "totalApproximatedHistoricalEmission": 92440.82060525002, - "trend": { - "2024": 27920.334252658766, - "2025": 26217.80827000225, - "2026": 24515.282287345733, - "2027": 22812.756304689217, - "2028": 21110.2303220327, - "2029": 19407.704339376185, - "2030": 17705.17835671967, - "2031": 16002.652374063153, - "2032": 14300.126391406637, - "2033": 12597.60040875012, - "2034": 10895.074426093604, - "2035": 9192.548443437088, - "2036": 7490.022460780572, - "2037": 5787.496478124056, - "2038": 4084.97049546754, - "2039": 2382.4445128110237, - "2040": 679.9185301545076, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 229141.98152758344, - "historicalEmissionChangePercent": -3.742913095904383, - "neededEmissionChangePercent": 29.7472029403714, - "hitNetZero": "2040-05-21", - "budgetRunsOut": "2027-02-17", - "electricCarChangePercent": 0.07429398622338473, - "electricCarChangeYearly": { - "2015": 0.01384083044982699, - "2016": 0.036585365853658534, - "2017": 0.03787878787878788, - "2018": 0.13392857142857142, - "2019": 0.25120772946859904, - "2020": 0.2345679012345679, - "2021": 0.3869565217391304, - "2022": 0.5540540540540541 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Pågår ett arbete att ta fram ny plan.", - "bicycleMetrePerCapita": 2.762561296, - "totalConsumptionEmission": 6495.5, - "electricVehiclePerChargePoints": 7.28169014084507 - }, - { - "kommun": "Lerum", - "län": "Västra Götalands län", - "emissions": { - "1990": 117870.32492692, - "2000": 110953.876805395, - "2005": 100694.334106491, - "2010": 95120.676943553, - "2015": 83054.7219217922, - "2016": 79856.452468174, - "2017": 68752.1320046489, - "2018": 69355.6290081817, - "2019": 67068.7579998947, - "2020": 60015.9388897768, - "2021": 61848.1688683312 - }, - "budget": 145139.52729776062, - "emissionBudget": { - "2024": 47496.53009684384, - "2025": 34240.504226487516, - "2026": 24684.16381772732, - "2027": 17794.946574094396, - "2028": 12828.472777654286, - "2029": 9248.115082660326, - "2030": 6667.015946832631, - "2031": 4806.287685439819, - "2032": 3464.878665272282, - "2033": 2497.8496816634956, - "2034": 1800.7132817437698, - "2035": 1298.1438982705163, - "2036": 935.8389243317432, - "2037": 674.651318286973, - "2038": 486.3597670842377, - "2039": 350.6193742255698, - "2040": 252.76339430649892, - "2041": 182.21849161204554, - "2042": 131.3622915077122, - "2043": 94.69978308730788, - "2044": 68.26958340823906, - "2045": 49.215910182577424, - "2046": 35.480014585927684, - "2047": 25.577733508284705, - "2048": 18.439125774212943, - "2049": 13.292865030715742, - "2050": 9.58289795777304 - }, - "approximatedHistoricalEmission": { - "2021": 61848.1688683312, - "2022": 54995.39154841006, - "2023": 51245.96082262695, - "2024": 47496.53009684384 - }, - "totalApproximatedHistoricalEmission": 160913.70185362455, - "trend": { - "2024": 47496.53009684384, - "2025": 43747.09937106073, - "2026": 39997.66864527762, - "2027": 36248.23791949451, - "2028": 32498.80719371047, - "2029": 28749.37646792736, - "2030": 24999.94574214425, - "2031": 21250.51501636114, - "2032": 17501.08429057803, - "2033": 13751.65356479492, - "2034": 10002.22283901181, - "2035": 6252.792113228701, - "2036": 2503.3613874455914, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 301251.02959945705, - "historicalEmissionChangePercent": -4.606428745614561, - "neededEmissionChangePercent": 27.90946168768062, - "hitNetZero": "2036-08-28", - "budgetRunsOut": "2027-07-22", - "electricCarChangePercent": 0.08931430314467403, - "electricCarChangeYearly": { - "2015": 0.015909090909090907, - "2016": 0.020754716981132074, - "2017": 0.07520143240823635, - "2018": 0.09284116331096197, - "2019": 0.1062618595825427, - "2020": 0.31561461794019935, - "2021": 0.4953183520599251, - "2022": 0.6437552388935457 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete med ny energiplan pågår, beslut hösten 2023.", - "bicycleMetrePerCapita": 2.62316211, - "totalConsumptionEmission": 6157.9, - "electricVehiclePerChargePoints": 28.735632183908045 - }, - { - "kommun": "Lessebo", - "län": "Kronobergs län", - "emissions": { - "1990": 57532.4711498586, - "2000": 48173.2935527191, - "2005": 41056.0196098987, - "2010": 27521.1483491793, - "2015": 21801.4316016642, - "2016": 20577.9954929612, - "2017": 20350.2576756799, - "2018": 19317.0014815906, - "2019": 18631.6304750159, - "2020": 17007.1305282726, - "2021": 18018.7501951159 - }, - "budget": 40199.96053406573, - "emissionBudget": { - "2024": 15055.94220368145, - "2025": 10352.690637757763, - "2026": 7118.664643579078, - "2027": 4894.900087415186, - "2028": 3365.806378783242, - "2029": 2314.378716040392, - "2030": 1591.401357792044, - "2031": 1094.271332530765, - "2032": 752.4373052314123, - "2033": 517.3871246307114, - "2034": 355.7631112552391, - "2035": 244.6280266837834, - "2036": 168.20988333517283, - "2037": 115.6636270798488, - "2038": 79.53203678650301, - "2039": 54.687415872259805, - "2040": 37.60388361250967, - "2041": 25.856991781183265, - "2042": 17.779653582103972, - "2043": 12.225555245357963, - "2044": 8.406474308798796, - "2045": 5.780417239644567, - "2046": 3.974701193032554, - "2047": 2.7330638808463994, - "2048": 1.8792955278955519, - "2049": 1.2922316620255765, - "2050": 0.8885577832515291 - }, - "approximatedHistoricalEmission": { - "2021": 18018.7501951159, - "2022": 16499.39944294491, - "2023": 15777.670823313296, - "2024": 15055.94220368145 - }, - "totalApproximatedHistoricalEmission": 48814.416465656876, - "trend": { - "2024": 15055.94220368145, - "2025": 14334.213584049838, - "2026": 13612.484964418225, - "2027": 12890.756344786612, - "2028": 12169.027725155, - "2029": 11447.299105523387, - "2030": 10725.570485891774, - "2031": 10003.841866260162, - "2032": 9282.113246628549, - "2033": 8560.384626996936, - "2034": 7838.656007365091, - "2035": 7116.927387733478, - "2036": 6395.198768101865, - "2037": 5673.470148470253, - "2038": 4951.74152883864, - "2039": 4230.012909207027, - "2040": 3508.2842895754147, - "2041": 2786.555669943802, - "2042": 2064.8270503121894, - "2043": 1343.0984306805767, - "2044": 621.3698110487312, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 157083.80505282828, - "historicalEmissionChangePercent": -3.0191075067151663, - "neededEmissionChangePercent": 31.23850704457181, - "hitNetZero": "2044-11-05", - "budgetRunsOut": "2026-11-13", - "electricCarChangePercent": 0.07914745524942891, - "electricCarChangeYearly": { - "2015": 0.013986013986013986, - "2016": 0.019230769230769232, - "2017": 0.01875, - "2018": 0.017543859649122806, - "2019": 0.07017543859649122, - "2020": 0.3111111111111111, - "2021": 0.45454545454545453, - "2022": 0.52 - }, - "climatePlanLink": "https://www.lessebo.se/download/18.751dad0a1754f2bbde74234/1603372637882/Energi-%20%20milj%C3%B6-%20och%20klimatstrategiskt%20program%202019-2030%20%20antaget%202020-10-19%20.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Energi, miljö– och klimatstrategiskt program för Lessebo kommun 2019 –2030", - "bicycleMetrePerCapita": 2.771482457, - "totalConsumptionEmission": 5777.4, - "electricVehiclePerChargePoints": 18.384615384615383 - }, - { - "kommun": "Lidingö", - "län": "Stockholms län", - "emissions": { - "1990": 99863.2651029639, - "2000": 67504.3675532242, - "2005": 48697.2737148263, - "2010": 28026.3450944805, - "2015": 24247.3615496483, - "2016": 23158.9106831291, - "2017": 29753.3454069088, - "2018": 25737.6100819047, - "2019": 24818.3641855272, - "2020": 26071.9219868306, - "2021": 28583.0430247821 - }, - "budget": 54024.04147000349, - "emissionBudget": { - "2024": 29031.097947980743, - "2025": 16962.311611741738, - "2026": 9910.752108975641, - "2027": 5790.661651185132, - "2028": 3383.372118462954, - "2029": 1976.8391906734325, - "2030": 1155.0290801467402, - "2031": 674.8612544099506, - "2032": 394.3084382307597, - "2033": 230.386829061509, - "2034": 134.61058871368678, - "2035": 78.6503754040889, - "2036": 45.95390013753915, - "2037": 26.849979125988153, - "2038": 15.687925875895095, - "2039": 9.166153058546236, - "2040": 5.355606761362437, - "2041": 3.1291779222045997, - "2042": 1.8283184156563672, - "2043": 1.0682512506905142, - "2044": 0.624158639343011, - "2045": 0.36468387639583805, - "2046": 0.21307776792625133, - "2047": 0.1244972375338927, - "2048": 0.07274133901634969, - "2049": 0.042501363939509276, - "2050": 0.024832728695200566 - }, - "approximatedHistoricalEmission": { - "2021": 28583.0430247821, - "2022": 28038.377532879123, - "2023": 28534.737740429933, - "2024": 29031.097947980743 - }, - "totalApproximatedHistoricalEmission": 85380.18575969047, - "trend": { - "2024": 29031.097947980743, - "2025": 29527.458155531553, - "2026": 30023.818363082362, - "2027": 30520.178570633172, - "2028": 31016.53877818398, - "2029": 31512.89898573479, - "2030": 32009.2591932856, - "2031": 32505.61940083641, - "2032": 33001.97960838722, - "2033": 33498.33981593803, - "2034": 33994.70002348884, - "2035": 34491.06023103965, - "2036": 34987.42043859046, - "2037": 35483.78064614127, - "2038": 35980.14085369208, - "2039": 36476.50106124277, - "2040": 36972.86126879358, - "2041": 37469.22147634439, - "2042": 37965.5816838952, - "2043": 38461.94189144601, - "2044": 38958.30209899682, - "2045": 39454.66230654763, - "2046": 39951.02251409844, - "2047": 40447.38272164925, - "2048": 40943.74292920006, - "2049": 41440.10313675087, - "2050": 41936.46334430168 - }, - "trendEmission": 922578.2967996716, - "historicalEmissionChangePercent": 3.599976466170274, - "neededEmissionChangePercent": 41.571925243283644, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-10-31", - "electricCarChangePercent": 0.08638179745773583, - "electricCarChangeYearly": { - "2015": 0.031556039173014146, - "2016": 0.03859964093357271, - "2017": 0.0637065637065637, - "2018": 0.10451045104510451, - "2019": 0.1659919028340081, - "2020": 0.3689052437902484, - "2021": 0.4925, - "2022": 0.6043405676126878 - }, - "climatePlanLink": "https://lidingo.se/download/18.3e1246071764a836a72c45/1607961656265/Milj%C3%B6program%202021-2030%20f%C3%B6r%20Liding%C3%B6%20stads%20verksamheter%20med%20underskrift%2020-12-11.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Miljöprogram 2021–2030. ", - "bicycleMetrePerCapita": 2.616293985, - "totalConsumptionEmission": 7483.1, - "electricVehiclePerChargePoints": 163.44444444444446 - }, - { - "kommun": "Lidköping", - "län": "Västra Götalands län", - "emissions": { - "1990": 156796.767542204, - "2000": 153097.367075664, - "2005": 150784.889784057, - "2010": 159975.724778882, - "2015": 138730.271199527, - "2016": 138222.980463482, - "2017": 128868.366948881, - "2018": 126694.897327124, - "2019": 128559.75208274, - "2020": 124068.619171606, - "2021": 116793.301802271 - }, - "budget": 267183.18433053634, - "emissionBudget": { - "2024": 108613.68864759244, - "2025": 72333.22066319495, - "2026": 48171.59675413002, - "2027": 32080.73292695569, - "2028": 21364.735538736782, - "2029": 14228.226196684893, - "2030": 9475.540679498616, - "2031": 6310.4051009361065, - "2032": 4202.5266826280495, - "2033": 2798.7475028474464, - "2034": 1863.87575290693, - "2035": 1241.2812583985835, - "2036": 826.6533646615388, - "2037": 550.5245331649188, - "2038": 366.63161921628665, - "2039": 244.16485753394932, - "2040": 162.60593612195862, - "2041": 108.29031961907992, - "2042": 72.11786729856584, - "2043": 48.02817834491989, - "2044": 31.985220882666173, - "2045": 21.30112759151011, - "2046": 14.185865351196915, - "2047": 9.447329719882811, - "2048": 6.291617509865232, - "2049": 4.190014751695764, - "2050": 2.790414959571211 - }, - "approximatedHistoricalEmission": { - "2021": 116793.301802271, - "2022": 115358.56333628204, - "2023": 111986.12599193677, - "2024": 108613.68864759244 - }, - "totalApproximatedHistoricalEmission": 340048.18455315055, - "trend": { - "2024": 108613.68864759244, - "2025": 105241.25130324718, - "2026": 101868.81395890191, - "2027": 98496.37661455758, - "2028": 95123.93927021232, - "2029": 91751.50192586705, - "2030": 88379.06458152179, - "2031": 85006.62723717745, - "2032": 81634.18989283219, - "2033": 78261.75254848693, - "2034": 74889.31520414166, - "2035": 71516.87785979733, - "2036": 68144.44051545206, - "2037": 64772.0031711068, - "2038": 61399.565826761536, - "2039": 58027.1284824172, - "2040": 54654.69113807194, - "2041": 51282.253793726675, - "2042": 47909.81644938141, - "2043": 44537.37910503708, - "2044": 41164.941760691814, - "2045": 37792.50441634655, - "2046": 34420.067072001286, - "2047": 31047.629727656953, - "2048": 27675.19238331169, - "2049": 24302.755038966425, - "2050": 20930.317694622092 - }, - "trendEmission": 1684072.08244878, - "historicalEmissionChangePercent": -2.784243261187225, - "neededEmissionChangePercent": 33.403218725139666, - "hitNetZero": "2056-03-08", - "budgetRunsOut": "2026-07-25", - "electricCarChangePercent": 0.06323238491530066, - "electricCarChangeYearly": { - "2015": 0.02184769038701623, - "2016": 0.012068019747668678, - "2017": 0.024844720496894408, - "2018": 0.10278250993753549, - "2019": 0.08372827804107424, - "2020": 0.26823529411764707, - "2021": 0.4114114114114114, - "2022": 0.39380281690140845 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.994218922, - "totalConsumptionEmission": 6172.0, - "electricVehiclePerChargePoints": 30.670731707317074 - }, - { - "kommun": "Lilla Edet", - "län": "Västra Götalands län", - "emissions": { - "1990": 66343.8724591528, - "2000": 62788.8833817532, - "2005": 76990.4876121187, - "2010": 80112.7454573071, - "2015": 46158.8041565008, - "2016": 44595.6492466878, - "2017": 47289.1166419511, - "2018": 48582.8058442336, - "2019": 48585.3537340409, - "2020": 45355.1317713161, - "2021": 45044.8635477766 - }, - "budget": 96456.69579905007, - "emissionBudget": { - "2024": 46403.113630752676, - "2025": 28682.56358181632, - "2026": 17729.18645441318, - "2027": 10958.715438344483, - "2028": 6773.7707179855315, - "2029": 4186.984322933549, - "2030": 2588.047108524639, - "2031": 1599.7164831154407, - "2032": 988.8123048154595, - "2033": 611.201912635355, - "2034": 377.7944268996881, - "2035": 233.52124076486024, - "2036": 144.34350007719732, - "2037": 89.22120294622493, - "2038": 55.149161901395544, - "2039": 34.08864662203061, - "2040": 21.070779472575698, - "2041": 13.024211624024593, - "2042": 8.050489477532434, - "2043": 4.976146172894692, - "2044": 3.075841637098107, - "2045": 1.9012306808911332, - "2046": 1.1751834224378377, - "2047": 0.726401109688274, - "2048": 0.44900103429111016, - "2049": 0.2775352709483075, - "2050": 0.17154933004098794 - }, - "approximatedHistoricalEmission": { - "2021": 45044.8635477766, - "2022": 46440.72932252592, - "2023": 46421.9214766393, - "2024": 46403.113630752676 - }, - "totalApproximatedHistoricalEmission": 138586.63938842987, - "trend": { - "2024": 46403.113630752676, - "2025": 46384.30578486605, - "2026": 46365.497938979424, - "2027": 46346.6900930928, - "2028": 46327.88224720618, - "2029": 46309.07440131955, - "2030": 46290.26655543293, - "2031": 46271.45870954631, - "2032": 46252.650863659685, - "2033": 46233.84301777306, - "2034": 46215.03517188643, - "2035": 46196.22732599981, - "2036": 46177.41948011319, - "2037": 46158.61163422657, - "2038": 46139.80378833994, - "2039": 46120.995942453315, - "2040": 46102.18809656669, - "2041": 46083.38025068007, - "2042": 46064.57240479344, - "2043": 46045.76455890682, - "2044": 46026.9567130202, - "2045": 46008.148867133576, - "2046": 45989.341021246946, - "2047": 45970.533175360324, - "2048": 45951.7253294737, - "2049": 45932.91748358708, - "2050": 45914.10963770046 - }, - "trendEmission": 1200123.9024898908, - "historicalEmissionChangePercent": -0.3230681739759642, - "neededEmissionChangePercent": 38.18827803225781, - "hitNetZero": "4489-07-31", - "budgetRunsOut": "2026-01-30", - "electricCarChangePercent": 0.07145206664468494, - "electricCarChangeYearly": { - "2015": 0.024096385542168676, - "2016": 0.009861932938856016, - "2017": 0.0182648401826484, - "2018": 0.024305555555555556, - "2019": 0.06148282097649186, - "2020": 0.23037974683544304, - "2021": 0.31690140845070425, - "2022": 0.565989847715736 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.530883986, - "totalConsumptionEmission": 6077.2, - "electricVehiclePerChargePoints": 43.266666666666666 - }, - { - "kommun": "Lindesberg", - "län": "Örebro län", - "emissions": { - "1990": 194447.285435785, - "2000": 165335.286082458, - "2005": 130436.533100131, - "2010": 110691.51149072, - "2015": 81564.384646661, - "2016": 84051.3004776609, - "2017": 87025.739544324, - "2018": 80309.0498437763, - "2019": 79593.6600104716, - "2020": 69465.1833511691, - "2021": 75179.0501123718 - }, - "budget": 165057.167161675, - "emissionBudget": { - "2024": 67649.69884312479, - "2025": 44902.19724715086, - "2026": 29803.640697610423, - "2027": 19782.038592523935, - "2028": 13130.243209094986, - "2029": 8715.142573583897, - "2030": 5784.638476862589, - "2031": 3839.5289607108116, - "2032": 2548.470867989773, - "2033": 1691.5366003099987, - "2034": 1122.7501581939962, - "2035": 745.2205985336801, - "2036": 494.63697370767926, - "2037": 328.313168261993, - "2038": 217.9164562775473, - "2039": 144.64111253274245, - "2040": 96.00491762799034, - "2041": 63.7228520118771, - "2042": 42.295769517370154, - "2043": 28.073635479043944, - "2044": 18.63375505407374, - "2045": 12.368074939008348, - "2046": 8.209256655624221, - "2047": 5.448858870135044, - "2048": 3.6166566879485336, - "2049": 2.400540353536199, - "2050": 1.593348356275533 - }, - "approximatedHistoricalEmission": { - "2021": 75179.0501123718, - "2022": 71632.5786566753, - "2023": 69641.13874990027, - "2024": 67649.69884312479 - }, - "totalApproximatedHistoricalEmission": 212688.09188432386, - "trend": { - "2024": 67649.69884312479, - "2025": 65658.25893634977, - "2026": 63666.81902957475, - "2027": 61675.37912279926, - "2028": 59683.93921602424, - "2029": 57692.49930924922, - "2030": 55701.0594024742, - "2031": 53709.61949569872, - "2032": 51718.1795889237, - "2033": 49726.73968214868, - "2034": 47735.299775373656, - "2035": 45743.85986859817, - "2036": 43752.41996182315, - "2037": 41760.98005504813, - "2038": 39769.54014827311, - "2039": 37778.100241497625, - "2040": 35786.660334722605, - "2041": 33795.220427947585, - "2042": 31803.780521172564, - "2043": 29812.34061439708, - "2044": 27820.90070762206, - "2045": 25829.46080084704, - "2046": 23838.02089407202, - "2047": 21846.580987296533, - "2048": 19855.141080521513, - "2049": 17863.701173746493, - "2050": 15872.261266971007 - }, - "trendEmission": 1085785.4814312498, - "historicalEmissionChangePercent": -1.0867841611360565, - "neededEmissionChangePercent": 33.625429211035936, - "hitNetZero": "2057-12-12", - "budgetRunsOut": "2026-07-15", - "electricCarChangePercent": 0.0627820409637267, - "electricCarChangeYearly": { - "2015": 0.007961783439490446, - "2016": 0.02005730659025788, - "2017": 0.024163568773234202, - "2018": 0.05357142857142857, - "2019": 0.04970178926441352, - "2020": 0.22028985507246376, - "2021": 0.3058823529411765, - "2022": 0.47368421052631576 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbetar utifrån Örebro läns klimat– och energiprogram.", - "bicycleMetrePerCapita": 2.033057359, - "totalConsumptionEmission": 6139.5, - "electricVehiclePerChargePoints": 29.347826086956523 - }, - { - "kommun": "Linköping", - "län": "Östergötlands län", - "emissions": { - "1990": 1080516.15478745, - "2000": 619498.776366626, - "2005": 642071.791529975, - "2010": 734653.740699053, - "2015": 561648.044529764, - "2016": 590254.064297639, - "2017": 556212.491975602, - "2018": 567332.96849281, - "2019": 538494.177698724, - "2020": 511742.304643697, - "2021": 534930.625645295 - }, - "budget": 1143638.5946784832, - "emissionBudget": { - "2024": 496896.22027517855, - "2025": 321788.36844853667, - "2026": 208389.095838618, - "2027": 134952.09747266484, - "2028": 87394.53731482926, - "2029": 56596.41676944039, - "2030": 36651.65454908449, - "2031": 23735.491712450104, - "2032": 15371.02686803153, - "2033": 9954.226768928324, - "2034": 6446.324726250289, - "2035": 4174.61882684633, - "2036": 2703.4695100749377, - "2037": 1750.7580200863824, - "2038": 1133.785172525149, - "2039": 734.2355726432457, - "2040": 475.48855744344957, - "2041": 307.924835956574, - "2042": 199.4111175013075, - "2043": 129.1379880404587, - "2044": 83.62933904639658, - "2045": 54.15808667505324, - "2046": 35.07259994815134, - "2047": 22.7129011130609, - "2048": 14.708800537579611, - "2049": 9.525371161409756, - "2050": 6.168599236273771 - }, - "approximatedHistoricalEmission": { - "2021": 534930.625645295, - "2022": 515102.9410064779, - "2023": 505999.5806408264, - "2024": 496896.22027517855 - }, - "totalApproximatedHistoricalEmission": 1537015.944607541, - "trend": { - "2024": 496896.22027517855, - "2025": 487792.8599095307, - "2026": 478689.4995438792, - "2027": 469586.13917823136, - "2028": 460482.77881258354, - "2029": 451379.418446932, - "2030": 442276.05808128417, - "2031": 433172.69771563634, - "2032": 424069.3373499848, - "2033": 414965.976984337, - "2034": 405862.61661868915, - "2035": 396759.2562530376, - "2036": 387655.8958873898, - "2037": 378552.53552174196, - "2038": 369449.1751560904, - "2039": 360345.8147904426, - "2040": 351242.45442479476, - "2041": 342139.0940591432, - "2042": 333035.7336934954, - "2043": 323932.37332784757, - "2044": 314829.012962196, - "2045": 305725.6525965482, - "2046": 296622.2922309004, - "2047": 287518.93186524883, - "2048": 278415.571499601, - "2049": 269312.2111339532, - "2050": 260208.85076830164 - }, - "trendEmission": 9842365.92356526, - "historicalEmissionChangePercent": -0.6990999729136957, - "neededEmissionChangePercent": 35.24032678889527, - "hitNetZero": "2078-07-19", - "budgetRunsOut": "2026-05-09", - "electricCarChangePercent": 0.07817576996138308, - "electricCarChangeYearly": { - "2015": 0.014455091765470196, - "2016": 0.020509090909090907, - "2017": 0.037296037296037296, - "2018": 0.07933398628795299, - "2019": 0.09797979797979799, - "2020": 0.27189235369500214, - "2021": 0.4135514018691589, - "2022": 0.5686148576321987 - }, - "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab3afd7221628a913d67/1670425403524/Viable-Cities-Klimatkontrakt-Linkoping-FINAL.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities. ", - "bicycleMetrePerCapita": 3.315704358, - "totalConsumptionEmission": 6282.7, - "electricVehiclePerChargePoints": 13.277693474962064 - }, - { - "kommun": "Ljungby", - "län": "Kronobergs län", - "emissions": { - "1990": 193531.355528965, - "2000": 192010.595950853, - "2005": 230941.770098665, - "2010": 214833.285479184, - "2015": 171358.709851062, - "2016": 168754.789283744, - "2017": 164048.790807863, - "2018": 152952.637042497, - "2019": 149205.034872681, - "2020": 138247.090453724, - "2021": 138928.587827763 - }, - "budget": 320966.3576425884, - "emissionBudget": { - "2024": 117681.62294880673, - "2025": 81559.68011710691, - "2026": 56525.23524168693, - "2027": 39175.02146330614, - "2028": 27150.392211347764, - "2029": 18816.67883501914, - "2030": 13040.968234420992, - "2031": 9038.090833259648, - "2032": 6263.88197884288, - "2033": 4341.20636412345, - "2034": 3008.6889822575085, - "2035": 2085.1829267474805, - "2036": 1445.1436700967236, - "2037": 1001.5621173717485, - "2038": 694.1362964189163, - "2039": 481.0737044154115, - "2040": 333.40989409995586, - "2041": 231.07094913621444, - "2042": 160.14456823139042, - "2043": 110.98877998246402, - "2044": 76.92118076834791, - "2045": 53.31050626677501, - "2046": 36.94704176446162, - "2047": 25.606282714963516, - "2048": 17.746528089004435, - "2049": 12.299296337526677, - "2050": 8.524072406704954 - }, - "approximatedHistoricalEmission": { - "2021": 138928.587827763, - "2022": 130049.44578203, - "2023": 123865.53436541744, - "2024": 117681.62294880673 - }, - "totalApproximatedHistoricalEmission": 382220.08553573233, - "trend": { - "2024": 117681.62294880673, - "2025": 111497.71153219417, - "2026": 105313.80011558346, - "2027": 99129.88869897276, - "2028": 92945.9772823602, - "2029": 86762.0658657495, - "2030": 80578.15444913879, - "2031": 74394.24303252622, - "2032": 68210.33161591552, - "2033": 62026.42019930482, - "2034": 55842.50878269225, - "2035": 49658.59736608155, - "2036": 43474.685949468985, - "2037": 37290.77453285828, - "2038": 31106.86311624758, - "2039": 24922.951699635014, - "2040": 18739.04028302431, - "2041": 12555.128866413608, - "2042": 6371.217449801043, - "2043": 187.3060331903398, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 1119848.4783455618, - "historicalEmissionChangePercent": -3.395600549502172, - "neededEmissionChangePercent": 30.69463347511226, - "hitNetZero": "2043-01-07", - "budgetRunsOut": "2026-12-16", - "electricCarChangePercent": 0.05866861261891208, - "electricCarChangeYearly": { - "2015": 0.009082652134423252, - "2016": 0.01773049645390071, - "2017": 0.026041666666666668, - "2018": 0.038130381303813035, - "2019": 0.07556675062972293, - "2020": 0.2015625, - "2021": 0.3026874115983027, - "2022": 0.4289940828402367 - }, - "climatePlanLink": "https://www.ljungby.se/globalassets/dokument-och-innehall/miljo-och-klimat/hallbar-utveckling/klimat--och-energiplan_digital-lasning.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Klimat- och energiplan ", - "bicycleMetrePerCapita": 4.84998266, - "totalConsumptionEmission": 6147.5, - "electricVehiclePerChargePoints": 10.362745098039216 - }, - { - "kommun": "Ljusdal", - "län": "Gävleborgs län", - "emissions": { - "1990": 135772.921986298, - "2000": 129603.081139287, - "2005": 110274.744217552, - "2010": 102602.079821812, - "2015": 87402.0685154335, - "2016": 81585.861780586, - "2017": 77520.060273409, - "2018": 67762.1166692518, - "2019": 74559.4880087334, - "2020": 64460.1920257851, - "2021": 61431.3880270318 - }, - "budget": 152477.01487417336, - "emissionBudget": { - "2024": 48862.17792014405, - "2025": 35465.046849479986, - "2026": 25741.168355029033, - "2027": 18683.40259338086, - "2028": 13560.74936661347, - "2029": 9842.635594078425, - "2030": 7143.961798772838, - "2031": 5185.215859564105, - "2032": 3763.522855748414, - "2033": 2731.63252396042, - "2034": 1982.6679767763808, - "2035": 1439.0560485915146, - "2036": 1044.4927417221268, - "2037": 758.1116027954536, - "2038": 550.251025531771, - "2039": 399.38208303673446, - "2040": 289.878693268426, - "2041": 210.3991650603948, - "2042": 152.71149513951866, - "2043": 110.84074759067143, - "2044": 80.45020654951105, - "2045": 58.392205705437775, - "2046": 42.382112282679806, - "2047": 30.761698754846034, - "2048": 22.327393782839167, - "2049": 16.205623659045546, - "2050": 11.762332887256557 - }, - "approximatedHistoricalEmission": { - "2021": 61431.3880270318, - "2022": 57085.317437249236, - "2023": 52973.74767869618, - "2024": 48862.17792014405 - }, - "totalApproximatedHistoricalEmission": 165205.84808953333, - "trend": { - "2024": 48862.17792014405, - "2025": 44750.60816159099, - "2026": 40639.038403037935, - "2027": 36527.46864448488, - "2028": 32415.89888593182, - "2029": 28304.32912737876, - "2030": 24192.759368826635, - "2031": 20081.189610273577, - "2032": 15969.61985172052, - "2033": 11858.050093167461, - "2034": 7746.480334614404, - "2035": 3634.910576062277, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 290551.4420171613, - "historicalEmissionChangePercent": -5.406403533281193, - "neededEmissionChangePercent": 27.418202873721935, - "hitNetZero": "2035-11-16", - "budgetRunsOut": "2027-09-11", - "electricCarChangePercent": 0.03798298146198286, - "electricCarChangeYearly": { - "2015": 0.008683068017366137, - "2016": 0.005847953216374269, - "2017": 0.009230769230769232, - "2018": 0.03314917127071823, - "2019": 0.04038461538461539, - "2020": 0.0979381443298969, - "2021": 0.17149758454106281, - "2022": 0.30710659898477155 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.610765974, - "totalConsumptionEmission": 6353.1, - "electricVehiclePerChargePoints": 7.903225806451613 - }, - { - "kommun": "Ljusnarsberg", - "län": "Örebro län", - "emissions": { - "1990": 48146.4817562388, - "2000": 50283.444637184, - "2005": 39329.818425062, - "2010": 38267.4600394776, - "2015": 36691.8251140545, - "2016": 33202.8864934343, - "2017": 30312.3310033724, - "2018": 28663.6987886101, - "2019": 25865.7349121049, - "2020": 25925.4509815681, - "2021": 25568.9786086761 - }, - "budget": 61092.246473761945, - "emissionBudget": { - "2024": 18239.41370787332, - "2025": 13531.625092375667, - "2026": 10038.967292110425, - "2027": 7447.801990083768, - "2028": 5525.444288187803, - "2029": 4099.2677601413825, - "2030": 3041.2027147315252, - "2031": 2256.2356238401485, - "2032": 1673.8769716423642, - "2033": 1241.8313435836083, - "2034": 921.3013333910424, - "2035": 683.5035621332473, - "2036": 507.0839501873881, - "2037": 376.20013527817997, - "2038": 279.09883902068134, - "2039": 207.06043044107912, - "2040": 153.61590899082162, - "2041": 113.96599265638719, - "2042": 84.55014566838732, - "2043": 62.7268447886842, - "2044": 46.536372303552554, - "2045": 34.52483469351115, - "2046": 25.61360397495528, - "2047": 19.002457634044756, - "2048": 14.097719184178036, - "2049": 10.458946417534392, - "2050": 7.7593799915963775 - }, - "approximatedHistoricalEmission": { - "2021": 25568.9786086761, - "2022": 21980.12846724037, - "2023": 20109.771087557077, - "2024": 18239.41370787332 - }, - "totalApproximatedHistoricalEmission": 63994.09571307216, - "trend": { - "2024": 18239.41370787332, - "2025": 16369.056328190025, - "2026": 14498.698948506732, - "2027": 12628.341568823438, - "2028": 10757.984189140145, - "2029": 8887.626809456851, - "2030": 7017.269429773092, - "2031": 5146.912050089799, - "2032": 3276.5546704065055, - "2033": 1406.197290723212, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 89108.34813904646, - "historicalEmissionChangePercent": -5.759797618256795, - "neededEmissionChangePercent": 25.811074253255544, - "hitNetZero": "2033-09-29", - "budgetRunsOut": "2028-04-17", - "electricCarChangePercent": 0.061613325054131994, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.015151515151515152, - "2018": 0.017857142857142856, - "2019": 0.06451612903225806, - "2020": 0.23529411764705882, - "2021": 0.36538461538461536, - "2022": 0.37735849056603776 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 1.489763659, - "totalConsumptionEmission": 6088.1, - "electricVehiclePerChargePoints": 8.666666666666666 - }, - { - "kommun": "Lomma", - "län": "Skåne län", - "emissions": { - "1990": 105925.833582781, - "2000": 103327.825826688, - "2005": 89134.6443216672, - "2010": 95459.2340056458, - "2015": 82916.8796671018, - "2016": 79342.6536805445, - "2017": 80300.7026237359, - "2018": 73845.6220940242, - "2019": 73532.3628643142, - "2020": 68121.8847937548, - "2021": 68352.2524712745 - }, - "budget": 155940.3203561452, - "emissionBudget": { - "2024": 59579.53135914635, - "2025": 40660.04214586585, - "2026": 27748.43959979875, - "2027": 18936.918399184866, - "2028": 12923.497091345893, - "2029": 8819.638631236588, - "2030": 6018.961047137121, - "2031": 4107.6390543536945, - "2032": 2803.257650068545, - "2033": 1913.0827584129731, - "2034": 1305.5830385221632, - "2035": 890.9949467584962, - "2036": 608.059366371509, - "2037": 414.97002241959683, - "2038": 283.19622890523965, - "2039": 193.2672234936877, - "2040": 131.8951873806819, - "2041": 90.01185063722599, - "2042": 61.42857382471074, - "2043": 41.9219208962398, - "2044": 28.609608561734525, - "2045": 19.524623026734698, - "2046": 13.3245760253417, - "2047": 9.093354888952414, - "2048": 6.205758665729433, - "2049": 4.235119060849998, - "2050": 2.8902563611804135 - }, - "approximatedHistoricalEmission": { - "2021": 68352.2524712745, - "2022": 64786.94272489473, - "2023": 62183.237042020075, - "2024": 59579.53135914635 - }, - "totalApproximatedHistoricalEmission": 190936.07168212524, - "trend": { - "2024": 59579.53135914635, - "2025": 56975.82567627169, - "2026": 54372.119993397035, - "2027": 51768.41431052331, - "2028": 49164.70862764865, - "2029": 46561.002944773994, - "2030": 43957.29726189934, - "2031": 41353.59157902561, - "2032": 38749.885896150954, - "2033": 36146.1802132763, - "2034": 33542.47453040257, - "2035": 30938.768847527914, - "2036": 28335.063164653257, - "2037": 25731.35748177953, - "2038": 23127.651798904873, - "2039": 20523.946116030216, - "2040": 17920.24043315649, - "2041": 15316.534750281833, - "2042": 12712.829067407176, - "2043": 10109.123384532519, - "2044": 7505.417701658793, - "2045": 4901.712018784136, - "2046": 2298.0063359094784, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 681801.9178135688, - "historicalEmissionChangePercent": -3.0976264708301904, - "neededEmissionChangePercent": 31.755015156519956, - "hitNetZero": "2046-11-13", - "budgetRunsOut": "2026-10-15", - "electricCarChangePercent": 0.08962152539618798, - "electricCarChangeYearly": { - "2015": 0.024390243902439025, - "2016": 0.0421455938697318, - "2017": 0.04227642276422764, - "2018": 0.08771929824561403, - "2019": 0.16838487972508592, - "2020": 0.31539888682745826, - "2021": 0.511400651465798, - "2022": 0.6360902255639098 - }, - "climatePlanLink": "https://lomma.se/bygga-bo-och-miljo/klimat-miljo-och-hallbarhet/klimatarbete.html", - "climatePlanYear": 2020, - "climatePlanComment": "Energi– och klimatplan 2021–2025", - "bicycleMetrePerCapita": 4.057055311, - "totalConsumptionEmission": 6598.4, - "electricVehiclePerChargePoints": 48.58064516129032 - }, - { - "kommun": "Ludvika", - "län": "Dalarnas län", - "emissions": { - "1990": 116351.826015929, - "2000": 100805.411787066, - "2005": 128315.928048141, - "2010": 85535.1689088105, - "2015": 71292.9523516219, - "2016": 69660.5247781935, - "2017": 65841.0176558881, - "2018": 60090.0690094441, - "2019": 59323.5774175386, - "2020": 45401.8706736408, - "2021": 45248.6761688049 - }, - "budget": 123486.98951803599, - "emissionBudget": { - "2024": 31015.33179446496, - "2025": 24126.69507429259, - "2026": 18768.053782735165, - "2027": 14599.58944675176, - "2028": 11356.958717252897, - "2029": 8834.530023998945, - "2030": 6872.343440534918, - "2031": 5345.966818423362, - "2032": 4158.604917081835, - "2033": 3234.961129346773, - "2034": 2516.4625438205862, - "2035": 1957.5455411208284, - "2036": 1522.7663749543342, - "2037": 1184.5535053881208, - "2038": 921.4591484326445, - "2039": 716.7991638773713, - "2040": 557.5950298059854, - "2041": 433.75080905859994, - "2042": 337.41291493299906, - "2043": 262.4720756387166, - "2044": 204.1759145579122, - "2045": 158.82757807326377, - "2046": 123.55129943333054, - "2047": 96.11003187760697, - "2048": 74.76358621787767, - "2049": 58.1582766643569, - "2050": 45.24107678182879 - }, - "approximatedHistoricalEmission": { - "2021": 45248.6761688049, - "2022": 40527.30157988705, - "2023": 35771.316687176004, - "2024": 31015.33179446496 - }, - "totalApproximatedHistoricalEmission": 114430.62224869798, - "trend": { - "2024": 31015.33179446496, - "2025": 26259.346901753917, - "2026": 21503.362009042874, - "2027": 16747.37711633183, - "2028": 11991.392223620787, - "2029": 7235.407330909744, - "2030": 2479.422438200563, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 101723.9739170922, - "historicalEmissionChangePercent": -6.931295608440082, - "neededEmissionChangePercent": 22.21042407613942, - "hitNetZero": "2030-07-08", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.06305293399226239, - "electricCarChangeYearly": { - "2015": 0.009363295880149813, - "2016": 0.006340579710144928, - "2017": 0.019148936170212766, - "2018": 0.030235162374020158, - "2019": 0.03850782190132371, - "2020": 0.22791519434628976, - "2021": 0.3433734939759036, - "2022": 0.4346076458752515 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.737941809, - "totalConsumptionEmission": 6222.7, - "electricVehiclePerChargePoints": 12.666666666666666 - }, - { - "kommun": "Luleå", - "län": "Norrbottens län", - "emissions": { - "1990": 3088630.93956328, - "2000": 3267586.48821199, - "2005": 3896502.85803967, - "2010": 3842239.87780166, - "2015": 2741735.18418745, - "2016": 3701344.89415282, - "2017": 3802006.00066376, - "2018": 3474039.18841795, - "2019": 3459484.10256956, - "2020": 3342077.88362666, - "2021": 3410027.6165376 - }, - "budget": 7089049.649216389, - "emissionBudget": { - "2024": 3620920.991001621, - "2025": 2172659.007703921, - "2026": 1303659.255611433, - "2027": 782233.865836787, - "2028": 469363.30810997105, - "2029": 281631.77870632045, - "2030": 168987.3439333741, - "2031": 101397.3726290128, - "2032": 60841.40348475142, - "2033": 36506.630122831855, - "2034": 21905.050945435105, - "2035": 13143.674321832663, - "2036": 7886.590864761479, - "2037": 4732.186293205921, - "2038": 2839.4508473444544, - "2039": 1703.7539553462998, - "2040": 1022.30244382393, - "2041": 613.4115101355436, - "2042": 368.0649332689782, - "2043": 220.84977680376815, - "2044": 132.5163565055796, - "2045": 79.5137083480822, - "2046": 47.71056179014152, - "2047": 28.627739211534507, - "2048": 17.17748485059705, - "2049": 10.306995729289184, - "2050": 6.184500343767917 - }, - "approximatedHistoricalEmission": { - "2021": 3410027.6165376, - "2022": 3553505.1782942116, - "2023": 3587213.084647909, - "2024": 3620920.991001621 - }, - "totalApproximatedHistoricalEmission": 10656192.566711731, - "trend": { - "2024": 3620920.991001621, - "2025": 3654628.897355318, - "2026": 3688336.8037090153, - "2027": 3722044.7100627273, - "2028": 3755752.6164164245, - "2029": 3789460.5227701217, - "2030": 3823168.429123834, - "2031": 3856876.335477531, - "2032": 3890584.241831228, - "2033": 3924292.14818494, - "2034": 3958000.0545386374, - "2035": 3991707.9608923346, - "2036": 4025415.8672460467, - "2037": 4059123.773599744, - "2038": 4092831.679953441, - "2039": 4126539.586307153, - "2040": 4160247.4926608503, - "2041": 4193955.3990145624, - "2042": 4227663.30536826, - "2043": 4261371.211721957, - "2044": 4295079.118075669, - "2045": 4328787.024429366, - "2046": 4362494.930783063, - "2047": 4396202.837136775, - "2048": 4429910.743490472, - "2049": 4463618.64984417, - "2050": 4497326.556197882 - }, - "trendEmission": 105537218.1135934, - "historicalEmissionChangePercent": 4.5523265173631815, - "neededEmissionChangePercent": 39.99706115921302, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-12-10", - "electricCarChangePercent": 0.07563750342085944, - "electricCarChangeYearly": { - "2015": 0.009475465313028765, - "2016": 0.014413712504869497, - "2017": 0.038129822968679075, - "2018": 0.05323411562678878, - "2019": 0.06784260515603799, - "2020": 0.23802716225875625, - "2021": 0.4187725631768953, - "2022": 0.5405405405405406 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.867407965, - "totalConsumptionEmission": 6627.2, - "electricVehiclePerChargePoints": 35.49484536082474 - }, - { - "kommun": "Lund", - "län": "Skåne län", - "emissions": { - "1990": 274296.052786953, - "2000": 299978.948389746, - "2005": 321106.636367123, - "2010": 291547.123987707, - "2015": 183509.727944819, - "2016": 174840.518531389, - "2017": 166549.845450563, - "2018": 163130.596350829, - "2019": 159759.128934438, - "2020": 143637.635710982, - "2021": 138840.37075476 - }, - "budget": 334821.78708150616, - "emissionBudget": { - "2024": 117922.99901244417, - "2025": 82916.6218982767, - "2026": 58302.16535025756, - "2027": 40994.70536437061, - "2028": 28825.102083522048, - "2029": 20268.142013471057, - "2030": 14251.383377166398, - "2031": 10020.747241063566, - "2032": 7046.008981146972, - "2033": 4954.3453564980355, - "2034": 3483.608660893028, - "2035": 2449.4718129272433, - "2036": 1722.3266865994626, - "2037": 1211.0403556053468, - "2038": 851.5334252878564, - "2039": 598.7489772956563, - "2040": 421.0055966874174, - "2041": 296.02674770767277, - "2042": 208.14886084150058, - "2043": 146.3582213604524, - "2044": 102.91062306656802, - "2045": 72.36078876544025, - "2046": 50.87991496630711, - "2047": 35.77580884821764, - "2048": 25.15547637199801, - "2049": 17.68787378607867, - "2050": 12.437088228649575 - }, - "approximatedHistoricalEmission": { - "2021": 138840.37075476, - "2022": 132437.60999295302, - "2023": 125180.30450269766, - "2024": 117922.99901244417 - }, - "totalApproximatedHistoricalEmission": 385999.59937925276, - "trend": { - "2024": 117922.99901244417, - "2025": 110665.69352219068, - "2026": 103408.38803193532, - "2027": 96151.08254168183, - "2028": 88893.77705142833, - "2029": 81636.47156117484, - "2030": 74379.16607091948, - "2031": 67121.86058066599, - "2032": 59864.5550904125, - "2033": 52607.24960015714, - "2034": 45349.94410990365, - "2035": 38092.638619650155, - "2036": 30835.333129396662, - "2037": 23578.027639141306, - "2038": 16320.722148887813, - "2039": 9063.41665863432, - "2040": 1806.111168378964, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 958735.9370307811, - "historicalEmissionChangePercent": -4.502774001772303, - "neededEmissionChangePercent": 29.685792769291197, - "hitNetZero": "2040-03-27", - "budgetRunsOut": "2027-02-22", - "electricCarChangePercent": 0.10358583116471191, - "electricCarChangeYearly": { - "2015": 0.030362835888872022, - "2016": 0.07991892283190966, - "2017": 0.09101608473911338, - "2018": 0.16771844660194174, - "2019": 0.24171270718232044, - "2020": 0.5270969498910676, - "2021": 0.6341385378339466, - "2022": 0.6800592482873542 - }, - "climatePlanLink": "https://lund.se/download/18.2899fac318093d2b72817dd7/1666783006521/Lunds%20kommuns%20program%20f%C3%B6r%20ekologisk%20h%C3%A5llbar%20utveckling%202021-2030.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Program för ekologisk hållbar utveckling 2021–2030", - "bicycleMetrePerCapita": 3.243323968, - "totalConsumptionEmission": 6171.1, - "electricVehiclePerChargePoints": 24.35077793493635 - }, - { - "kommun": "Lycksele", - "län": "Västerbottens län", - "emissions": { - "1990": 73159.8265566444, - "2000": 67475.3778616784, - "2005": 60720.5667236556, - "2010": 63538.2048457981, - "2015": 65777.8982855079, - "2016": 61485.1997406057, - "2017": 63605.4022058477, - "2018": 65846.6955592549, - "2019": 67717.8157688779, - "2020": 49347.517365165, - "2021": 53014.7113861568 - }, - "budget": 126430.51680792391, - "emissionBudget": { - "2024": 48445.210354651324, - "2025": 33024.738006354935, - "2026": 22512.71719957906, - "2027": 15346.751141846911, - "2028": 10461.765611046867, - "2029": 7131.70746621693, - "2030": 4861.631704880531, - "2031": 3314.138016156908, - "2032": 2259.2231285455537, - "2033": 1540.0955300207709, - "2034": 1049.8716180888873, - "2035": 715.6896393652366, - "2036": 487.8802808548501, - "2037": 332.58434292568495, - "2038": 226.72026212147304, - "2039": 154.5535090565437, - "2040": 105.35797258779175, - "2041": 71.8217428744941, - "2042": 48.96034559920594, - "2043": 33.3759018544364, - "2044": 22.752102971573766, - "2045": 15.509938634370938, - "2046": 10.573009305667387, - "2047": 7.207541461833976, - "2048": 4.913327173202252, - "2049": 3.349378430739537, - "2050": 2.283246255915772 - }, - "approximatedHistoricalEmission": { - "2021": 53014.7113861568, - "2022": 52620.389775073156, - "2023": 50532.800064861774, - "2024": 48445.210354651324 - }, - "totalApproximatedHistoricalEmission": 153883.150710339, - "trend": { - "2024": 48445.210354651324, - "2025": 46357.620644440874, - "2026": 44270.03093422949, - "2027": 42182.44122401904, - "2028": 40094.85151380859, - "2029": 38007.26180359721, - "2030": 35919.67209338676, - "2031": 33832.08238317631, - "2032": 31744.49267296493, - "2033": 29656.90296275448, - "2034": 27569.31325254403, - "2035": 25481.72354233265, - "2036": 23394.1338321222, - "2037": 21306.54412191175, - "2038": 19218.954411700368, - "2039": 17131.364701489918, - "2040": 15043.774991279468, - "2041": 12956.185281068087, - "2042": 10868.595570857637, - "2043": 8781.005860647187, - "2044": 6693.416150435805, - "2045": 4605.826440225355, - "2046": 2518.2367300149053, - "2047": 430.647019803524, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 562287.6833161362, - "historicalEmissionChangePercent": -2.734785362508843, - "neededEmissionChangePercent": 31.830747013808413, - "hitNetZero": "2047-03-11", - "budgetRunsOut": "2026-10-11", - "electricCarChangePercent": 0.06312012057143704, - "electricCarChangeYearly": { - "2015": 0.009708737864077669, - "2016": 0.010416666666666666, - "2017": 0.04838709677419355, - "2018": 0.07964601769911504, - "2019": 0.07228915662650602, - "2020": 0.265625, - "2021": 0.3333333333333333, - "2022": 0.4444444444444444 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Pågående arbete med att ta fram klimatstrategi och koldioxidbudget. Nuvarande klimatarbete ingår i översiktsplanen.", - "bicycleMetrePerCapita": 3.367278473, - "totalConsumptionEmission": 6113.7, - "electricVehiclePerChargePoints": 4.780487804878049 - }, - { - "kommun": "Lysekil", - "län": "Västra Götalands län", - "emissions": { - "1990": 1239167.68179694, - "2000": 1405304.77024186, - "2005": 1346322.70868853, - "2010": 1744872.73469659, - "2015": 1777362.09081185, - "2016": 1634826.83795701, - "2017": 1743435.79623923, - "2018": 1821587.57736769, - "2019": 1271266.51067868, - "2020": 1231248.5216605, - "2021": 1743973.00699289 - }, - "budget": 3324822.0707990867, - "emissionBudget": { - "2024": 1307780.0838988721, - "2025": 882490.4959644654, - "2026": 595504.920938856, - "2027": 401846.9462096876, - "2028": 271166.47151037026, - "2029": 182983.2376852632, - "2030": 123477.15809880657, - "2031": 83322.43305467309, - "2032": 56226.00938543613, - "2033": 37941.332430088565, - "2034": 25602.825494909954, - "2035": 17276.796341579633, - "2036": 11658.388715251807, - "2037": 7867.085120914471, - "2038": 5308.712019418807, - "2039": 3582.3208814913373, - "2040": 2417.3514877105385, - "2041": 1631.2296995303338, - "2042": 1100.7544191059935, - "2043": 742.7894989468597, - "2044": 501.23463523665333, - "2045": 338.2333217109666, - "2046": 228.2399736036206, - "2047": 154.0164206384651, - "2048": 103.93033898382944, - "2049": 70.13223211211333, - "2050": 47.32525679332777 - }, - "approximatedHistoricalEmission": { - "2021": 1743973.00699289, - "2022": 1406315.31029962, - "2023": 1357047.6970992386, - "2024": 1307780.0838988721 - }, - "totalApproximatedHistoricalEmission": 4289239.5528447395, - "trend": { - "2024": 1307780.0838988721, - "2025": 1258512.4706985056, - "2026": 1209244.8574981242, - "2027": 1159977.2442977577, - "2028": 1110709.6310973763, - "2029": 1061442.0178970098, - "2030": 1012174.4046966434, - "2031": 962906.791496262, - "2032": 913639.1782958955, - "2033": 864371.5650955141, - "2034": 815103.9518951476, - "2035": 765836.3386947662, - "2036": 716568.7254943997, - "2037": 667301.1122940332, - "2038": 618033.4990936518, - "2039": 568765.8858932853, - "2040": 519498.2726929039, - "2041": 470230.6594925374, - "2042": 420963.0462921709, - "2043": 371695.4330917895, - "2044": 322427.819891423, - "2045": 273160.2066910416, - "2046": 223892.5934906751, - "2047": 174624.9802902937, - "2048": 125357.3670899272, - "2049": 76089.7538895607, - "2050": 26822.1406891793 - }, - "trendEmission": 17349828.91964472, - "historicalEmissionChangePercent": 1.8983827524129842, - "neededEmissionChangePercent": 32.519962122874276, - "hitNetZero": "2050-07-11", - "budgetRunsOut": "2026-09-05", - "electricCarChangePercent": 0.06799621860120332, - "electricCarChangeYearly": { - "2015": 0.004618937644341801, - "2016": 0.0020408163265306124, - "2017": 0.034403669724770644, - "2018": 0.06927710843373494, - "2019": 0.09177820267686425, - "2020": 0.2081447963800905, - "2021": 0.32265446224256294, - "2022": 0.5138888888888888 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.570420853, - "totalConsumptionEmission": 6492.7, - "electricVehiclePerChargePoints": 16.854166666666668 - }, - { - "kommun": "Malmö", - "län": "Skåne län", - "emissions": { - "1990": 1147787.49316862, - "2000": 1123603.13048287, - "2005": 1035760.12724836, - "2010": 1821756.15266603, - "2015": 1052565.51080206, - "2016": 978060.879980769, - "2017": 819936.0725141, - "2018": 763798.473946226, - "2019": 758930.951197966, - "2020": 632405.539225059, - "2021": 670375.543352161 - }, - "budget": 1681435.900366909, - "emissionBudget": { - "2024": 403963.4876074791, - "2025": 317689.7829406734, - "2026": 249841.38735568142, - "2027": 196483.2430492998, - "2028": 154520.69494078693, - "2029": 121520.0074796853, - "2030": 95567.21333360294, - "2031": 75157.10749011576, - "2032": 59105.94867470809, - "2033": 46482.80495888793, - "2034": 36555.56175465935, - "2035": 28748.46077771385, - "2036": 22608.707332541813, - "2037": 17780.209215401977, - "2038": 13982.924149247381, - "2039": 10996.617947230678, - "2040": 8648.091413973987, - "2041": 6801.135172954259, - "2042": 5348.629822073091, - "2043": 4206.33324379922, - "2044": 3307.994747528199, - "2045": 2601.512675156099, - "2046": 2045.912619436575, - "2047": 1608.9709984283159, - "2048": 1265.3461585746204, - "2049": 995.1086145017816, - "2050": 782.5851826753371 - }, - "approximatedHistoricalEmission": { - "2021": 670375.543352161, - "2022": 539598.1808344126, - "2023": 471780.83422094584, - "2024": 403963.4876074791 - }, - "totalApproximatedHistoricalEmission": 1548548.5305351785, - "trend": { - "2024": 403963.4876074791, - "2025": 336146.14099398255, - "2026": 268328.7943805158, - "2027": 200511.44776704907, - "2028": 132694.10115358233, - "2029": 64876.754540115595, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 1204538.982638985, - "historicalEmissionChangePercent": -6.899481889017173, - "neededEmissionChangePercent": 21.356807561438718, - "hitNetZero": "2029-12-14", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.06443229869056234, - "electricCarChangeYearly": { - "2015": 0.01738884569166608, - "2016": 0.03164594610671584, - "2017": 0.04722585244148746, - "2018": 0.049437250393319615, - "2019": 0.07239186976206531, - "2020": 0.21926062645893274, - "2021": 0.33480251860332, - "2022": 0.4970276008492569 - }, - "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab4da16fc858ade542fa/1670425421810/Viable-Cities-Klimatkontrakt-Malmo-FINAL.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities. ", - "bicycleMetrePerCapita": 1.555072408, - "totalConsumptionEmission": 6184.8, - "electricVehiclePerChargePoints": 19.315893385982232 - }, - { - "kommun": "Malung-Sälen", - "län": "Dalarnas län", - "emissions": { - "1990": 71495.1614995156, - "2000": 67536.7374818513, - "2005": 68817.0810242207, - "2010": 60163.5738741507, - "2015": 51409.9803303092, - "2016": 51216.8659095119, - "2017": 44311.3653386948, - "2018": 39332.4407701309, - "2019": 39916.4872991049, - "2020": 38318.1646060851, - "2021": 38990.1000466931 - }, - "budget": 89905.1282449821, - "emissionBudget": { - "2024": 28902.503150655888, - "2025": 20956.532300507453, - "2026": 15195.093787309075, - "2027": 11017.608824506138, - "2028": 7988.611713026635, - "2029": 5792.356410363569, - "2030": 4199.902810393115, - "2031": 3045.2517709698104, - "2032": 2208.0411779163883, - "2033": 1600.999263788861, - "2034": 1160.8473013493483, - "2035": 841.7033583519379, - "2036": 610.2995136719741, - "2037": 442.51397204537557, - "2038": 320.85658118453733, - "2039": 232.64563876612036, - "2040": 168.68593761449873, - "2041": 122.31024703406727, - "2042": 88.68431323375907, - "2043": 64.3029313116576, - "2044": 46.62455878045583, - "2045": 33.806382339494945, - "2046": 24.512220957749594, - "2047": 17.7732408705437, - "2048": 12.886963265664262, - "2049": 9.34403710725719, - "2050": 6.775143814868217 - }, - "approximatedHistoricalEmission": { - "2021": 38990.1000466931, - "2022": 33720.49754332006, - "2023": 31311.50034698751, - "2024": 28902.503150655888 - }, - "totalApproximatedHistoricalEmission": 98978.29948898207, - "trend": { - "2024": 28902.503150655888, - "2025": 26493.505954324268, - "2026": 24084.508757992648, - "2027": 21675.511561660096, - "2028": 19266.514365328476, - "2029": 16857.517168996856, - "2030": 14448.519972665235, - "2031": 12039.522776332684, - "2032": 9630.525580001064, - "2033": 7221.528383669443, - "2034": 4812.531187337823, - "2035": 2403.5339910052717, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 173384.9712746418, - "historicalEmissionChangePercent": -4.310070850655964, - "neededEmissionChangePercent": 27.49232759781955, - "hitNetZero": "2035-12-28", - "budgetRunsOut": "2027-09-03", - "electricCarChangePercent": 0.06841056261265648, - "electricCarChangeYearly": { - "2015": 0.027888446215139442, - "2016": 0.02510460251046025, - "2017": 0.06690140845070422, - "2018": 0.03896103896103896, - "2019": 0.08, - "2020": 0.2832618025751073, - "2021": 0.41798941798941797, - "2022": 0.46959459459459457 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.157542207, - "totalConsumptionEmission": 6838.9, - "electricVehiclePerChargePoints": 2.2941176470588234 - }, - { - "kommun": "Malå", - "län": "Västerbottens län", - "emissions": { - "1990": 12704.5540868584, - "2000": 14382.2642467678, - "2005": 13840.7136479153, - "2010": 13816.8229867095, - "2015": 10844.7120916547, - "2016": 10973.8800684536, - "2017": 10717.493652239, - "2018": 10484.4817926518, - "2019": 11149.594825288, - "2020": 9570.453789893, - "2021": 9691.38713817754 - }, - "budget": 21752.92800375223, - "emissionBudget": { - "2024": 9239.987713085953, - "2025": 6042.215307643403, - "2026": 3951.127096437153, - "2027": 2583.722118020431, - "2028": 1689.5482783045843, - "2029": 1104.8298750134447, - "2030": 722.4706558531203, - "2031": 472.43821005698834, - "2032": 308.93692430772944, - "2033": 202.02011854461762, - "2034": 132.10505150277453, - "2035": 86.38617162624998, - "2036": 56.48966911824098, - "2037": 36.939739972441195, - "2038": 24.155644926426838, - "2039": 15.79586597650461, - "2040": 10.329237025450999, - "2041": 6.754497517682625, - "2042": 4.416902875204257, - "2043": 2.888302343425971, - "2044": 1.8887194631043736, - "2045": 1.235071950977941, - "2046": 0.807638590002798, - "2047": 0.5281312489893615, - "2048": 0.3453557316498419, - "2049": 0.22583511506209014, - "2050": 0.1476781605779692 - }, - "approximatedHistoricalEmission": { - "2021": 9691.38713817754, - "2022": 9656.753873407608, - "2023": 9448.37079324678, - "2024": 9239.987713085953 - }, - "totalApproximatedHistoricalEmission": 28570.812092286134, - "trend": { - "2024": 9239.987713085953, - "2025": 9031.604632925068, - "2026": 8823.22155276424, - "2027": 8614.838472603413, - "2028": 8406.455392442585, - "2029": 8198.072312281758, - "2030": 7989.6892321208725, - "2031": 7781.306151960045, - "2032": 7572.923071799218, - "2033": 7364.53999163839, - "2034": 7156.156911477505, - "2035": 6947.773831316677, - "2036": 6739.39075115585, - "2037": 6531.007670995023, - "2038": 6322.624590834137, - "2039": 6114.24151067331, - "2040": 5905.858430512482, - "2041": 5697.475350351655, - "2042": 5489.092270190769, - "2043": 5280.709190029942, - "2044": 5072.326109869115, - "2045": 4863.943029708287, - "2046": 4655.559949547402, - "2047": 4447.176869386574, - "2048": 4238.793789225747, - "2049": 4030.4107090649195, - "2050": 3822.027628904092 - }, - "trendEmission": 169806.19944587, - "historicalEmissionChangePercent": -1.6458681014594203, - "neededEmissionChangePercent": 34.60797248586994, - "hitNetZero": "2068-04-23", - "budgetRunsOut": "2026-06-03", - "electricCarChangePercent": 0.03897844908714474, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.022727272727272728, - "2017": 0.0, - "2018": 0.0, - "2019": 0.04, - "2020": 0.0, - "2021": 0.0, - "2022": 0.4782608695652174 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 4.123764229, - "totalConsumptionEmission": 6081.2, - "electricVehiclePerChargePoints": 6.75 - }, - { - "kommun": "Mariestad", - "län": "Västra Götalands län", - "emissions": { - "1990": 125490.478551498, - "2000": 137998.681897692, - "2005": 130579.36697198, - "2010": 130002.524861905, - "2015": 100040.477109114, - "2016": 93417.8841741541, - "2017": 91376.8760153906, - "2018": 93026.6735625187, - "2019": 88014.877625239, - "2020": 86286.0129879992, - "2021": 84355.9376558259 - }, - "budget": 188557.38196012858, - "emissionBudget": { - "2024": 77071.38577810768, - "2025": 51212.81220227835, - "2026": 34030.16706118225, - "2027": 22612.54987595573, - "2028": 15025.709717301088, - "2029": 9984.365042735102, - "2030": 6634.465005789859, - "2031": 4408.505270455588, - "2032": 2929.3874792728516, - "2033": 1946.5352715419872, - "2034": 1293.444308807371, - "2035": 859.4748856828454, - "2036": 571.1085309893716, - "2037": 379.4932924767227, - "2038": 252.1677601021576, - "2039": 167.5618001570861, - "2040": 111.34237326971864, - "2041": 73.98538374325938, - "2042": 49.16220884188789, - "2043": 32.66757102457554, - "2044": 21.707124675334395, - "2045": 14.424067871958757, - "2046": 9.584582808025347, - "2047": 6.368815539372535, - "2048": 4.231985073005993, - "2049": 2.81209238160947, - "2050": 1.8685943892257255 - }, - "approximatedHistoricalEmission": { - "2021": 84355.9376558259, - "2022": 81691.34000113048, - "2023": 79381.36288961861, - "2024": 77071.38577810768 - }, - "totalApproximatedHistoricalEmission": 241786.36460771586, - "trend": { - "2024": 77071.38577810768, - "2025": 74761.40866659582, - "2026": 72451.43155508395, - "2027": 70141.45444357302, - "2028": 67831.47733206116, - "2029": 65521.50022054929, - "2030": 63211.52310903743, - "2031": 60901.5459975265, - "2032": 58591.56888601463, - "2033": 56281.59177450277, - "2034": 53971.61466299184, - "2035": 51661.63755147997, - "2036": 49351.66043996811, - "2037": 47041.68332845718, - "2038": 44731.70621694531, - "2039": 42421.72910543345, - "2040": 40111.75199392252, - "2041": 37801.77488241065, - "2042": 35491.79777089879, - "2043": 33181.820659386925, - "2044": 30871.843547875993, - "2045": 28561.86643636413, - "2046": 26251.889324852265, - "2047": 23941.912213341333, - "2048": 21631.93510182947, - "2049": 19321.957990317605, - "2050": 17011.980878806673 - }, - "trendEmission": 1223083.7665398773, - "historicalEmissionChangePercent": -2.764640954505996, - "neededEmissionChangePercent": 33.551457930544345, - "hitNetZero": "2057-05-05", - "budgetRunsOut": "2026-07-18", - "electricCarChangePercent": 0.05800223919314745, - "electricCarChangeYearly": { - "2015": 0.0011185682326621924, - "2016": 0.009503695881731784, - "2017": 0.027300303336703743, - "2018": 0.03764705882352941, - "2019": 0.05152224824355972, - "2020": 0.1693121693121693, - "2021": 0.3032679738562091, - "2022": 0.42446941323345816 - }, - "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab5329d52f430f6fe71a/1670425427707/Viable-Cities-Klimatkontrakt-Mariestad-FINAL.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities. ", - "bicycleMetrePerCapita": 4.177182145, - "totalConsumptionEmission": 6077.1, - "electricVehiclePerChargePoints": 21.6734693877551 - }, - { - "kommun": "Mark", - "län": "Västra Götalands län", - "emissions": { - "1990": 147121.048510445, - "2000": 129848.711069143, - "2005": 112254.497890317, - "2010": 101440.006438878, - "2015": 78885.4460783096, - "2016": 76133.7390297388, - "2017": 77897.1356981542, - "2018": 73062.4277052588, - "2019": 72170.1733284888, - "2020": 65873.3656920631, - "2021": 67266.4918853514 - }, - "budget": 151460.22849894696, - "emissionBudget": { - "2024": 59947.41742593236, - "2025": 40353.22728236793, - "2026": 27163.521332914486, - "2027": 18284.953667785132, - "2028": 12308.401644080075, - "2029": 8285.323210794006, - "2030": 5577.213247695614, - "2031": 3754.2660459821172, - "2032": 2527.160594018482, - "2033": 1701.1422711490666, - "2034": 1145.1132284745663, - "2035": 770.8257729329798, - "2036": 518.8765245592676, - "2037": 349.278471468692, - "2038": 235.1146079216604, - "2039": 158.26592067272898, - "2040": 106.535709830214, - "2041": 71.71384351592292, - "2042": 48.27372305513787, - "2043": 32.495153283573956, - "2044": 21.873908207098207, - "2045": 14.724283836335077, - "2046": 9.91155912515917, - "2047": 6.671903732873028, - "2048": 4.491150066161784, - "2049": 3.023189441029194, - "2050": 2.035040972069173 - }, - "approximatedHistoricalEmission": { - "2021": 67266.4918853514, - "2022": 64312.02968478203, - "2023": 62129.723555357195, - "2024": 59947.41742593236 - }, - "totalApproximatedHistoricalEmission": 190048.7078957811, - "trend": { - "2024": 59947.41742593236, - "2025": 57765.11129650753, - "2026": 55582.8051670827, - "2027": 53400.499037657864, - "2028": 51218.19290823396, - "2029": 49035.88677880913, - "2030": 46853.5806493843, - "2031": 44671.274519959465, - "2032": 42488.96839053463, - "2033": 40306.6622611098, - "2034": 38124.3561316859, - "2035": 35942.050002261065, - "2036": 33759.74387283623, - "2037": 31577.4377434114, - "2038": 29395.131613986567, - "2039": 27212.825484561734, - "2040": 25030.519355137832, - "2041": 22848.213225713, - "2042": 20665.907096288167, - "2043": 18483.600966863334, - "2044": 16301.294837438501, - "2045": 14118.988708013669, - "2046": 11936.682578589767, - "2047": 9754.376449164934, - "2048": 7572.070319740102, - "2049": 5389.764190315269, - "2050": 3207.458060890436 - }, - "trendEmission": 821013.3813286982, - "historicalEmissionChangePercent": -2.5349814514065048, - "neededEmissionChangePercent": 32.68562848061622, - "hitNetZero": "2051-06-14", - "budgetRunsOut": "2026-08-28", - "electricCarChangePercent": 0.05887189376903463, - "electricCarChangeYearly": { - "2015": 0.009135200974421437, - "2016": 0.008784773060029283, - "2017": 0.033380681818181816, - "2018": 0.025034770514603615, - "2019": 0.06272793581327499, - "2020": 0.210221793635487, - "2021": 0.29989969909729186, - "2022": 0.42648490749756574 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.164699341, - "totalConsumptionEmission": 6018.4, - "electricVehiclePerChargePoints": 93.6875 - }, - { - "kommun": "Markaryd", - "län": "Kronobergs län", - "emissions": { - "1990": 131859.084316808, - "2000": 105406.299834895, - "2005": 93388.4425498552, - "2010": 79759.1990163807, - "2015": 63576.43333818, - "2016": 60671.0197958704, - "2017": 59103.0104029839, - "2018": 59841.1186636512, - "2019": 57903.0420295907, - "2020": 54270.5189718591, - "2021": 53982.9166032395 - }, - "budget": 121262.0991690337, - "emissionBudget": { - "2024": 49310.825638002716, - "2025": 32835.06503155026, - "2026": 21864.194762036917, - "2027": 14558.917795135929, - "2028": 9694.484049033359, - "2029": 6455.357623377856, - "2030": 4298.489928389503, - "2031": 2862.276072444403, - "2032": 1905.930792295063, - "2033": 1269.1201313492606, - "2034": 845.0810041514943, - "2035": 562.7220669949023, - "2036": 374.7050556425116, - "2037": 249.50839314664663, - "2038": 166.14250945686643, - "2039": 110.63088139243989, - "2040": 73.66682950485718, - "2041": 49.053227281515134, - "2042": 32.663535581822856, - "2043": 21.74997682786621, - "2044": 14.48286242093075, - "2045": 9.643840338940988, - "2046": 6.421635017990365, - "2047": 4.276034738751023, - "2048": 2.847323623311058, - "2049": 1.8959742638183652, - "2050": 1.2624902837287626 - }, - "approximatedHistoricalEmission": { - "2021": 53982.9166032395, - "2022": 52366.64851130545, - "2023": 50838.737074654084, - "2024": 49310.825638002716 - }, - "totalApproximatedHistoricalEmission": 154852.25670658064, - "trend": { - "2024": 49310.825638002716, - "2025": 47782.914201351814, - "2026": 46255.002764700446, - "2027": 44727.09132804908, - "2028": 43199.17989139771, - "2029": 41671.26845474634, - "2030": 40143.357018094976, - "2031": 38615.44558144361, - "2032": 37087.534144792706, - "2033": 35559.62270814134, - "2034": 34031.71127148997, - "2035": 32503.799834838603, - "2036": 30975.888398187235, - "2037": 29447.976961535867, - "2038": 27920.065524884965, - "2039": 26392.154088233598, - "2040": 24864.24265158223, - "2041": 23336.331214930862, - "2042": 21808.419778279494, - "2043": 20280.508341628127, - "2044": 18752.59690497676, - "2045": 17224.685468325857, - "2046": 15696.77403167449, - "2047": 14168.862595023122, - "2048": 12640.951158371754, - "2049": 11113.039721720386, - "2050": 9585.128285069019 - }, - "trendEmission": 765647.4009999372, - "historicalEmissionChangePercent": -2.6579421111562493, - "neededEmissionChangePercent": 33.41205585849076, - "hitNetZero": "2056-04-01", - "budgetRunsOut": "2026-07-24", - "electricCarChangePercent": 0.06568561484182897, - "electricCarChangeYearly": { - "2015": 0.00851063829787234, - "2016": 0.006968641114982578, - "2017": 0.017964071856287425, - "2018": 0.023809523809523808, - "2019": 0.0625, - "2020": 0.20179372197309417, - "2021": 0.3465346534653465, - "2022": 0.46987951807228917 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.936381161, - "totalConsumptionEmission": 6465.5, - "electricVehiclePerChargePoints": 8.255813953488373 - }, - { - "kommun": "Mellerud", - "län": "Västra Götalands län", - "emissions": { - "1990": 63190.0593574044, - "2000": 61360.3629603098, - "2005": 65999.3897465969, - "2010": 38612.9794608756, - "2015": 33015.4559109454, - "2016": 31719.6674325107, - "2017": 30837.9677982202, - "2018": 29459.0896152477, - "2019": 29151.5243033596, - "2020": 27304.0666707569, - "2021": 27478.4286960322 - }, - "budget": 61902.5289412918, - "emissionBudget": { - "2024": 24039.01577605889, - "2025": 16302.877036242964, - "2026": 11056.351147435891, - "2027": 7498.240980634796, - "2028": 5085.1874234032475, - "2029": 3448.6929931864297, - "2030": 2338.84857547561, - "2031": 1586.1697952852778, - "2032": 1075.715053063544, - "2033": 729.5327895078118, - "2034": 494.75750055866354, - "2035": 335.5366446574706, - "2036": 227.55560002802704, - "2037": 154.32457804117394, - "2038": 104.66046708871615, - "2039": 70.97905926757662, - "2040": 48.13686575886994, - "2041": 32.645654492999846, - "2042": 22.13976212358493, - "2043": 15.014833505452678, - "2044": 10.182820571333206, - "2045": 6.905826478216457, - "2046": 4.683421357879386, - "2047": 3.176221656398427, - "2048": 2.1540628612460115, - "2049": 1.460851071540367, - "2050": 0.9907258936659735 - }, - "approximatedHistoricalEmission": { - "2021": 27478.4286960322, - "2022": 25976.78196628089, - "2023": 25007.89887116989, - "2024": 24039.01577605889 - }, - "totalApproximatedHistoricalEmission": 76743.40307349633, - "trend": { - "2024": 24039.01577605889, - "2025": 23070.132680947892, - "2026": 22101.249585836893, - "2027": 21132.366490725894, - "2028": 20163.483395614894, - "2029": 19194.600300503895, - "2030": 18225.717205393128, - "2031": 17256.83411028213, - "2032": 16287.95101517113, - "2033": 15319.06792006013, - "2034": 14350.18482494913, - "2035": 13381.301729838131, - "2036": 12412.418634727132, - "2037": 11443.535539616132, - "2038": 10474.652444505133, - "2039": 9505.769349394133, - "2040": 8536.886254283134, - "2041": 7568.0031591721345, - "2042": 6599.120064061368, - "2043": 5630.2369689503685, - "2044": 4661.353873839369, - "2045": 3692.4707787283696, - "2046": 2723.58768361737, - "2047": 1754.7045885063708, - "2048": 785.8214933953714, - "2049": 0, - "2050": 0 - }, - "trendEmission": 298290.9579801491, - "historicalEmissionChangePercent": -2.9864500451225844, - "neededEmissionChangePercent": 32.18159516963483, - "hitNetZero": "2048-10-17", - "budgetRunsOut": "2026-09-22", - "electricCarChangePercent": 0.05547856641444567, - "electricCarChangeYearly": { - "2015": 0.017094017094017096, - "2016": 0.009404388714733543, - "2017": 0.033210332103321034, - "2018": 0.049107142857142856, - "2019": 0.04938271604938271, - "2020": 0.2302158273381295, - "2021": 0.27439024390243905, - "2022": 0.4090909090909091 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete pågår med Energi– och Klimatstrategi som bör vara klart under 2023.", - "bicycleMetrePerCapita": 2.458987795, - "totalConsumptionEmission": 5737.5, - "electricVehiclePerChargePoints": 4.9411764705882355 - }, - { - "kommun": "Mjölby", - "län": "Östergötlands län", - "emissions": { - "1990": 135781.97451215, - "2000": 130491.800563787, - "2005": 129591.483723642, - "2010": 133248.21922371, - "2015": 114511.170173067, - "2016": 109326.932318644, - "2017": 104745.699174966, - "2018": 105974.110205858, - "2019": 104661.546792641, - "2020": 95077.1874123614, - "2021": 96057.566686439 - }, - "budget": 216354.47598997995, - "emissionBudget": { - "2024": 86348.21911168844, - "2025": 57932.751177180486, - "2026": 38868.24411069757, - "2027": 26077.484144130405, - "2028": 17495.906873246404, - "2029": 11738.354652061409, - "2030": 7875.497448392892, - "2031": 5283.829113882738, - "2032": 3545.0268745134426, - "2033": 2378.4295953106116, - "2034": 1595.7360945608673, - "2035": 1070.611334682717, - "2036": 718.2946063938823, - "2037": 481.91825068566715, - "2038": 323.32861513452616, - "2039": 216.92764948426498, - "2040": 145.54110866800033, - "2041": 97.64644738773674, - "2042": 65.51295901693537, - "2043": 43.95395750663706, - "2044": 29.489591211959137, - "2045": 19.785157905682134, - "2046": 13.27425906107603, - "2047": 8.905966505829815, - "2048": 5.975191461762315, - "2049": 4.0088757330657225, - "2050": 2.689635093035704 - }, - "approximatedHistoricalEmission": { - "2021": 96057.566686439, - "2022": 92344.25144417211, - "2023": 89346.23527793027, - "2024": 86348.21911168844 - }, - "totalApproximatedHistoricalEmission": 272893.3796211661, - "trend": { - "2024": 86348.21911168844, - "2025": 83350.2029454466, - "2026": 80352.18677920476, - "2027": 77354.17061296292, - "2028": 74356.15444672108, - "2029": 71358.1382804783, - "2030": 68360.12211423647, - "2031": 65362.10594799463, - "2032": 62364.08978175279, - "2033": 59366.07361551095, - "2034": 56368.05744926911, - "2035": 53370.04128302727, - "2036": 50372.02511678543, - "2037": 47374.00895054359, - "2038": 44375.99278430175, - "2039": 41377.97661805991, - "2040": 38379.96045181807, - "2041": 35381.94428557623, - "2042": 32383.928119334392, - "2043": 29385.911953092553, - "2044": 26387.895786850713, - "2045": 23389.879620608874, - "2046": 20391.863454367034, - "2047": 17393.847288125195, - "2048": 14395.831121883355, - "2049": 11397.814955641516, - "2050": 8399.798789399676 - }, - "trendEmission": 1231724.2327141375, - "historicalEmissionChangePercent": -2.8183046177765725, - "neededEmissionChangePercent": 32.907995355125415, - "hitNetZero": "2052-10-12", - "budgetRunsOut": "2026-08-17", - "electricCarChangePercent": 0.08345160061637033, - "electricCarChangeYearly": { - "2015": 0.013458950201884253, - "2016": 0.02364066193853428, - "2017": 0.029871977240398292, - "2018": 0.059422750424448216, - "2019": 0.08279220779220779, - "2020": 0.25795644891122277, - "2021": 0.45532646048109965, - "2022": 0.6054421768707483 - }, - "climatePlanLink": "https://www.mjolby.se/download/18.12cf806d18409781a5e22559/1667205317237/Energi-%20och%20klimatstrategi.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Energi och klimatstrategi. 2020–2023.", - "bicycleMetrePerCapita": 3.49516978, - "totalConsumptionEmission": 6184.6, - "electricVehiclePerChargePoints": 14.916666666666666 - }, - { - "kommun": "Mora", - "län": "Dalarnas län", - "emissions": { - "1990": 109691.064808843, - "2000": 102650.24462107, - "2005": 92741.6325973393, - "2010": 86642.6173634336, - "2015": 72779.156526889, - "2016": 72367.1945010175, - "2017": 69382.7450067716, - "2018": 62509.2691808808, - "2019": 63531.925313764, - "2020": 59626.5013600964, - "2021": 58397.5072941933 - }, - "budget": 135850.42375038165, - "emissionBudget": { - "2024": 49554.08123917319, - "2025": 34408.20992064601, - "2026": 23891.57220429573, - "2027": 16589.27400493956, - "2028": 11518.8740890598, - "2029": 7998.207772088496, - "2030": 5553.609412768425, - "2031": 3856.1860842402725, - "2032": 2677.568768538167, - "2033": 1859.1879005920616, - "2034": 1290.9396353599752, - "2035": 896.3726267864789, - "2036": 622.402368045693, - "2037": 432.1692744430086, - "2038": 300.0796451964738, - "2039": 208.36232186403706, - "2040": 144.67778094094712, - "2041": 100.45799120848368, - "2042": 69.75368250749534, - "2043": 48.43393905078969, - "2044": 33.630431651024836, - "2045": 23.35151662655884, - "2046": 16.214282778729572, - "2047": 11.258496406592883, - "2048": 7.817412775330668, - "2049": 5.428073189606083, - "2050": 3.7690191625417926 - }, - "approximatedHistoricalEmission": { - "2021": 58397.5072941933, - "2022": 54873.87793009728, - "2023": 52213.979584635235, - "2024": 49554.08123917319 - }, - "totalApproximatedHistoricalEmission": 161063.65178141577, - "trend": { - "2024": 49554.08123917319, - "2025": 46894.18289371114, - "2026": 44234.284548249096, - "2027": 41574.38620278705, - "2028": 38914.487857325, - "2029": 36254.589511862956, - "2030": 33594.69116640091, - "2031": 30934.792820938863, - "2032": 28274.894475476816, - "2033": 25614.99613001477, - "2034": 22955.097784552723, - "2035": 20295.199439090677, - "2036": 17635.30109362863, - "2037": 14975.402748166583, - "2038": 12315.504402704537, - "2039": 9655.60605724249, - "2040": 6995.707711780444, - "2041": 4335.809366318397, - "2042": 1675.9110208563507, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 461907.88585069403, - "historicalEmissionChangePercent": -3.5281696082497622, - "neededEmissionChangePercent": 30.5643267714429, - "hitNetZero": "2042-08-13", - "budgetRunsOut": "2026-12-24", - "electricCarChangePercent": 0.07610466370177843, - "electricCarChangeYearly": { - "2015": 0.007267441860465116, - "2016": 0.011435832274459974, - "2017": 0.029372496662216287, - "2018": 0.02857142857142857, - "2019": 0.04409171075837742, - "2020": 0.24102564102564103, - "2021": 0.3515625, - "2022": 0.5846501128668171 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas, men planeras att tas fram. Klimatarbetet har hittills ingått i Strategi Hållbara Mora, som genomgår revidering just nu.", - "bicycleMetrePerCapita": 2.867186548, - "totalConsumptionEmission": 6031.3, - "electricVehiclePerChargePoints": 15.872340425531915 - }, - { - "kommun": "Motala", - "län": "Östergötlands län", - "emissions": { - "1990": 155066.402972526, - "2000": 142192.945876458, - "2005": 130158.054361876, - "2010": 114052.602401752, - "2015": 94302.1630707694, - "2016": 91603.8635850887, - "2017": 82636.3950784187, - "2018": 80754.1760154517, - "2019": 80095.9965531589, - "2020": 72512.2292716382, - "2021": 74871.3006511838 - }, - "budget": 170859.69237876066, - "emissionBudget": { - "2024": 61178.82037276216, - "2025": 42765.700084474964, - "2026": 29894.415952641037, - "2027": 20897.029708019356, - "2028": 14607.606026143627, - "2029": 10211.123628404519, - "2030": 7137.859931870531, - "2031": 4989.562976720468, - "2032": 3487.843546424915, - "2033": 2438.099821787149, - "2034": 1704.2997089395092, - "2035": 1191.3529839652633, - "2036": 832.7889308190413, - "2037": 582.1426668915306, - "2038": 406.9339445737927, - "2039": 284.45816578024755, - "2040": 198.84418382401526, - "2041": 138.99762494842156, - "2042": 97.16321277167097, - "2043": 67.91979301528504, - "2044": 47.47782778735121, - "2045": 33.18832451238619, - "2046": 23.199563570448362, - "2047": 16.217141352176597, - "2048": 11.336233668269557, - "2049": 7.924343199016388, - "2050": 5.539336694475774 - }, - "approximatedHistoricalEmission": { - "2021": 74871.3006511838, - "2022": 68251.4099735422, - "2023": 64715.11517315172, - "2024": 61178.82037276216 - }, - "totalApproximatedHistoricalEmission": 200991.5856586669, - "trend": { - "2024": 61178.82037276216, - "2025": 57642.5255723726, - "2026": 54106.23077198211, - "2027": 50569.93597159255, - "2028": 47033.641171202995, - "2029": 43497.346370812505, - "2030": 39961.05157042295, - "2031": 36424.75677003339, - "2032": 32888.4619696429, - "2033": 29352.167169253342, - "2034": 25815.872368863784, - "2035": 22279.577568473294, - "2036": 18743.282768083736, - "2037": 15206.987967694178, - "2038": 11670.693167303689, - "2039": 8134.398366914131, - "2040": 4598.103566524573, - "2041": 1061.8087661340833, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 529576.2520636879, - "historicalEmissionChangePercent": -3.6597484894372108, - "neededEmissionChangePercent": 30.09721366985532, - "hitNetZero": "2041-04-15", - "budgetRunsOut": "2027-01-24", - "electricCarChangePercent": 0.06052378665984954, - "electricCarChangeYearly": { - "2015": 0.012234910277324634, - "2016": 0.01859504132231405, - "2017": 0.02830188679245283, - "2018": 0.04040404040404041, - "2019": 0.05010438413361169, - "2020": 0.2187192118226601, - "2021": 0.32097560975609757, - "2022": 0.43954104148278905 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.46608596, - "totalConsumptionEmission": 6026.2, - "electricVehiclePerChargePoints": 49.411764705882355 - }, - { - "kommun": "Mullsjö", - "län": "Jönköpings län", - "emissions": { - "1990": 25940.1177200633, - "2000": 24286.7489625568, - "2005": 22239.4261122533, - "2010": 21290.8248752075, - "2015": 17889.9532917492, - "2016": 17215.0816056568, - "2017": 17713.5442121024, - "2018": 17068.5809293998, - "2019": 16971.1910993257, - "2020": 15549.8613684589, - "2021": 15721.0330251436 - }, - "budget": 34993.69288144502, - "emissionBudget": { - "2024": 14608.559135907446, - "2025": 9622.893191925075, - "2026": 6338.754734242715, - "2027": 4175.439837012926, - "2028": 2750.429471317506, - "2029": 1811.7521918609978, - "2030": 1193.4303493122395, - "2031": 786.1317927793117, - "2032": 517.8376735387726, - "2033": 341.10801598292176, - "2034": 224.69334409886906, - "2035": 148.0091247250562, - "2036": 97.4959943283319, - "2037": 64.22218175891255, - "2038": 42.30418550309862, - "2039": 27.866448352670872, - "2040": 18.35607835388286, - "2041": 12.09144445928619, - "2042": 7.964829213156864, - "2043": 5.246561286235448, - "2044": 3.455994421670023, - "2045": 2.2765191886635487, - "2046": 1.499579855759434, - "2047": 0.9877974035965091, - "2048": 0.6506780594607677, - "2049": 0.42861211775018065, - "2050": 0.2823337052958849 - }, - "approximatedHistoricalEmission": { - "2021": 15721.0330251436, - "2022": 15364.241592120961, - "2023": 14986.400364014204, - "2024": 14608.559135907446 - }, - "totalApproximatedHistoricalEmission": 45515.43803666069, - "trend": { - "2024": 14608.559135907446, - "2025": 14230.717907800688, - "2026": 13852.87667969393, - "2027": 13475.035451587173, - "2028": 13097.194223480416, - "2029": 12719.352995373658, - "2030": 12341.5117672669, - "2031": 11963.670539160143, - "2032": 11585.829311053385, - "2033": 11207.988082946744, - "2034": 10830.146854839986, - "2035": 10452.305626733229, - "2036": 10074.464398626471, - "2037": 9696.623170519713, - "2038": 9318.781942412956, - "2039": 8940.940714306198, - "2040": 8563.09948619944, - "2041": 8185.258258092683, - "2042": 7807.417029985925, - "2043": 7429.575801879168, - "2044": 7051.73457377241, - "2045": 6673.893345665652, - "2046": 6296.052117558895, - "2047": 5918.210889452137, - "2048": 5540.369661345379, - "2049": 5162.528433238622, - "2050": 4784.687205131864 - }, - "trendEmission": 252112.20243351156, - "historicalEmissionChangePercent": -2.060444643347544, - "neededEmissionChangePercent": 34.128389375018756, - "hitNetZero": "2062-08-21", - "budgetRunsOut": "2026-06-23", - "electricCarChangePercent": 0.07766504804834294, - "electricCarChangeYearly": { - "2015": 0.030927835051546393, - "2016": 0.008130081300813009, - "2017": 0.0, - "2018": 0.048, - "2019": 0.08571428571428572, - "2020": 0.23, - "2021": 0.4369747899159664, - "2022": 0.5526315789473685 - }, - "climatePlanLink": "https://www.mullsjo.se/download/18.6cf2c3af17a7603c29e1ac4a/1625644095092/Milj%C3%B6program_Mullsj%C3%B6%20kommun-2021-2030.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Miljöprogram. 2021–2030.", - "bicycleMetrePerCapita": 4.702254358, - "totalConsumptionEmission": 6191.3, - "electricVehiclePerChargePoints": 8.8 - }, - { - "kommun": "Munkedal", - "län": "Västra Götalands län", - "emissions": { - "1990": 85398.002576266, - "2000": 74015.7094594203, - "2005": 69490.0141362055, - "2010": 91786.2446289112, - "2015": 68783.0661839837, - "2016": 81921.3849825591, - "2017": 97003.9217631314, - "2018": 101394.172469348, - "2019": 99370.8407602356, - "2020": 73329.2328599033, - "2021": 77022.5277997303 - }, - "budget": 177391.32408002223, - "emissionBudget": { - "2024": 87668.09231677698, - "2025": 53482.295685079014, - "2026": 32627.103843102977, - "2027": 19904.304621793133, - "2028": 12142.706394729057, - "2029": 7407.7101104630765, - "2030": 4519.105321073795, - "2031": 2756.899581439052, - "2032": 1681.8584127029924, - "2033": 1026.0249373694369, - "2034": 625.930913180777, - "2035": 381.8518379093268, - "2036": 232.95035129958316, - "2037": 142.11236082484172, - "2038": 86.69625517429353, - "2039": 52.889422268554384, - "2040": 32.26541887279681, - "2041": 19.683657154561082, - "2042": 12.008099461090904, - "2043": 7.325592573331259, - "2044": 4.469009165383024, - "2045": 2.72633820682104, - "2046": 1.6632143150539054, - "2047": 1.0146510256428427, - "2048": 0.6189922095546089, - "2049": 0.3776188520053458, - "2050": 0.23036800009557323 - }, - "approximatedHistoricalEmission": { - "2021": 77022.5277997303, - "2022": 86960.87805970327, - "2023": 87314.48518824019, - "2024": 87668.09231677698 - }, - "totalApproximatedHistoricalEmission": 256620.6733061971, - "trend": { - "2024": 87668.09231677698, - "2025": 88021.69944531389, - "2026": 88375.30657385068, - "2027": 88728.9137023876, - "2028": 89082.52083092439, - "2029": 89436.1279594613, - "2030": 89789.7350879981, - "2031": 90143.342216535, - "2032": 90496.9493450718, - "2033": 90850.55647360871, - "2034": 91204.1636021455, - "2035": 91557.77073068242, - "2036": 91911.37785921921, - "2037": 92264.98498775612, - "2038": 92618.59211629292, - "2039": 92972.19924482983, - "2040": 93325.80637336662, - "2041": 93679.41350190353, - "2042": 94033.02063044033, - "2043": 94386.62775897724, - "2044": 94740.23488751403, - "2045": 95093.84201605094, - "2046": 95447.44914458774, - "2047": 95801.05627312465, - "2048": 96154.66340166144, - "2049": 96508.27053019824, - "2050": 96861.87765873515 - }, - "trendEmission": 2398889.6096816584, - "historicalEmissionChangePercent": 3.145420963154026, - "neededEmissionChangePercent": 38.99457114701681, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2026-01-06", - "electricCarChangePercent": 0.07614390539753603, - "electricCarChangeYearly": { - "2015": 0.0027397260273972603, - "2016": 0.014423076923076924, - "2017": 0.019801980198019802, - "2018": 0.043010752688172046, - "2019": 0.09022556390977443, - "2020": 0.24615384615384617, - "2021": 0.355, - "2022": 0.5694444444444444 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Saknas", - "bicycleMetrePerCapita": 4.059255886, - "totalConsumptionEmission": 6009.4, - "electricVehiclePerChargePoints": 9.404761904761905 - }, - { - "kommun": "Munkfors", - "län": "Värmlands län", - "emissions": { - "1990": 21835.6008881532, - "2000": 16019.2267006121, - "2005": 12380.081667685, - "2010": 13217.3261105313, - "2015": 8702.19854025208, - "2016": 8436.48216135311, - "2017": 7583.29795078913, - "2018": 7130.55340278493, - "2019": 6770.21283373033, - "2020": 6756.50997497092, - "2021": 6579.59905935159 - }, - "budget": 15391.88850716418, - "emissionBudget": { - "2024": 5163.944574920577, - "2025": 3692.127869159507, - "2026": 2639.805289241313, - "2027": 1887.4134948887265, - "2028": 1349.4668395455408, - "2029": 964.8446172312614, - "2030": 689.846618027047, - "2031": 493.22797464422183, - "2032": 352.649166661716, - "2033": 252.13783714702694, - "2034": 180.2740370067696, - "2035": 128.89270720509685, - "2036": 92.1559767923485, - "2037": 65.88987261349139, - "2038": 47.11007863119499, - "2039": 33.68286233691926, - "2040": 24.082643208678405, - "2041": 17.218658501026624, - "2042": 12.311032389839013, - "2043": 8.802167630807512, - "2044": 6.293392182509623, - "2045": 4.4996626767536005, - "2046": 3.217178211273568, - "2047": 2.300224791641681, - "2048": 1.6446195220215925, - "2049": 1.175873498121946, - "2050": 0.8407284876966161 - }, - "approximatedHistoricalEmission": { - "2021": 6579.59905935159, - "2022": 5916.860855815234, - "2023": 5540.402715367847, - "2024": 5163.944574920577 - }, - "totalApproximatedHistoricalEmission": 17329.035388319164, - "trend": { - "2024": 5163.944574920577, - "2025": 4787.486434473307, - "2026": 4411.02829402592, - "2027": 4034.57015357865, - "2028": 3658.11201313138, - "2029": 3281.6538726839935, - "2030": 2905.1957322367234, - "2031": 2528.7375917894533, - "2032": 2152.2794513420667, - "2033": 1775.8213108947966, - "2034": 1399.3631704475265, - "2035": 1022.90503000014, - "2036": 646.4468895528698, - "2037": 269.9887491055997, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 35455.560980722716, - "historicalEmissionChangePercent": -4.501834533211457, - "neededEmissionChangePercent": 28.501791303283046, - "hitNetZero": "2037-09-15", - "budgetRunsOut": "2027-05-27", - "electricCarChangePercent": 0.05845845875138749, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.017543859649122806, - "2017": 0.0, - "2018": 0.06382978723404255, - "2019": 0.07317073170731707, - "2020": 0.1, - "2021": 0.37777777777777777, - "2022": 0.4 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 5.564399594, - "totalConsumptionEmission": 6768.9, - "electricVehiclePerChargePoints": 10000000000.0 - }, - { - "kommun": "Mölndal", - "län": "Västra Götalands län", - "emissions": { - "1990": 317618.468211827, - "2000": 294194.157244469, - "2005": 282073.226731784, - "2010": 236492.163500131, - "2015": 165326.602405812, - "2016": 172427.540771762, - "2017": 152097.59504448, - "2018": 147255.292555194, - "2019": 146183.190656388, - "2020": 131934.823632211, - "2021": 135435.135194512 - }, - "budget": 311239.43529196526, - "emissionBudget": { - "2024": 112256.97425838746, - "2025": 78266.01212051138, - "2026": 54567.37716044713, - "2027": 38044.59393671011, - "2028": 26524.843287837073, - "2029": 18493.226990797946, - "2030": 12893.55193627104, - "2031": 8989.4360576464, - "2032": 6267.470828359221, - "2033": 4369.705767128883, - "2034": 3046.576364564936, - "2035": 2124.0852450402394, - "2036": 1480.920741286571, - "2037": 1032.5038729465973, - "2038": 719.8658361173086, - "2039": 501.89334450629696, - "2040": 349.9220502230743, - "2041": 243.96705509766622, - "2042": 170.09480807249494, - "2043": 118.59078153661589, - "2044": 82.68196792621292, - "2045": 57.646199237168595, - "2046": 40.1911610214325, - "2047": 28.02143845780549, - "2048": 19.53665913820855, - "2049": 13.62103700912002, - "2050": 9.496641564522395 - }, - "approximatedHistoricalEmission": { - "2021": 135435.135194512, - "2022": 124869.41999418102, - "2023": 118563.19712628424, - "2024": 112256.97425838746 - }, - "totalApproximatedHistoricalEmission": 367278.671846915, - "trend": { - "2024": 112256.97425838746, - "2025": 105950.75139049068, - "2026": 99644.52852259576, - "2027": 93338.30565469898, - "2028": 87032.0827868022, - "2029": 80725.85991890728, - "2030": 74419.6370510105, - "2031": 68113.41418311372, - "2032": 61807.19131521694, - "2033": 55500.968447322026, - "2034": 49194.745579425246, - "2035": 42888.522711528465, - "2036": 36582.29984363355, - "2037": 30276.076975736767, - "2038": 23969.854107839987, - "2039": 17663.631239943206, - "2040": 11357.408372048289, - "2041": 5051.185504151508, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 999644.9507336589, - "historicalEmissionChangePercent": -3.083488915064071, - "neededEmissionChangePercent": 30.279599430176518, - "hitNetZero": "2041-10-15", - "budgetRunsOut": "2027-01-12", - "electricCarChangePercent": 0.08264060483353733, - "electricCarChangeYearly": { - "2015": 0.072496710132791, - "2016": 0.038907925279098046, - "2017": 0.07507655833251013, - "2018": 0.06672779136104319, - "2019": 0.062340454117963184, - "2020": 0.29051132027473925, - "2021": 0.5240857946554149, - "2022": 0.6259259259259259 - }, - "climatePlanLink": "https://www.molndal.se/download/18.5bcdb531818002396aa89b1/1658749356043/M%C3%B6lndals%20stad%20Energiplan%20f%C3%B6r%20minimerad%20klimatp%C3%A5verkan.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Energiplan för minimerad klimatpåverkan.", - "bicycleMetrePerCapita": 2.435578685, - "totalConsumptionEmission": 6112.1, - "electricVehiclePerChargePoints": 15.574585635359115 - }, - { - "kommun": "Mönsterås", - "län": "Kalmar län", - "emissions": { - "1990": 69188.0782570948, - "2000": 200141.589569012, - "2005": 100216.729432198, - "2010": 124390.670319659, - "2015": 64320.5336422862, - "2016": 69643.1159436731, - "2017": 55998.1855945748, - "2018": 59168.9737484121, - "2019": 56553.8513294004, - "2020": 48372.2317022613, - "2021": 49623.5862728977 - }, - "budget": 119583.17869499176, - "emissionBudget": { - "2024": 39223.58013560809, - "2025": 28255.14633108208, - "2026": 20353.911892558146, - "2027": 14662.168954130995, - "2028": 10562.058024732049, - "2029": 7608.497082989618, - "2030": 5480.866297676882, - "2031": 3948.2035736296375, - "2032": 2844.1327724832668, - "2033": 2048.802974988683, - "2034": 1475.8782258457923, - "2035": 1063.1654503224036, - "2036": 765.8631687661617, - "2037": 551.6981323035629, - "2038": 397.4219437626094, - "2039": 286.2873592204669, - "2040": 206.23031348864265, - "2041": 148.56032176003689, - "2042": 107.01709573195757, - "2043": 77.09096643854842, - "2044": 55.53334320821692, - "2045": 40.00406727732393, - "2046": 28.8173790064897, - "2047": 20.75892251272172, - "2048": 14.95392290159831, - "2049": 10.7722262564401, - "2050": 7.759894128351751 - }, - "approximatedHistoricalEmission": { - "2021": 49623.5862728977, - "2022": 45371.93333962001, - "2023": 42297.75673761405, - "2024": 39223.58013560809 - }, - "totalApproximatedHistoricalEmission": 132093.27328148694, - "trend": { - "2024": 39223.58013560809, - "2025": 36149.40353360213, - "2026": 33075.226931596175, - "2027": 30001.050329591148, - "2028": 26926.87372758519, - "2029": 23852.69712557923, - "2030": 20778.520523573272, - "2031": 17704.343921567313, - "2032": 14630.167319561355, - "2033": 11555.990717555396, - "2034": 8481.814115549438, - "2035": 5407.6375135444105, - "2036": 2333.460911538452, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 250508.97673864756, - "historicalEmissionChangePercent": -3.6591719075636875, - "neededEmissionChangePercent": 27.963877255989217, - "hitNetZero": "2036-10-01", - "budgetRunsOut": "2027-07-17", - "electricCarChangePercent": 0.06519788486631281, - "electricCarChangeYearly": { - "2015": 0.004761904761904762, - "2016": 0.0, - "2017": 0.017937219730941704, - "2018": 0.005263157894736842, - "2019": 0.03571428571428571, - "2020": 0.18354430379746836, - "2021": 0.3532934131736527, - "2022": 0.4594594594594595 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.988480191, - "totalConsumptionEmission": 6080.6, - "electricVehiclePerChargePoints": 17.166666666666668 - }, - { - "kommun": "Mörbylånga", - "län": "Kalmar län", - "emissions": { - "1990": 219728.768293925, - "2000": 259745.325040921, - "2005": 299893.525486403, - "2010": 58804.651909123, - "2015": 41702.07066093298, - "2016": 47068.44694023102, - "2017": 39677.74613877601, - "2018": 41923.285130870994, - "2019": 43351.231495289, - "2020": 40561.4476921646, - "2021": 41166.6984468059 - }, - "budget": 87522.09444079142, - "emissionBudget": { - "2024": 39861.56883315253, - "2025": 25278.819964891994, - "2026": 16030.948041511994, - "2027": 10166.269448754912, - "2028": 6447.0943475741915, - "2029": 4088.522907644716, - "2030": 2592.798967278219, - "2031": 1644.2628882301415, - "2032": 1042.734311348875, - "2033": 661.2658181652199, - "2034": 419.35177303992685, - "2035": 265.9383030559007, - "2036": 168.64881843606378, - "2037": 106.95121249195068, - "2038": 67.82473757937909, - "2039": 43.01208860121957, - "2040": 27.27676997900591, - "2041": 17.297978421501302, - "2042": 10.969776029237511, - "2043": 6.956650262787758, - "2044": 4.411665539000875, - "2045": 2.797724780289372, - "2046": 1.7742197084183047, - "2047": 1.1251484048457214, - "2048": 0.7135299686505335, - "2049": 0.45249587873898445, - "2050": 0.28695714163625774 - }, - "approximatedHistoricalEmission": { - "2021": 41166.6984468059, - "2022": 40643.47096043837, - "2023": 40252.51989679551, - "2024": 39861.56883315253 - }, - "totalApproximatedHistoricalEmission": 121410.1244972131, - "trend": { - "2024": 39861.56883315253, - "2025": 39470.61776950967, - "2026": 39079.66670586669, - "2027": 38688.71564222383, - "2028": 38297.764578580856, - "2029": 37906.813514937996, - "2030": 37515.86245129502, - "2031": 37124.91138765216, - "2032": 36733.96032400918, - "2033": 36343.00926036632, - "2034": 35952.058196723345, - "2035": 35561.107133080484, - "2036": 35170.15606943751, - "2037": 34779.20500579465, - "2038": 34388.25394215167, - "2039": 33997.30287850881, - "2040": 33606.35181486583, - "2041": 33215.40075122297, - "2042": 32824.449687579996, - "2043": 32433.498623937136, - "2044": 32042.54756029416, - "2045": 31651.5964966513, - "2046": 31260.64543300832, - "2047": 30869.69436936546, - "2048": 30478.743305722484, - "2049": 30087.792242079508, - "2050": 29696.841178436647 - }, - "trendEmission": 904259.3301506599, - "historicalEmissionChangePercent": 0.21479233078449403, - "neededEmissionChangePercent": 36.58347951456488, - "hitNetZero": "2125-11-22", - "budgetRunsOut": "2026-03-22", - "electricCarChangePercent": 0.07017005932384283, - "electricCarChangeYearly": { - "2015": 0.0071174377224199285, - "2016": 0.07455012853470437, - "2017": 0.025236593059936908, - "2018": 0.029535864978902954, - "2019": 0.06439393939393939, - "2020": 0.19282511210762332, - "2021": 0.3484848484848485, - "2022": 0.5766871165644172 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Ny Miljö– och klimatstrategi 2023–2030 på väg.", - "bicycleMetrePerCapita": 1.776288274, - "totalConsumptionEmission": 6056.4, - "electricVehiclePerChargePoints": 21.59259259259259 - }, - { - "kommun": "Nacka", - "län": "Stockholms län", - "emissions": { - "1990": 168464.467388288, - "2000": 144670.431507586, - "2005": 126443.222636513, - "2010": 112891.364997748, - "2015": 101679.613006958, - "2016": 97945.133084173, - "2017": 99285.5194227151, - "2018": 99850.5609058956, - "2019": 97773.2410164195, - "2020": 87960.5312273053, - "2021": 89603.7420854587 - }, - "budget": 199689.6721202047, - "emissionBudget": { - "2024": 83933.5283460184, - "2025": 55130.62281971452, - "2026": 36211.81704598039, - "2027": 23785.2508588501, - "2028": 15623.02597795843, - "2029": 10261.777021247866, - "2030": 6740.311882114113, - "2031": 4427.284297261416, - "2032": 2908.0028627146653, - "2033": 1910.0830400224374, - "2034": 1254.612664437168, - "2035": 824.0756578560263, - "2036": 541.2831458827131, - "2037": 355.53464202418394, - "2038": 233.52820541479514, - "2039": 153.389898699506, - "2040": 100.75211677858461, - "2041": 66.17768915312702, - "2042": 43.46793577818689, - "2043": 28.55133603176443, - "2044": 18.753565693998365, - "2045": 12.318030436398372, - "2046": 8.090934615202045, - "2047": 5.314422892968208, - "2048": 3.49070806137015, - "2049": 2.2928252070111363, - "2050": 1.5060117711024472 - }, - "approximatedHistoricalEmission": { - "2021": 89603.7420854587, - "2022": 88055.60655205604, - "2023": 85994.56744903699, - "2024": 83933.5283460184 - }, - "totalApproximatedHistoricalEmission": 260818.80921683158, - "trend": { - "2024": 83933.5283460184, - "2025": 81872.48924299935, - "2026": 79811.45013998076, - "2027": 77750.41103696171, - "2028": 75689.37193394313, - "2029": 73628.33283092408, - "2030": 71567.29372790502, - "2031": 69506.25462488644, - "2032": 67445.21552186739, - "2033": 65384.1764188488, - "2034": 63323.13731582975, - "2035": 61262.098212811165, - "2036": 59201.05910979211, - "2037": 57140.02000677306, - "2038": 55078.98090375494, - "2039": 53017.94180073589, - "2040": 50956.90269771684, - "2041": 48895.86359469779, - "2042": 46834.82449167967, - "2043": 44773.78538866062, - "2044": 42712.746285641566, - "2045": 40651.707182622515, - "2046": 38590.668079604395, - "2047": 36529.62897658534, - "2048": 34468.58987356629, - "2049": 32407.55077054724, - "2050": 30346.51166752819 - }, - "trendEmission": 1485640.5201761092, - "historicalEmissionChangePercent": -1.997278961361583, - "neededEmissionChangePercent": 34.31632875906642, - "hitNetZero": "2064-09-11", - "budgetRunsOut": "2026-06-15", - "electricCarChangePercent": 0.0938950133601959, - "electricCarChangeYearly": { - "2015": 0.03907103825136612, - "2016": 0.07332490518331226, - "2017": 0.08524371244157579, - "2018": 0.15449183303085298, - "2019": 0.21615339918651946, - "2020": 0.4942429970785358, - "2021": 0.5308678355679977, - "2022": 0.6549006168608636 - }, - "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab5d7343c933175d7561/1670425438238/Viable-Cities-Klimatkontrakt-Nacka-FINAL.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities.", - "bicycleMetrePerCapita": 1.620929483, - "totalConsumptionEmission": 6684.8, - "electricVehiclePerChargePoints": 45.32390745501285 - }, - { - "kommun": "Nora", - "län": "Örebro län", - "emissions": { - "1990": 49081.8298569501, - "2000": 40691.8409878484, - "2005": 35934.8254261565, - "2010": 31937.6612851067, - "2015": 26328.8218362731, - "2016": 25135.550218529, - "2017": 25310.2708682208, - "2018": 22520.6684668028, - "2019": 21989.4201454407, - "2020": 20076.4035160997, - "2021": 20293.7181386378 - }, - "budget": 47887.38182367819, - "emissionBudget": { - "2024": 16334.02433702629, - "2025": 11613.379818033964, - "2026": 8257.033785127358, - "2027": 5870.6946639997705, - "2028": 4174.023836500966, - "2029": 2967.702458538035, - "2030": 2110.0161923837295, - "2031": 1500.2071111653102, - "2032": 1066.6370165853514, - "2033": 758.3716386108588, - "2034": 539.1970588930881, - "2035": 383.36542865910013, - "2036": 272.5702031696664, - "2037": 193.79555406394806, - "2038": 137.78731621509905, - "2039": 97.96584138093773, - "2040": 69.65304456973932, - "2041": 49.52283928200009, - "2042": 35.21040071830973, - "2043": 25.034354587067536, - "2044": 17.79925524292968, - "2045": 12.655148991403264, - "2046": 8.997724556943583, - "2047": 6.397320747280152, - "2048": 4.548451387300859, - "2049": 3.2339178915540403, - "2050": 2.299293548242016 - }, - "approximatedHistoricalEmission": { - "2021": 20293.7181386378, - "2022": 18587.19970992254, - "2023": 17460.61202347465, - "2024": 16334.02433702629 - }, - "totalApproximatedHistoricalEmission": 54361.68297122924, - "trend": { - "2024": 16334.02433702629, - "2025": 15207.436650578398, - "2026": 14080.848964130506, - "2027": 12954.261277682614, - "2028": 11827.673591234256, - "2029": 10701.085904786363, - "2030": 9574.49821833847, - "2031": 8447.910531890579, - "2032": 7321.322845442221, - "2033": 6194.735158994328, - "2034": 5068.147472546436, - "2035": 3941.559786098078, - "2036": 2814.9720996501856, - "2037": 1688.3844132022932, - "2038": 561.7967267544009, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 118551.64580984227, - "historicalEmissionChangePercent": -4.1391514392205435, - "neededEmissionChangePercent": 28.90068253597172, - "hitNetZero": "2038-06-28", - "budgetRunsOut": "2027-04-23", - "electricCarChangePercent": 0.07832037383929294, - "electricCarChangeYearly": { - "2015": 0.01507537688442211, - "2016": 0.010526315789473684, - "2017": 0.03048780487804878, - "2018": 0.042328042328042326, - "2019": 0.08866995073891626, - "2020": 0.23369565217391305, - "2021": 0.3515151515151515, - "2022": 0.6176470588235294 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.316199818, - "totalConsumptionEmission": 6066.4, - "electricVehiclePerChargePoints": 10.272727272727273 - }, - { - "kommun": "Norberg", - "län": "Västmanlands län", - "emissions": { - "1990": 36596.1786698589, - "2000": 32024.8933873876, - "2005": 26131.7638382855, - "2010": 24822.6372445789, - "2015": 20579.582024379, - "2016": 19225.7932702333, - "2017": 16763.8699017621, - "2018": 16878.0073493709, - "2019": 17183.6456484742, - "2020": 15474.3418730182, - "2021": 15596.1794677321 - }, - "budget": 36051.88604455163, - "emissionBudget": { - "2024": 12664.488208354218, - "2025": 8913.053016486827, - "2026": 6272.856255043934, - "2027": 4414.730342527854, - "2028": 3107.012691637009, - "2029": 2186.6630840392145, - "2030": 1538.936566294048, - "2031": 1083.0775771373671, - "2032": 762.2517157563017, - "2033": 536.4598902593049, - "2034": 377.55141498301856, - "2035": 265.71431255890997, - "2036": 187.00524775368592, - "2037": 131.61113660245255, - "2038": 92.62569626176716, - "2039": 65.18840144882745, - "2040": 45.87849651833122, - "2041": 32.288511391628695, - "2042": 22.724109266980346, - "2043": 15.992844504796308, - "2044": 11.25549399316813, - "2045": 7.921426672550347, - "2046": 5.574966373459892, - "2047": 3.92356722469061, - "2048": 2.7613403804465317, - "2049": 1.9433847465901075, - "2050": 1.3677213790892224 - }, - "approximatedHistoricalEmission": { - "2021": 15596.1794677321, - "2022": 14238.2978310443, - "2023": 13451.393019699259, - "2024": 12664.488208354218 - }, - "totalApproximatedHistoricalEmission": 41820.02468878672, - "trend": { - "2024": 12664.488208354218, - "2025": 11877.58339700941, - "2026": 11090.67858566437, - "2027": 10303.773774319561, - "2028": 9516.86896297452, - "2029": 8729.964151629712, - "2030": 7943.059340284672, - "2031": 7156.154528939864, - "2032": 6369.249717594823, - "2033": 5582.344906249782, - "2034": 4795.440094904974, - "2035": 4008.5352835599333, - "2036": 3221.6304722151253, - "2037": 2434.7256608700845, - "2038": 1647.8208495252766, - "2039": 860.9160381802358, - "2040": 74.01122683519498, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 101945.00109493465, - "historicalEmissionChangePercent": -4.341970438623122, - "neededEmissionChangePercent": 29.62168806310494, - "hitNetZero": "2040-01-31", - "budgetRunsOut": "2027-02-27", - "electricCarChangePercent": 0.08162202620088913, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.018867924528301886, - "2017": 0.024691358024691357, - "2018": 0.030303030303030304, - "2019": 0.1267605633802817, - "2020": 0.3088235294117647, - "2021": 0.4262295081967213, - "2022": 0.5529411764705883 - }, - "climatePlanLink": "https://opengov.360online.com/Meetings/NORBERG/File/Details/245611.PDF?fileName=Energi-%20och%20klimatstrategi%20f%C3%B6r%20Norbergs%20kommun%202020-2030&fileSize=1674737", - "climatePlanYear": 2021, - "climatePlanComment": "Energi– och Klimatstrategi. 2020–2030.", - "bicycleMetrePerCapita": 3.706902197, - "totalConsumptionEmission": 6173.4, - "electricVehiclePerChargePoints": 82.5 - }, - { - "kommun": "Nordanstig", - "län": "Gävleborgs län", - "emissions": { - "1990": 73102.6840231177, - "2000": 66074.8367235545, - "2005": 65457.7091416699, - "2010": 57379.8265386181, - "2015": 50388.5605051862, - "2016": 49184.7065540763, - "2017": 45594.840122593, - "2018": 43740.9067022718, - "2019": 43380.4967328849, - "2020": 39084.2286188825, - "2021": 39224.6787840837 - }, - "budget": 92009.27002216871, - "emissionBudget": { - "2024": 32391.14305498218, - "2025": 22779.08643020897, - "2026": 16019.403134805978, - "2027": 11265.652710949276, - "2028": 7922.575512689721, - "2029": 5571.55491694381, - "2030": 3918.19858867863, - "2031": 2755.4749812543296, - "2032": 1937.7890631314535, - "2033": 1362.751060611168, - "2034": 958.3553176813884, - "2035": 673.963823235837, - "2036": 473.9653723940386, - "2037": 333.3163687481954, - "2038": 234.4048914677218, - "2039": 164.84534903085782, - "2040": 115.9275684349245, - "2041": 81.52611646154713, - "2042": 57.33327934875761, - "2043": 40.31965538838202, - "2044": 28.354816419080525, - "2045": 19.940537844761117, - "2046": 14.023192520857961, - "2047": 9.861816667533448, - "2048": 6.935327161727521, - "2049": 4.877272054604686, - "2050": 3.4299438425774964 - }, - "approximatedHistoricalEmission": { - "2021": 39224.6787840837, - "2022": 36384.49622808257, - "2023": 34387.81964153238, - "2024": 32391.14305498218 - }, - "totalApproximatedHistoricalEmission": 106580.22678914788, - "trend": { - "2024": 32391.14305498218, - "2025": 30394.466468431987, - "2026": 28397.789881881792, - "2027": 26401.113295332063, - "2028": 24404.43670878187, - "2029": 22407.760122231673, - "2030": 20411.08353568148, - "2031": 18414.40694913175, - "2032": 16417.730362581555, - "2033": 14421.05377603136, - "2034": 12424.377189481165, - "2035": 10427.70060293097, - "2036": 8431.024016381241, - "2037": 6434.347429831047, - "2038": 4437.670843280852, - "2039": 2440.994256730657, - "2040": 444.3176701804623, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 262905.844636393, - "historicalEmissionChangePercent": -4.020381496905394, - "neededEmissionChangePercent": 29.6749534539651, - "hitNetZero": "2040-03-18", - "budgetRunsOut": "2027-02-23", - "electricCarChangePercent": 0.07440985234652259, - "electricCarChangeYearly": { - "2015": 0.020202020202020204, - "2016": 0.023076923076923078, - "2017": 0.03669724770642202, - "2018": 0.04819277108433735, - "2019": 0.06422018348623854, - "2020": 0.20454545454545456, - "2021": 0.41975308641975306, - "2022": 0.5555555555555556 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Inom projektet One Planet City Challenge kommer en strategi tas fram.", - "bicycleMetrePerCapita": 1.186808953, - "totalConsumptionEmission": 6042.8, - "electricVehiclePerChargePoints": 20.90909090909091 - }, - { - "kommun": "Nordmaling", - "län": "Västerbottens län", - "emissions": { - "1990": 48245.8346405811, - "2000": 42278.758857396, - "2005": 46367.5651262515, - "2010": 44885.9450868107, - "2015": 36227.1366718942, - "2016": 36584.4227133103, - "2017": 39560.6595747386, - "2018": 38608.8798890543, - "2019": 38559.1696294569, - "2020": 33537.9653527795, - "2021": 33896.0681128131 - }, - "budget": 76124.0771509895, - "emissionBudget": { - "2024": 33691.84091838088, - "2025": 21642.621199448513, - "2026": 13902.566307300733, - "2027": 8930.588774238613, - "2028": 5736.740547870959, - "2029": 3685.1088932143316, - "2030": 2367.202672236454, - "2031": 1520.6195132420185, - "2032": 976.8000565274051, - "2033": 627.466859476032, - "2034": 403.0657626499314, - "2035": 258.9172743820051, - "2036": 166.3206384304839, - "2037": 106.839355674317, - "2038": 68.63037581276558, - "2039": 44.08608096214588, - "2040": 28.31956712437768, - "2041": 18.191634742964826, - "2042": 11.68575681852754, - "2043": 7.506577300567952, - "2044": 4.821998578651076, - "2045": 3.0975062750308013, - "2046": 1.9897444943957698, - "2047": 1.2781517780585963, - "2048": 0.82104610534452, - "2049": 0.5274152246029268, - "2050": 0.33879561370823913 - }, - "approximatedHistoricalEmission": { - "2021": 33896.0681128131, - "2022": 34698.09880006558, - "2023": 34194.96985922323, - "2024": 33691.84091838088 - }, - "totalApproximatedHistoricalEmission": 102687.0231748858, - "trend": { - "2024": 33691.84091838088, - "2025": 33188.711977538536, - "2026": 32685.583036696073, - "2027": 32182.454095853725, - "2028": 31679.32515501138, - "2029": 31176.19621416903, - "2030": 30673.067273326684, - "2031": 30169.93833248422, - "2032": 29666.809391641873, - "2033": 29163.680450799526, - "2034": 28660.55150995718, - "2035": 28157.42256911483, - "2036": 27654.293628272368, - "2037": 27151.16468743002, - "2038": 26648.035746587673, - "2039": 26144.906805745326, - "2040": 25641.77786490298, - "2041": 25138.648924060515, - "2042": 24635.519983218168, - "2043": 24132.39104237582, - "2044": 23629.262101533473, - "2045": 23126.133160691126, - "2046": 22623.004219848663, - "2047": 22119.875279006315, - "2048": 21616.746338163968, - "2049": 21113.61739732162, - "2050": 20610.488456479274 - }, - "trendEmission": 705930.2818731812, - "historicalEmissionChangePercent": -0.8945756862743416, - "neededEmissionChangePercent": 35.763019741550565, - "hitNetZero": "2090-12-02", - "budgetRunsOut": "2026-04-20", - "electricCarChangePercent": 0.08463110138607759, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.009433962264150943, - "2017": 0.009708737864077669, - "2018": 0.03409090909090909, - "2019": 0.043478260869565216, - "2020": 0.24489795918367346, - "2021": 0.4230769230769231, - "2022": 0.6179775280898876 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.052393812, - "totalConsumptionEmission": 6118.7, - "electricVehiclePerChargePoints": 38.8 - }, - { - "kommun": "Norrköping", - "län": "Östergötlands län", - "emissions": { - "1990": 517937.4408886, - "2000": 753747.793191751, - "2005": 701648.423264518, - "2010": 752982.796407982, - "2015": 575029.197615897, - "2016": 587981.674412033, - "2017": 562126.750235607, - "2018": 567506.055574675, - "2019": 561072.598453251, - "2020": 511529.0569374, - "2021": 543303.129520453 - }, - "budget": 1157838.1280766942, - "emissionBudget": { - "2024": 504977.43946033716, - "2025": 326482.2399151613, - "2026": 211080.0298206054, - "2027": 136469.22724080042, - "2028": 88231.22679833537, - "2029": 57043.991086745686, - "2030": 36880.558473274155, - "2031": 23844.32728825376, - "2032": 15416.0340126457, - "2033": 9966.90331440479, - "2034": 6443.8857359296035, - "2035": 4166.154929756807, - "2036": 2693.537348429262, - "2037": 1741.4483065820225, - "2038": 1125.895731969664, - "2039": 727.9235303605029, - "2040": 470.6232122627634, - "2041": 304.2712574641341, - "2042": 196.71999958028954, - "2043": 127.18506032213942, - "2044": 82.2287495102609, - "2045": 53.16321924049305, - "2046": 34.371529384136416, - "2047": 22.222168805472034, - "2048": 14.367262535801231, - "2049": 9.288842802859493, - "2050": 6.005500379855265 - }, - "approximatedHistoricalEmission": { - "2021": 543303.129520453, - "2022": 522772.98167590424, - "2023": 513875.21056812257, - "2024": 504977.43946033716 - }, - "totalApproximatedHistoricalEmission": 1560788.476734422, - "trend": { - "2024": 504977.43946033716, - "2025": 496079.66835255176, - "2026": 487181.8972447701, - "2027": 478284.1261369847, - "2028": 469386.355029203, - "2029": 460488.5839214176, - "2030": 451590.8128136322, - "2031": 442693.0417058505, - "2032": 433795.2705980651, - "2033": 424897.4994902797, - "2034": 415999.728382498, - "2035": 407101.9572747126, - "2036": 398204.18616693094, - "2037": 389306.41505914554, - "2038": 380408.64395136014, - "2039": 371510.87284357846, - "2040": 362613.10173579305, - "2041": 353715.33062800765, - "2042": 344817.559520226, - "2043": 335919.78841244057, - "2044": 327022.0173046589, - "2045": 318124.2461968735, - "2046": 309226.4750890881, - "2047": 300328.7039813064, - "2048": 291430.932873521, - "2049": 282533.1617657356, - "2050": 273635.3906579539 - }, - "trendEmission": 10121966.791537777, - "historicalEmissionChangePercent": -0.8233307650047372, - "neededEmissionChangePercent": 35.34716317939498, - "hitNetZero": "2080-09-17", - "budgetRunsOut": "2026-05-05", - "electricCarChangePercent": 0.06870100704679302, - "electricCarChangeYearly": { - "2015": 0.01238390092879257, - "2016": 0.020166898470097356, - "2017": 0.035876475930971846, - "2018": 0.04690882848207842, - "2019": 0.07264854462352659, - "2020": 0.23770758710517748, - "2021": 0.3519687406071536, - "2022": 0.5096185197261167 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete pågår med Färdplan för ett fossilfritt Norrköping 2030", - "bicycleMetrePerCapita": 2.278943414, - "totalConsumptionEmission": 5986.6, - "electricVehiclePerChargePoints": 26.195454545454545 - }, - { - "kommun": "Norrtälje", - "län": "Stockholms län", - "emissions": { - "1990": 336569.636728402, - "2000": 299657.602493262, - "2005": 277303.02170194, - "2010": 221455.656973771, - "2015": 177351.626713251, - "2016": 171996.135458601, - "2017": 167323.01059202, - "2018": 168552.569297901, - "2019": 162606.986655903, - "2020": 148077.874180643, - "2021": 152121.872219682 - }, - "budget": 340083.5388939698, - "emissionBudget": { - "2024": 136523.90859412774, - "2025": 91382.81870342279, - "2026": 61167.451475541995, - "2027": 40942.6758016236, - "2028": 27405.142136208324, - "2029": 18343.740383377637, - "2030": 12278.455246841331, - "2031": 8218.632628779376, - "2032": 5501.174286904977, - "2033": 3682.232787596822, - "2034": 2464.7170940081983, - "2035": 1649.768144468918, - "2036": 1104.2788387847986, - "2037": 739.1534124817609, - "2038": 494.7552628869162, - "2039": 331.16639390519214, - "2040": 221.6675368185743, - "2041": 148.37404333146497, - "2042": 99.31475330348303, - "2043": 66.4767233019119, - "2044": 44.496457917536596, - "2045": 29.783880264600274, - "2046": 19.935958166828268, - "2047": 13.344212523641797, - "2048": 8.932001481243516, - "2049": 5.978670552465327, - "2050": 4.001846803314654 - }, - "approximatedHistoricalEmission": { - "2021": 152121.872219682, - "2022": 145684.03787789308, - "2023": 141103.97323600948, - "2024": 136523.90859412774 - }, - "totalApproximatedHistoricalEmission": 431110.9015208074, - "trend": { - "2024": 136523.90859412774, - "2025": 131943.84395224415, - "2026": 127363.77931036055, - "2027": 122783.71466847695, - "2028": 118203.65002659336, - "2029": 113623.58538470976, - "2030": 109043.52074282616, - "2031": 104463.45610094257, - "2032": 99883.39145905897, - "2033": 95303.32681717537, - "2034": 90723.26217529178, - "2035": 86143.19753340818, - "2036": 81563.13289152458, - "2037": 76983.06824964099, - "2038": 72403.00360775739, - "2039": 67822.9389658738, - "2040": 63242.87432399206, - "2041": 58662.80968210846, - "2042": 54082.745040224865, - "2043": 49502.68039834127, - "2044": 44922.61575645767, - "2045": 40342.551114574075, - "2046": 35762.48647269048, - "2047": 31182.42183080688, - "2048": 26602.357188923284, - "2049": 22022.292547039688, - "2050": 17442.22790515609 - }, - "trendEmission": 2001559.7744906852, - "historicalEmissionChangePercent": -2.4555676271958595, - "neededEmissionChangePercent": 33.06460410894402, - "hitNetZero": "2053-10-15", - "budgetRunsOut": "2026-08-09", - "electricCarChangePercent": 0.06271267374618099, - "electricCarChangeYearly": { - "2015": 0.00401965163019205, - "2016": 0.0210727969348659, - "2017": 0.023076923076923078, - "2018": 0.0321285140562249, - "2019": 0.07045215562565721, - "2020": 0.2041851616994293, - "2021": 0.30424799081515497, - "2022": 0.47121111846459296 - }, - "climatePlanLink": "https://www.norrtalje.se/globalassets/bo--miljo/miljo--och-klimatstrategi---tillganglighetsanpassad.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Miljö– och klimatstrategi.", - "bicycleMetrePerCapita": 1.818370128, - "totalConsumptionEmission": 6411.6, - "electricVehiclePerChargePoints": 25.217821782178216 - }, - { - "kommun": "Norsjö", - "län": "Västerbottens län", - "emissions": { - "1990": 27224.0253982225, - "2000": 24583.8843392498, - "2005": 24131.0544741898, - "2010": 25074.8999635555, - "2015": 21667.9088727906, - "2016": 19288.7162847633, - "2017": 18644.049785611, - "2018": 17192.1855400553, - "2019": 17822.7122205345, - "2020": 15294.6491567589, - "2021": 15373.6263462622 - }, - "budget": 37113.11697129176, - "emissionBudget": { - "2024": 11963.624157967279, - "2025": 8666.933550549758, - "2026": 6278.6774457154, - "2027": 4548.52806213504, - "2028": 3295.1378233561422, - "2029": 2387.13120521359, - "2030": 1729.334460766377, - "2031": 1252.7998757096175, - "2032": 907.5789352410674, - "2033": 657.4869136435261, - "2034": 476.31013108261106, - "2035": 345.0583369252251, - "2036": 249.9742250096115, - "2037": 181.0914459449706, - "2038": 131.18997285891885, - "2039": 95.03932606487575, - "2040": 68.85033438172327, - "2041": 49.87796884459423, - "2042": 36.13361937023096, - "2043": 26.17665632818234, - "2044": 18.963429306732873, - "2045": 13.737875707383226, - "2046": 9.952273183231824, - "2047": 7.20982949790727, - "2048": 5.223092295785809, - "2049": 3.7838194562320173, - "2050": 2.7411519587566353 - }, - "approximatedHistoricalEmission": { - "2021": 15373.6263462622, - "2022": 13941.64697230095, - "2023": 12952.635565133998, - "2024": 11963.624157967279 - }, - "totalApproximatedHistoricalEmission": 40562.90778954969, - "trend": { - "2024": 11963.624157967279, - "2025": 10974.61275080056, - "2026": 9985.60134363384, - "2027": 8996.589936466888, - "2028": 8007.578529300168, - "2029": 7018.567122133449, - "2030": 6029.555714966729, - "2031": 5040.544307799777, - "2032": 4051.5329006330576, - "2033": 3062.521493466338, - "2034": 2073.5100862996187, - "2035": 1084.4986791326664, - "2036": 95.487271965947, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 72402.41221558268, - "historicalEmissionChangePercent": -5.3517242929244135, - "neededEmissionChangePercent": 27.55595264351447, - "hitNetZero": "2036-02-02", - "budgetRunsOut": "2027-08-27", - "electricCarChangePercent": 0.10225475436076072, - "electricCarChangeYearly": { - "2015": 0.03278688524590164, - "2016": 0.0, - "2017": 0.0, - "2018": 0.025, - "2019": 0.075, - "2020": 0.3333333333333333, - "2021": 0.38235294117647056, - "2022": 0.8367346938775511 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 1.847955759, - "totalConsumptionEmission": 6011.2, - "electricVehiclePerChargePoints": 12.75 - }, - { - "kommun": "Nybro", - "län": "Kalmar län", - "emissions": { - "1990": 95300.6875167068, - "2000": 96408.6450447339, - "2005": 86099.360221836, - "2010": 70396.3850332982, - "2015": 59374.5311168082, - "2016": 69660.7866356274, - "2017": 68445.6937513486, - "2018": 66678.1573308099, - "2019": 65055.7470163714, - "2020": 64274.4132610901, - "2021": 69235.9040374478 - }, - "budget": 137074.1396377142, - "emissionBudget": { - "2024": 69408.19586661423, - "2025": 41831.50699639884, - "2026": 25211.35949063712, - "2027": 15194.591182690518, - "2028": 9157.60220288152, - "2029": 5519.179627666101, - "2030": 3326.3449413493404, - "2031": 2004.7491502861683, - "2032": 1208.2388406605805, - "2033": 728.1914028358307, - "2034": 438.8724326012429, - "2035": 264.50327667594814, - "2036": 159.41302796724145, - "2037": 96.07636549931377, - "2038": 57.90410059493114, - "2039": 34.89812346962534, - "2040": 21.03269041722804, - "2041": 12.676156257283862, - "2042": 7.639770959946167, - "2043": 4.6044005087819, - "2044": 2.775018276911857, - "2045": 1.6724710247310979, - "2046": 1.0079787048025737, - "2047": 0.6074969636611989, - "2048": 0.36613130723814247, - "2049": 0.2206630520949763, - "2050": 0.13299103790706274 - }, - "approximatedHistoricalEmission": { - "2021": 69235.9040374478, - "2022": 68306.6654896239, - "2023": 68857.43067811907, - "2024": 69408.19586661423 - }, - "totalApproximatedHistoricalEmission": 206486.146119774, - "trend": { - "2024": 69408.19586661423, - "2025": 69958.9610551094, - "2026": 70509.72624360432, - "2027": 71060.49143209949, - "2028": 71611.25662059465, - "2029": 72162.02180908981, - "2030": 72712.78699758498, - "2031": 73263.55218608014, - "2032": 73814.3173745753, - "2033": 74365.08256307046, - "2034": 74915.84775156563, - "2035": 75466.61294006079, - "2036": 76017.37812855595, - "2037": 76568.14331705112, - "2038": 77118.90850554628, - "2039": 77669.67369404144, - "2040": 78220.4388825366, - "2041": 78771.20407103177, - "2042": 79321.96925952693, - "2043": 79872.73444802209, - "2044": 80423.49963651726, - "2045": 80974.26482501242, - "2046": 81525.03001350758, - "2047": 82075.79520200274, - "2048": 82626.5603904979, - "2049": 83177.32557899307, - "2050": 83728.09076748823 - }, - "trendEmission": 1990771.7262433292, - "historicalEmissionChangePercent": 2.8471130119328287, - "neededEmissionChangePercent": 39.73117083061938, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-12-17", - "electricCarChangePercent": 0.06330461512168965, - "electricCarChangeYearly": { - "2015": 0.011695906432748537, - "2016": 0.008875739644970414, - "2017": 0.042483660130718956, - "2018": 0.03184713375796178, - "2019": 0.07692307692307693, - "2020": 0.1519434628975265, - "2021": 0.3191489361702128, - "2022": 0.4963768115942029 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Senaste gällde fram till 2022.", - "bicycleMetrePerCapita": 4.169016844, - "totalConsumptionEmission": 5901.6, - "electricVehiclePerChargePoints": 47.1 - }, - { - "kommun": "Nykvarn", - "län": "Stockholms län", - "emissions": { - "1990": 46243.5412106453, - "2000": 44312.1208191897, - "2005": 42922.4818952467, - "2010": 49485.1010813158, - "2015": 44275.3645138667, - "2016": 42674.5279068433, - "2017": 46564.1859190968, - "2018": 42286.1380849706, - "2019": 42042.0748638408, - "2020": 38093.3022720488, - "2021": 38141.8121612654 - }, - "budget": 87115.21328079567, - "emissionBudget": { - "2024": 35135.653806851245, - "2025": 23473.97642313504, - "2026": 15682.860838253495, - "2027": 10477.650639097696, - "2028": 7000.072502537747, - "2029": 4676.717780409302, - "2030": 3124.4946662577163, - "2031": 2087.4612020352706, - "2032": 1394.623686530921, - "2033": 931.7419768744683, - "2034": 622.4927339570854, - "2035": 415.88466919696714, - "2036": 277.8507260214778, - "2037": 185.6308531394775, - "2038": 124.01915996658786, - "2039": 82.8566576013174, - "2040": 55.356170052365385, - "2041": 36.98321476604763, - "2042": 24.70832380812733, - "2043": 16.50752292003941, - "2044": 11.028603764128816, - "2045": 7.368161872336549, - "2046": 4.9226366762341165, - "2047": 3.2887920034960962, - "2048": 2.197227533463703, - "2049": 1.4679580918096593, - "2050": 0.9807363718551608 - }, - "approximatedHistoricalEmission": { - "2021": 38141.8121612654, - "2022": 37427.45519132633, - "2023": 36281.55449908879, - "2024": 35135.653806851245 - }, - "totalApproximatedHistoricalEmission": 110347.74267447344, - "trend": { - "2024": 35135.653806851245, - "2025": 33989.75311461417, - "2026": 32843.85242237663, - "2027": 31697.951730139088, - "2028": 30552.051037901547, - "2029": 29406.150345664006, - "2030": 28260.24965342693, - "2031": 27114.34896118939, - "2032": 25968.448268951848, - "2033": 24822.547576714307, - "2034": 23676.646884476766, - "2035": 22530.746192239225, - "2036": 21384.84550000215, - "2037": 20238.94480776461, - "2038": 19093.044115527067, - "2039": 17947.143423289526, - "2040": 16801.242731051985, - "2041": 15655.34203881491, - "2042": 14509.441346577369, - "2043": 13363.540654339828, - "2044": 12217.639962102287, - "2045": 11071.739269864745, - "2046": 9925.83857762767, - "2047": 8779.937885390129, - "2048": 7634.037193152588, - "2049": 6488.136500915047, - "2050": 5342.235808677506 - }, - "trendEmission": 526212.5650018782, - "historicalEmissionChangePercent": -2.2551013273896428, - "neededEmissionChangePercent": 33.19043797455178, - "hitNetZero": "2054-08-22", - "budgetRunsOut": "2026-08-03", - "electricCarChangePercent": 0.06462434911498847, - "electricCarChangeYearly": { - "2015": 0.012396694214876033, - "2016": 0.005952380952380952, - "2017": 0.021052631578947368, - "2018": 0.04524886877828054, - "2019": 0.078125, - "2020": 0.17110266159695817, - "2021": 0.34572490706319703, - "2022": 0.47619047619047616 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.383318392, - "totalConsumptionEmission": 6183.7, - "electricVehiclePerChargePoints": 14.933333333333334 - }, - { - "kommun": "Nyköping", - "län": "Södermanlands län", - "emissions": { - "1990": 443563.802137161, - "2000": 309867.350536831, - "2005": 271977.984216462, - "2010": 286469.653217151, - "2015": 240821.748987586, - "2016": 229802.923865754, - "2017": 224004.237978684, - "2018": 230496.996360132, - "2019": 229155.909301395, - "2020": 211676.642648841, - "2021": 213705.500467378 - }, - "budget": 467947.4181825186, - "emissionBudget": { - "2024": 201569.92922887858, - "2025": 131024.3246765026, - "2026": 85168.32705457948, - "2027": 55361.04804344514, - "2028": 35985.74430732398, - "2029": 23391.42482157954, - "2030": 15204.87531147848, - "2031": 9883.460926430067, - "2032": 6424.439390866103, - "2033": 4176.008970353679, - "2034": 2714.486021187812, - "2035": 1764.4680391095972, - "2036": 1146.9381078915706, - "2037": 745.5317943858703, - "2038": 484.60998254036696, - "2039": 315.00579444935573, - "2040": 204.75981533955346, - "2041": 133.09781190272253, - "2042": 86.51613356808147, - "2043": 56.237148158684356, - "2044": 36.55522620567739, - "2045": 23.761598991073466, - "2046": 15.445495629976254, - "2047": 10.03986875400249, - "2048": 6.52610748223367, - "2049": 4.24209518203984, - "2050": 2.7574433278145167 - }, - "approximatedHistoricalEmission": { - "2021": 213705.500467378, - "2022": 209602.0461340025, - "2023": 205585.987681441, - "2024": 201569.92922887858 - }, - "totalApproximatedHistoricalEmission": 622825.7486635718, - "trend": { - "2024": 201569.92922887858, - "2025": 197553.87077631708, - "2026": 193537.81232375465, - "2027": 189521.75387119316, - "2028": 185505.69541863073, - "2029": 181489.63696606923, - "2030": 177473.57851350773, - "2031": 173457.5200609453, - "2032": 169441.4616083838, - "2033": 165425.40315582138, - "2034": 161409.34470325988, - "2035": 157393.28625069745, - "2036": 153377.22779813595, - "2037": 149361.16934557352, - "2038": 145345.11089301202, - "2039": 141329.0524404496, - "2040": 137312.9939878881, - "2041": 133296.93553532567, - "2042": 129280.87708276417, - "2043": 125264.81863020174, - "2044": 121248.76017764024, - "2045": 117232.70172507782, - "2046": 113216.64327251632, - "2047": 109200.58481995389, - "2048": 105184.52636739239, - "2049": 101168.4679148309, - "2050": 97152.40946226846 - }, - "trendEmission": 3883390.402984916, - "historicalEmissionChangePercent": -1.9085618091939593, - "neededEmissionChangePercent": 34.9980797345386, - "hitNetZero": "2074-02-26", - "budgetRunsOut": "2026-05-18", - "electricCarChangePercent": 0.0666231467111337, - "electricCarChangeYearly": { - "2015": 0.010027347310847767, - "2016": 0.016623568526043592, - "2017": 0.022958057395143488, - "2018": 0.042941757156959526, - "2019": 0.07948860478043357, - "2020": 0.24525436598329536, - "2021": 0.337061894108874, - "2022": 0.48012976480129765 - }, - "climatePlanLink": "https://nykoping.se/globalassets/nykoping.se/dokument/styrdokument/program-for-ekologisk-hallbarhet.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Program för ekologisk hållbarhet.", - "bicycleMetrePerCapita": 2.56992368, - "totalConsumptionEmission": 5862.4, - "electricVehiclePerChargePoints": 24.54736842105263 - }, - { - "kommun": "Nynäshamn", - "län": "Stockholms län", - "emissions": { - "1990": 205540.016845714, - "2000": 273733.81988272, - "2005": 241337.579520957, - "2010": 248124.172895533, - "2015": 224959.695926808, - "2016": 245958.479735467, - "2017": 243489.475758763, - "2018": 249353.121118981, - "2019": 206360.385939602, - "2020": 189038.356763127, - "2021": 186079.663676732 - }, - "budget": 457749.6877427483, - "emissionBudget": { - "2024": 163403.5757354796, - "2025": 114348.59144684077, - "2026": 80020.28295294776, - "2027": 55997.591250143305, - "2028": 39186.69254971202, - "2029": 27422.552268830415, - "2030": 19190.095514765828, - "2031": 13429.084290028492, - "2032": 9397.572030317775, - "2033": 6576.3501187186, - "2034": 4602.08027610167, - "2035": 3220.5011116121623, - "2036": 2253.6824191777823, - "2037": 1577.1099808652025, - "2038": 1103.649684879772, - "2039": 772.3257361335072, - "2040": 540.4677325297685, - "2041": 378.21524810015507, - "2042": 264.6721816784556, - "2043": 185.21559907040876, - "2044": 129.61248107550088, - "2045": 90.70183793839564, - "2046": 63.47246296913927, - "2047": 44.41755147348907, - "2048": 31.083067941751327, - "2049": 21.75169680949628, - "2050": 15.22167358057747 - }, - "approximatedHistoricalEmission": { - "2021": 186079.663676732, - "2022": 182518.53520077094, - "2023": 172961.05546812713, - "2024": 163403.5757354796 - }, - "totalApproximatedHistoricalEmission": 530221.2103750039, - "trend": { - "2024": 163403.5757354796, - "2025": 153846.09600283578, - "2026": 144288.61627018824, - "2027": 134731.13653754443, - "2028": 125173.65680489689, - "2029": 115616.17707225308, - "2030": 106058.69733960554, - "2031": 96501.21760696173, - "2032": 86943.73787431419, - "2033": 77386.25814167038, - "2034": 67828.77840902284, - "2035": 58271.298676379025, - "2036": 48713.81894373521, - "2037": 39156.339211087674, - "2038": 29598.85947844386, - "2039": 20041.379745796323, - "2040": 10483.90001315251, - "2041": 926.4202805049717, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 1397268.1762761325, - "historicalEmissionChangePercent": -2.7436825775175984, - "neededEmissionChangePercent": 30.02075325943286, - "hitNetZero": "2041-01-31", - "budgetRunsOut": "2027-01-29", - "electricCarChangePercent": 0.07270911712824234, - "electricCarChangeYearly": { - "2015": 0.009578544061302681, - "2016": 0.01794453507340946, - "2017": 0.03896103896103896, - "2018": 0.05, - "2019": 0.09900990099009901, - "2020": 0.2222222222222222, - "2021": 0.3854166666666667, - "2022": 0.5340659340659341 - }, - "climatePlanLink": "https://nynashamn.se/download/18.af2d0f618019134f8d4e5d6/1650369638283/Nyn%C3%A4shamns%20kommuns%20h%C3%A5llbarhetsprogram%202023-2030.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Hållbarhetsprogram 2023–2030", - "bicycleMetrePerCapita": 3.320688035, - "totalConsumptionEmission": 6008.5, - "electricVehiclePerChargePoints": 65.46666666666667 - }, - { - "kommun": "Nässjö", - "län": "Jönköpings län", - "emissions": { - "1990": 120193.268873839, - "2000": 104113.565580967, - "2005": 93006.2404773299, - "2010": 89362.9843097719, - "2015": 72923.7488489792, - "2016": 73882.1116329813, - "2017": 72012.9038103862, - "2018": 68441.6666458166, - "2019": 68308.8282117844, - "2020": 61791.6409509085, - "2021": 63097.8564675558 - }, - "budget": 142327.38128361932, - "emissionBudget": { - "2024": 56344.959343983326, - "2025": 37924.98023410466, - "2026": 25526.757717162425, - "2027": 17181.692792676407, - "2028": 11564.7498398682, - "2029": 7784.066475437093, - "2030": 5239.342980437022, - "2031": 3526.5262640390397, - "2032": 2373.654012992256, - "2033": 1597.6723130770563, - "2034": 1075.3702123399223, - "2035": 723.8161944239907, - "2036": 487.19025066766613, - "2037": 327.9207375769052, - "2038": 220.7187233028883, - "2039": 148.56259221798004, - "2040": 99.99534011547533, - "2041": 67.30542255306335, - "2042": 45.302310085801146, - "2043": 30.492332137013967, - "2044": 20.523949383441973, - "2045": 13.81437459100621, - "2046": 9.29825647955451, - "2047": 6.258522453551048, - "2048": 4.212521281568176, - "2049": 2.8353873744746614, - "2050": 1.908458385363341 - }, - "approximatedHistoricalEmission": { - "2021": 63097.8564675558, - "2022": 60442.29463734198, - "2023": 58393.62699066289, - "2024": 56344.959343983326 - }, - "totalApproximatedHistoricalEmission": 178557.32953377443, - "trend": { - "2024": 56344.959343983326, - "2025": 54296.29169730423, - "2026": 52247.624050625134, - "2027": 50198.95640394604, - "2028": 48150.28875726648, - "2029": 46101.62111058738, - "2030": 44052.953463908285, - "2031": 42004.28581722919, - "2032": 39955.61817055009, - "2033": 37906.95052387053, - "2034": 35858.282877191436, - "2035": 33809.61523051234, - "2036": 31760.947583833244, - "2037": 29712.279937153682, - "2038": 27663.612290474586, - "2039": 25614.94464379549, - "2040": 23566.276997116394, - "2041": 21517.6093504373, - "2042": 19468.941703757737, - "2043": 17420.27405707864, - "2044": 15371.606410399545, - "2045": 13322.938763720449, - "2046": 11274.271117040887, - "2047": 9225.603470361792, - "2048": 7176.935823682696, - "2049": 5128.2681770036, - "2050": 3079.600530324504 - }, - "trendEmission": 772519.2783660011, - "historicalEmissionChangePercent": -2.2993177935836298, - "neededEmissionChangePercent": 32.69144094580946, - "hitNetZero": "2051-06-26", - "budgetRunsOut": "2026-08-27", - "electricCarChangePercent": 0.06298481115583551, - "electricCarChangeYearly": { - "2015": 0.012770137524557957, - "2016": 0.026196928635953028, - "2017": 0.028130671506352088, - "2018": 0.03619441571871768, - "2019": 0.052361396303901436, - "2020": 0.18317503392130258, - "2021": 0.2973651191969887, - "2022": 0.5061391541609823 - }, - "climatePlanLink": "https://nassjo.se/download/18.5887ffce168e1d826e1aa9a/1551969829610/Energi-%20och%20klimatstrategi.pdf", - "climatePlanYear": 2016, - "climatePlanComment": "Energi– och Klimatstrategi.", - "bicycleMetrePerCapita": 2.650691253, - "totalConsumptionEmission": 5824.9, - "electricVehiclePerChargePoints": 19.131147540983605 - }, - { - "kommun": "Ockelbo", - "län": "Gävleborgs län", - "emissions": { - "1990": 33030.8623953715, - "2000": 31089.6200377556, - "2005": 27368.9309680304, - "2010": 23947.2197388662, - "2015": 21516.0298922006, - "2016": 20308.5795738902, - "2017": 19038.1730877274, - "2018": 16108.1042229171, - "2019": 16296.3245001624, - "2020": 14764.4940629392, - "2021": 14328.4594416561 - }, - "budget": 36247.027634935635, - "emissionBudget": { - "2024": 9895.866905692033, - "2025": 7531.583921723788, - "2026": 5732.166460054206, - "2027": 4362.658992751431, - "2028": 3320.3490547019014, - "2029": 2527.063853346642, - "2030": 1923.3073431987448, - "2031": 1463.7980482778091, - "2032": 1114.0729710823482, - "2033": 847.9028827484103, - "2034": 645.3251422791435, - "2035": 491.1465071420967, - "2036": 373.80364667945474, - "2037": 284.4958973319802, - "2038": 216.5252166952098, - "2039": 164.79383324884756, - "2040": 125.42191570728839, - "2041": 95.45658735865446, - "2042": 72.65046159417682, - "2043": 55.29308888883534, - "2044": 42.08267383002703, - "2045": 32.028441027139415, - "2046": 24.376327387662297, - "2047": 18.55242771282541, - "2048": 14.119952057003456, - "2049": 10.746466671542304, - "2050": 8.178961618023955 - }, - "approximatedHistoricalEmission": { - "2021": 14328.4594416561, - "2022": 12423.919117198791, - "2023": 11159.893011445645, - "2024": 9895.866905692033 - }, - "totalApproximatedHistoricalEmission": 35695.975302318504, - "trend": { - "2024": 9895.866905692033, - "2025": 8631.840799938422, - "2026": 7367.81469418481, - "2027": 6103.788588431198, - "2028": 4839.762482677586, - "2029": 3575.7363769239746, - "2030": 2311.710271170363, - "2031": 1047.684165416751, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 38826.27083158912, - "historicalEmissionChangePercent": -6.407084894383385, - "neededEmissionChangePercent": 23.89162067861206, - "hitNetZero": "2031-10-28", - "budgetRunsOut": "2029-11-04", - "electricCarChangePercent": 0.06545456857956859, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.011111111111111112, - "2018": 0.0, - "2019": 0.05555555555555555, - "2020": 0.23333333333333334, - "2021": 0.3076923076923077, - "2022": 0.4625 - }, - "climatePlanLink": "https://sandviken.se/download/18.69cc24a417ffd93f9a4c073f/1650969435744/Miljo%CC%88strategiskt%20program_Ockelbo%202022-2026.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljöstrategiskt program 2022–2026", - "bicycleMetrePerCapita": 2.931178356, - "totalConsumptionEmission": 5936.7, - "electricVehiclePerChargePoints": 4.36 - }, - { - "kommun": "Olofström", - "län": "Blekinge län", - "emissions": { - "1990": 71148.9069419255, - "2000": 64587.0780542397, - "2005": 53666.4086992092, - "2010": 40225.1201519883, - "2015": 34661.6664403284, - "2016": 34600.7860975629, - "2017": 33821.644007655, - "2018": 31697.7385965136, - "2019": 31984.1983137485, - "2020": 27907.544386694, - "2021": 29250.7309323134 - }, - "budget": 66333.60311984678, - "emissionBudget": { - "2024": 25248.457902183756, - "2025": 17255.597957648613, - "2026": 11793.023638495319, - "2027": 8059.726871213041, - "2028": 5508.273300369789, - "2029": 3764.528902329932, - "2030": 2572.798603788597, - "2031": 1758.3322714190779, - "2032": 1201.700114482733, - "2033": 821.2800212000619, - "2034": 561.2888482686969, - "2035": 383.60262402396376, - "2036": 262.16621550910827, - "2037": 179.1727174162255, - "2038": 122.45232515552435, - "2039": 83.68780778806435, - "2040": 57.19490555591174, - "2041": 39.08881482275144, - "2042": 26.71453741196749, - "2043": 18.25756325361969, - "2044": 12.47779854165081, - "2045": 8.52772378675206, - "2046": 5.828117254849982, - "2047": 3.9831204182584057, - "2048": 2.722190987688939, - "2049": 1.8604317709016218, - "2050": 1.2714781548515086 - }, - "approximatedHistoricalEmission": { - "2021": 29250.7309323134, - "2022": 27495.367590732872, - "2023": 26371.912746458314, - "2024": 25248.457902183756 - }, - "totalApproximatedHistoricalEmission": 81116.87475443976, - "trend": { - "2024": 25248.457902183756, - "2025": 24125.003057909198, - "2026": 23001.548213634174, - "2027": 21878.093369359616, - "2028": 20754.638525085058, - "2029": 19631.1836808105, - "2030": 18507.72883653594, - "2031": 17384.273992261384, - "2032": 16260.819147986826, - "2033": 15137.364303712267, - "2034": 14013.90945943771, - "2035": 12890.454615162686, - "2036": 11766.999770888127, - "2037": 10643.54492661357, - "2038": 9520.090082339011, - "2039": 8396.635238064453, - "2040": 7273.180393789895, - "2041": 6149.725549515337, - "2042": 5026.270705240779, - "2043": 3902.8158609662205, - "2044": 2779.3610166911967, - "2045": 1655.9061724166386, - "2046": 532.4513281420805, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 283856.22719765455, - "historicalEmissionChangePercent": -2.622716034918423, - "neededEmissionChangePercent": 31.656824252398547, - "hitNetZero": "2046-06-16", - "budgetRunsOut": "2026-10-20", - "electricCarChangePercent": 0.04848084661477944, - "electricCarChangeYearly": { - "2015": 0.00847457627118644, - "2016": 0.006896551724137931, - "2017": 0.010958904109589041, - "2018": 0.03058103975535168, - "2019": 0.015625, - "2020": 0.13025210084033614, - "2021": 0.2804878048780488, - "2022": 0.3458333333333333 - }, - "climatePlanLink": "/data/climatePlans/Olofstr%C3%B6m_Handlingsplan%20f%C3%B6r%20klimat%20och%20energi.pdf", - "climatePlanYear": 2023, - "climatePlanComment": "Ny Handlingsplan för klimat och energi beslutad men ej publicerad", - "bicycleMetrePerCapita": 3.389695099, - "totalConsumptionEmission": 5971.9, - "electricVehiclePerChargePoints": 2.2611940298507465 - }, - { - "kommun": "Orsa", - "län": "Dalarnas län", - "emissions": { - "1990": 32380.0540567679, - "2000": 30309.2652884447, - "2005": 29245.6610250897, - "2010": 26370.4544183661, - "2015": 22934.0955734713, - "2016": 22191.9040271436, - "2017": 20202.0788872682, - "2018": 19470.0533143265, - "2019": 19874.5807684836, - "2020": 18257.6023550341, - "2021": 18256.261785925 - }, - "budget": 41824.01810988129, - "emissionBudget": { - "2024": 15406.024639026495, - "2025": 10659.00542780482, - "2026": 7374.673179618638, - "2027": 5102.333878573417, - "2028": 3530.164710266431, - "2029": 2442.4240314698486, - "2030": 1689.8461230867617, - "2031": 1169.1581326248547, - "2032": 808.9084091194828, - "2033": 559.6615171937284, - "2034": 387.21443651270084, - "2035": 267.9030364561372, - "2036": 185.35475481959267, - "2037": 128.24186537302032, - "2038": 88.72702537552308, - "2039": 61.387792583099355, - "2040": 42.472528097005544, - "2041": 29.38557597602167, - "2042": 20.331073146159678, - "2043": 14.066511257488582, - "2044": 9.732232899591338, - "2045": 6.733464714746801, - "2046": 4.658699348085273, - "2047": 3.2232261599764316, - "2048": 2.230061676469075, - "2049": 1.5429184407253687, - "2050": 1.0675029035518335 - }, - "approximatedHistoricalEmission": { - "2021": 18256.261785925, - "2022": 16993.85341228661, - "2023": 16199.939025656553, - "2024": 15406.024639026495 - }, - "totalApproximatedHistoricalEmission": 50024.93565041891, - "trend": { - "2024": 15406.024639026495, - "2025": 14612.110252396436, - "2026": 13818.195865766378, - "2027": 13024.28147913632, - "2028": 12230.367092506262, - "2029": 11436.452705876203, - "2030": 10642.538319246145, - "2031": 9848.623932616087, - "2032": 9054.709545985796, - "2033": 8260.795159355737, - "2034": 7466.880772725679, - "2035": 6672.966386095621, - "2036": 5879.051999465562, - "2037": 5085.137612835504, - "2038": 4291.223226205446, - "2039": 3497.3088395753875, - "2040": 2703.3944529453292, - "2041": 1909.480066315271, - "2042": 1115.5656796852127, - "2043": 321.65129305492155, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 149573.74700130254, - "historicalEmissionChangePercent": -3.6486198531800675, - "neededEmissionChangePercent": 30.812745808523122, - "hitNetZero": "2043-05-23", - "budgetRunsOut": "2026-12-09", - "electricCarChangePercent": 0.06616169766656933, - "electricCarChangeYearly": { - "2015": 0.008771929824561403, - "2016": 0.0, - "2017": 0.0, - "2018": 0.019230769230769232, - "2019": 0.04819277108433735, - "2020": 0.15476190476190477, - "2021": 0.27848101265822783, - "2022": 0.5333333333333333 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.911915595, - "totalConsumptionEmission": 5669.7, - "electricVehiclePerChargePoints": 7.368421052631579 - }, - { - "kommun": "Orust", - "län": "Västra Götalands län", - "emissions": { - "1990": 73590.9455209839, - "2000": 64884.4377361936, - "2005": 53707.2899721604, - "2010": 49038.5519843983, - "2015": 41027.7122944939, - "2016": 40683.0762472657, - "2017": 40395.155463634, - "2018": 39852.5209527997, - "2019": 39324.0943420148, - "2020": 36658.7861576455, - "2021": 38514.0563417962 - }, - "budget": 81895.0073069432, - "emissionBudget": { - "2024": 35923.49829445989, - "2025": 23167.224355189817, - "2026": 14940.646368131498, - "2027": 9635.28951397907, - "2028": 6213.841204100836, - "2029": 4007.333921182392, - "2030": 2584.347528105652, - "2031": 1666.657253273057, - "2032": 1074.8346999305475, - "2033": 693.1656943297845, - "2034": 447.02564945729733, - "2035": 288.288836143188, - "2036": 185.91875688943702, - "2037": 119.89983596224091, - "2038": 77.3239392533236, - "2039": 49.86655347497385, - "2040": 32.15916286062138, - "2041": 20.739587635929198, - "2042": 13.375052614789231, - "2043": 8.625631116139855, - "2044": 5.562707997832619, - "2045": 3.5874152108418618, - "2046": 2.313540077960925, - "2047": 1.492012320223001, - "2048": 0.9622054032706585, - "2049": 0.6205305583166174, - "2050": 0.4001829261152258 - }, - "approximatedHistoricalEmission": { - "2021": 38514.0563417962, - "2022": 37113.541805813555, - "2023": 36518.52005013684, - "2024": 35923.49829445989 - }, - "totalApproximatedHistoricalEmission": 110850.83917407843, - "trend": { - "2024": 35923.49829445989, - "2025": 35328.47653878294, - "2026": 34733.45478310622, - "2027": 34138.43302742927, - "2028": 33543.411271752324, - "2029": 32948.38951607561, - "2030": 32353.367760398658, - "2031": 31758.34600472171, - "2032": 31163.324249044992, - "2033": 30568.302493368043, - "2034": 29973.280737691093, - "2035": 29378.258982014377, - "2036": 28783.237226337427, - "2037": 28188.215470660478, - "2038": 27593.19371498376, - "2039": 26998.171959306812, - "2040": 26403.150203629863, - "2041": 25808.128447953146, - "2042": 25213.106692276197, - "2043": 24618.084936599247, - "2044": 24023.06318092253, - "2045": 23428.04142524558, - "2046": 22833.01966956863, - "2047": 22237.997913891915, - "2048": 21642.976158214966, - "2049": 21047.954402538016, - "2050": 20452.9326468613 - }, - "trendEmission": 732893.6022371744, - "historicalEmissionChangePercent": -0.988979869153927, - "neededEmissionChangePercent": 35.50955375979444, - "hitNetZero": "2084-05-01", - "budgetRunsOut": "2026-04-29", - "electricCarChangePercent": 0.07628487606585559, - "electricCarChangeYearly": { - "2015": 0.027210884353741496, - "2016": 0.0273972602739726, - "2017": 0.030120481927710843, - "2018": 0.1422924901185771, - "2019": 0.11884057971014493, - "2020": 0.23728813559322035, - "2021": 0.41566265060240964, - "2022": 0.5798611111111112 - }, - "climatePlanLink": "https://www.orust.se/download/18.1c4985fe183bfdb97a25a9/1665396992481/Energi-%20och%20klimatstrategi%202017-2030%20Orust.pdf", - "climatePlanYear": 2018, - "climatePlanComment": "Klimatstrategi till 2030", - "bicycleMetrePerCapita": 1.250142775, - "totalConsumptionEmission": 6443.1, - "electricVehiclePerChargePoints": 22.2 - }, - { - "kommun": "Osby", - "län": "Skåne län", - "emissions": { - "1990": 67164.9591074885, - "2000": 56325.0420090064, - "2005": 49410.7915631143, - "2010": 43644.4727691474, - "2015": 35582.2819262466, - "2016": 34750.4706627612, - "2017": 36691.8243825544, - "2018": 35799.9546297934, - "2019": 36152.5280506998, - "2020": 32266.0745108154, - "2021": 31969.8315052147 - }, - "budget": 72047.52546295305, - "emissionBudget": { - "2024": 31242.11511711753, - "2025": 20249.59903513643, - "2026": 13124.791952998545, - "2027": 8506.843197763828, - "2028": 5513.716442172449, - "2029": 3573.719216156971, - "2030": 2316.3086404380874, - "2031": 1501.3170854362047, - "2032": 973.0797319809532, - "2033": 630.702317303615, - "2034": 408.7901535492428, - "2035": 264.95762747985657, - "2036": 171.73247386277333, - "2037": 111.30852453481552, - "2038": 72.1446989927939, - "2039": 46.760637736536005, - "2040": 30.30794045929773, - "2041": 19.644113069198347, - "2042": 12.732345795442113, - "2043": 8.252478942859602, - "2044": 5.348850070245546, - "2045": 3.4668609604536518, - "2046": 2.247048386339583, - "2047": 1.4564260027003255, - "2048": 0.9439835449191293, - "2049": 0.61184360305701, - "2050": 0.3965668645567913 - }, - "approximatedHistoricalEmission": { - "2021": 31969.8315052147, - "2022": 32409.64653846342, - "2023": 31825.880827790592, - "2024": 31242.11511711753 - }, - "totalApproximatedHistoricalEmission": 95841.50067742013, - "trend": { - "2024": 31242.11511711753, - "2025": 30658.3494064447, - "2026": 30074.58369577187, - "2027": 29490.81798509881, - "2028": 28907.05227442598, - "2029": 28323.286563752918, - "2030": 27739.52085308009, - "2031": 27155.75514240726, - "2032": 26571.989431734197, - "2033": 25988.223721061368, - "2034": 25404.45801038854, - "2035": 24820.692299715476, - "2036": 24236.926589042647, - "2037": 23653.160878369818, - "2038": 23069.395167696755, - "2039": 22485.629457023926, - "2040": 21901.863746351097, - "2041": 21318.098035678035, - "2042": 20734.332325005205, - "2043": 20150.566614332376, - "2044": 19566.800903659314, - "2045": 18983.035192986485, - "2046": 18399.269482313655, - "2047": 17815.503771640593, - "2048": 17231.738060967764, - "2049": 16647.972350294935, - "2050": 16064.206639621872 - }, - "trendEmission": 614982.1828376135, - "historicalEmissionChangePercent": -1.6442169496533257, - "neededEmissionChangePercent": 35.18492919180848, - "hitNetZero": "2077-06-25", - "budgetRunsOut": "2026-05-11", - "electricCarChangePercent": 0.054337783814488456, - "electricCarChangeYearly": { - "2015": 0.0035714285714285713, - "2016": 0.0033222591362126247, - "2017": 0.020289855072463767, - "2018": 0.02962962962962963, - "2019": 0.02464788732394366, - "2020": 0.24279835390946503, - "2021": 0.2384937238493724, - "2022": 0.39299610894941633 - }, - "climatePlanLink": "https://www.osby.se/bygga-bo--miljo/natur-och-hallbarhet/klimatarbete.html", - "climatePlanYear": 2021, - "climatePlanComment": "Klimat– och energiplan. Gäller till 2030.", - "bicycleMetrePerCapita": 2.069387541, - "totalConsumptionEmission": 5941.6, - "electricVehiclePerChargePoints": 21.944444444444443 - }, - { - "kommun": "Oskarshamn", - "län": "Kalmar län", - "emissions": { - "1990": 140317.370052916, - "2000": 156443.271475327, - "2005": 133868.012883387, - "2010": 124345.444732144, - "2015": 88235.6495382573, - "2016": 85887.5420799182, - "2017": 87244.8672949804, - "2018": 83547.5707263416, - "2019": 82289.5083817386, - "2020": 75525.3148917755, - "2021": 72186.9558804449 - }, - "budget": 170309.080913349, - "emissionBudget": { - "2024": 66311.22391414456, - "2025": 44925.297311966955, - "2026": 30436.511640650246, - "2027": 20620.481026948557, - "2028": 13970.202722405724, - "2029": 9464.695020938281, - "2030": 6412.251391005423, - "2031": 4344.246466525328, - "2032": 2943.190497551383, - "2033": 1993.9868448129757, - "2034": 1350.9093416124665, - "2035": 915.2297338385885, - "2036": 620.0604584630581, - "2037": 420.0857532642449, - "2038": 284.60456990437467, - "2039": 192.81720596580942, - "2040": 130.6320377390746, - "2041": 88.50210850420137, - "2042": 59.95943525993502, - "2043": 40.6220138418473, - "2044": 27.521073229151387, - "2045": 18.6452959873707, - "2046": 12.632031445940164, - "2047": 8.55809521926087, - "2048": 5.798037639106328, - "2049": 3.9281218078568028, - "2050": 2.6612695359698457 - }, - "approximatedHistoricalEmission": { - "2021": 72186.9558804449, - "2022": 71584.50207578484, - "2023": 68947.86299496423, - "2024": 66311.22391414456 - }, - "totalApproximatedHistoricalEmission": 209781.4549680438, - "trend": { - "2024": 66311.22391414456, - "2025": 63674.584833323956, - "2026": 61037.94575250428, - "2027": 58401.30667168368, - "2028": 55764.667590864, - "2029": 53128.0285100434, - "2030": 50491.389429223724, - "2031": 47854.75034840312, - "2032": 45218.111267583445, - "2033": 42581.47218676284, - "2034": 39944.833105943166, - "2035": 37308.19402512256, - "2036": 34671.55494430289, - "2037": 32034.91586348228, - "2038": 29398.276782662608, - "2039": 26761.637701842003, - "2040": 24124.99862102233, - "2041": 21488.359540201724, - "2042": 18851.72045938205, - "2043": 16215.081378561445, - "2044": 13578.44229774177, - "2045": 10941.803216921166, - "2046": 8305.164136101492, - "2047": 5668.525055280887, - "2048": 3031.8859744612128, - "2049": 395.2468936415389, - "2050": 0 - }, - "trendEmission": 834028.5085441358, - "historicalEmissionChangePercent": -3.2441081124993674, - "neededEmissionChangePercent": 32.2508398123773, - "hitNetZero": "2049-02-17", - "budgetRunsOut": "2026-09-18", - "electricCarChangePercent": 0.059555147704511514, - "electricCarChangeYearly": { - "2015": 0.018820577164366373, - "2016": 0.04535398230088496, - "2017": 0.05046343975283213, - "2018": 0.026573426573426574, - "2019": 0.03732303732303732, - "2020": 0.18126272912423624, - "2021": 0.35523613963039014, - "2022": 0.45454545454545453 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Hade energi– och klimatprogram som gällde fram till 2020", - "bicycleMetrePerCapita": 3.578830864, - "totalConsumptionEmission": 5958.5, - "electricVehiclePerChargePoints": 12.261538461538462 - }, - { - "kommun": "Ovanåker", - "län": "Gävleborgs län", - "emissions": { - "1990": 55070.0507670514, - "2000": 54013.0875900965, - "2005": 52545.0393688581, - "2010": 46139.5689243925, - "2015": 37689.4311492684, - "2016": 36429.588005217, - "2017": 33423.3983045009, - "2018": 30885.8679604991, - "2019": 30936.151676955, - "2020": 29673.3740245393, - "2021": 28308.7374505601 - }, - "budget": 67347.38093476513, - "emissionBudget": { - "2024": 23019.130720571615, - "2025": 16354.918388287548, - "2026": 11620.045897237253, - "2027": 8255.954780587459, - "2028": 5865.79346948282, - "2029": 4167.6019238296985, - "2030": 2961.049666319126, - "2031": 2103.8034070086214, - "2032": 1494.736419211441, - "2033": 1061.998927976774, - "2034": 754.5422112741578, - "2035": 536.0965379495632, - "2036": 380.89253816057584, - "2037": 270.6212694103519, - "2038": 192.27436644189558, - "2039": 136.60948406303712, - "2040": 97.06000587243545, - "2041": 68.9604005503025, - "2042": 48.99584335805928, - "2043": 34.8111763738436, - "2044": 24.733077695488145, - "2045": 17.57266475920335, - "2046": 12.485245489512154, - "2047": 8.870672551341066, - "2048": 6.302545799296938, - "2049": 4.477911152997105, - "2050": 3.181522028189414 - }, - "approximatedHistoricalEmission": { - "2021": 28308.7374505601, - "2022": 26172.11326950183, - "2023": 24595.62199503649, - "2024": 23019.130720571615 - }, - "totalApproximatedHistoricalEmission": 76431.66935010417, - "trend": { - "2024": 23019.130720571615, - "2025": 21442.639446106274, - "2026": 19866.148171640933, - "2027": 18289.65689717559, - "2028": 16713.165622710716, - "2029": 15136.674348245375, - "2030": 13560.183073780034, - "2031": 11983.691799314693, - "2032": 10407.200524849817, - "2033": 8830.709250384476, - "2034": 7254.217975919135, - "2035": 5677.7267014542595, - "2036": 4101.235426988918, - "2037": 2524.744152523577, - "2038": 948.2528780582361, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 168245.81162943784, - "historicalEmissionChangePercent": -4.617461034197268, - "neededEmissionChangePercent": 28.950755843827007, - "hitNetZero": "2038-08-04", - "budgetRunsOut": "2027-04-19", - "electricCarChangePercent": 0.06444507425844531, - "electricCarChangeYearly": { - "2015": 0.011764705882352941, - "2016": 0.013888888888888888, - "2017": 0.006097560975609756, - "2018": 0.027777777777777776, - "2019": 0.0625, - "2020": 0.2457627118644068, - "2021": 0.33043478260869563, - "2022": 0.45132743362831856 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.630530428, - "totalConsumptionEmission": 6103.6, - "electricVehiclePerChargePoints": 79.66666666666667 - }, - { - "kommun": "Oxelösund", - "län": "Södermanlands län", - "emissions": { - "1990": 2274416.97155665, - "2000": 2483106.92118653, - "2005": 2605028.42337066, - "2010": 2234728.95092309, - "2015": 2245099.20923779, - "2016": 1580315.92454898, - "2017": 1594858.99272982, - "2018": 1522486.07942995, - "2019": 2134622.51519872, - "2020": 1550724.29560151, - "2021": 1689173.9907568 - }, - "budget": 3648775.938341804, - "emissionBudget": { - "2024": 1505212.5601714998, - "2025": 996415.2179281727, - "2026": 659603.3761542129, - "2027": 436641.87981661165, - "2028": 289046.62726469984, - "2029": 191342.05076294608, - "2030": 126663.92525190032, - "2031": 83848.53144537273, - "2032": 55505.75044602279, - "2033": 36743.49782241988, - "2034": 24323.32904928615, - "2035": 16101.47022200088, - "2036": 10658.793571581018, - "2037": 7055.869981757411, - "2038": 4670.8195317906575, - "2039": 3091.9723797295983, - "2040": 2046.8127984695595, - "2041": 1354.9418033110533, - "2042": 896.9395206696584, - "2043": 593.7528104699178, - "2044": 393.0503582646424, - "2045": 260.1900680010189, - "2046": 172.23968904461043, - "2047": 114.01861227872837, - "2048": 75.47763246715961, - "2049": 49.964412730450874, - "2050": 33.07526293415524 - }, - "approximatedHistoricalEmission": { - "2021": 1689173.9907568, - "2022": 1590012.2309478372, - "2023": 1547612.3955596685, - "2024": 1505212.5601714998 - }, - "totalApproximatedHistoricalEmission": 4734817.901971656, - "trend": { - "2024": 1505212.5601714998, - "2025": 1462812.7247833312, - "2026": 1420412.8893951625, - "2027": 1378013.0540069938, - "2028": 1335613.218618825, - "2029": 1293213.3832306564, - "2030": 1250813.5478424877, - "2031": 1208413.712454304, - "2032": 1166013.8770661354, - "2033": 1123614.0416779667, - "2034": 1081214.206289798, - "2035": 1038814.3709016293, - "2036": 996414.5355134606, - "2037": 954014.700125292, - "2038": 911614.8647371233, - "2039": 869215.0293489546, - "2040": 826815.1939607859, - "2041": 784415.3585726172, - "2042": 742015.5231844485, - "2043": 699615.6877962649, - "2044": 657215.8524080962, - "2045": 614816.0170199275, - "2046": 572416.1816317588, - "2047": 530016.3462435901, - "2048": 487616.5108554214, - "2049": 445216.67546725273, - "2050": 402816.84007908404 - }, - "trendEmission": 24804382.203257576, - "historicalEmissionChangePercent": -1.9078838437464463, - "neededEmissionChangePercent": 33.80235826529088, - "hitNetZero": "2059-06-23", - "budgetRunsOut": "2026-07-07", - "electricCarChangePercent": 0.06918068895426813, - "electricCarChangeYearly": { - "2015": 0.007905138339920948, - "2016": 0.013574660633484163, - "2017": 0.014218009478672985, - "2018": 0.023148148148148147, - "2019": 0.049107142857142856, - "2020": 0.21951219512195122, - "2021": 0.36809815950920244, - "2022": 0.4931506849315068 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 4.679544476, - "totalConsumptionEmission": 6190.4, - "electricVehiclePerChargePoints": 28.09090909090909 - }, - { - "kommun": "Pajala", - "län": "Norrbottens län", - "emissions": { - "1990": 60141.3982161159, - "2000": 57047.6387542626, - "2005": 52391.5637725386, - "2010": 39625.1063811541, - "2015": 34742.2370906464, - "2016": 31878.3239872764, - "2017": 33513.8100581474, - "2018": 35567.2390916245, - "2019": 49423.4977847687, - "2020": 62510.2046629935, - "2021": 61688.0519093829 - }, - "budget": 91631.55806679482, - "emissionBudget": { - "2024": 78048.52926946431, - "2025": 33300.28894093962, - "2026": 14207.945414596243, - "2027": 6061.980821312668, - "2028": 2586.412771561658, - "2029": 1103.5223010568184, - "2030": 470.83028753931603, - "2031": 200.885074503756, - "2032": 85.70989213392477, - "2033": 36.56909617479653, - "2034": 15.602619041358054, - "2035": 6.657034119359204, - "2036": 2.8402990003693187, - "2037": 1.2118457359319492, - "2038": 0.5170477078312865, - "2039": 0.22060426030050342, - "2040": 0.09412330608109407, - "2041": 0.04015877452034458, - "2042": 0.017134195961905494, - "2043": 0.0073104987581792255, - "2044": 0.0031191070892477783, - "2045": 0.0013308023646554598, - "2046": 0.0005678019007034742, - "2047": 0.00024225911149920897, - "2048": 0.00010336259359412682, - "2049": 4.410082117608835e-05, - "2050": 1.8816114812697832e-05 - }, - "approximatedHistoricalEmission": { - "2021": 61688.0519093829, - "2022": 66762.03687416017, - "2023": 72405.28307181224, - "2024": 78048.52926946431 - }, - "totalApproximatedHistoricalEmission": 209035.61053539603, - "trend": { - "2024": 78048.52926946431, - "2025": 83691.77546711825, - "2026": 89335.02166477032, - "2027": 94978.26786242239, - "2028": 100621.51406007446, - "2029": 106264.76025772654, - "2030": 111908.0064553786, - "2031": 117551.25265303068, - "2032": 123194.49885068461, - "2033": 128837.74504833668, - "2034": 134480.99124598876, - "2035": 140124.23744364083, - "2036": 145767.4836412929, - "2037": 151410.72983894497, - "2038": 157053.9760365989, - "2039": 162697.22223425098, - "2040": 168340.46843190305, - "2041": 173983.71462955512, - "2042": 179626.9608272072, - "2043": 185270.20702485926, - "2044": 190913.45322251134, - "2045": 196556.69942016527, - "2046": 202199.94561781734, - "2047": 207843.1918154694, - "2048": 213486.4380131215, - "2049": 219129.68421077356, - "2050": 224772.93040842563 - }, - "trendEmission": 3936678.975812588, - "historicalEmissionChangePercent": 11.189267926082792, - "neededEmissionChangePercent": 57.333867463447476, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-02-16", - "electricCarChangePercent": 0.04653639904835516, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.0, - "2018": 0.021505376344086023, - "2019": 0.06976744186046512, - "2020": 0.15151515151515152, - "2021": 0.15625, - "2022": 0.375 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.945928683, - "totalConsumptionEmission": 6688.8, - "electricVehiclePerChargePoints": 6.3 - }, - { - "kommun": "Partille", - "län": "Västra Götalands län", - "emissions": { - "1990": 73790.4857507834, - "2000": 62794.0661392042, - "2005": 56777.7400907646, - "2010": 58725.9807222667, - "2015": 51208.7318087612, - "2016": 49399.7345490473, - "2017": 41950.6965292812, - "2018": 47410.9257597881, - "2019": 47326.4035831242, - "2020": 42763.6569054246, - "2021": 42692.4197822988 - }, - "budget": 95609.72156010623, - "emissionBudget": { - "2024": 38940.641778362915, - "2025": 25913.161591079406, - "2026": 17243.987591866102, - "2027": 11475.060926984554, - "2028": 7636.112156570962, - "2029": 5081.472703174026, - "2030": 3381.480562838925, - "2031": 2250.2159245517964, - "2032": 1497.4126312456021, - "2033": 996.45752380874, - "2034": 663.0955129108887, - "2035": 441.25880806430604, - "2036": 293.636937519887, - "2037": 195.40154100106375, - "2038": 130.03051505740663, - "2039": 86.52917863120838, - "2040": 57.5810897256389, - "2041": 38.317501060806904, - "2042": 25.498490816008037, - "2043": 16.968043737045186, - "2044": 11.291433298535628, - "2045": 7.51391662533994, - "2046": 5.000157336968208, - "2047": 3.3273690195232764, - "2048": 2.2142072430857316, - "2049": 1.4734505510410005, - "2050": 0.9805118889130845 - }, - "approximatedHistoricalEmission": { - "2021": 42692.4197822988, - "2022": 41329.597800705116, - "2023": 40135.11978953425, - "2024": 38940.641778362915 - }, - "totalApproximatedHistoricalEmission": 122281.24837057022, - "trend": { - "2024": 38940.641778362915, - "2025": 37746.16376719205, - "2026": 36551.68575602118, - "2027": 35357.207744849846, - "2028": 34162.72973367898, - "2029": 32968.25172250811, - "2030": 31773.773711336777, - "2031": 30579.29570016591, - "2032": 29384.81768899504, - "2033": 28190.339677824173, - "2034": 26995.86166665284, - "2035": 25801.38365548197, - "2036": 24606.905644311104, - "2037": 23412.42763313977, - "2038": 22217.949621968903, - "2039": 21023.471610798035, - "2040": 19828.9935996267, - "2041": 18634.515588455833, - "2042": 17440.037577284966, - "2043": 16245.559566114098, - "2044": 15051.081554942764, - "2045": 13856.603543771897, - "2046": 12662.125532601029, - "2047": 11467.647521429695, - "2048": 10273.169510258827, - "2049": 9078.69149908796, - "2050": 7884.213487916626 - }, - "trendEmission": 608723.1184616382, - "historicalEmissionChangePercent": -2.5969586511950915, - "neededEmissionChangePercent": 33.454713616256164, - "hitNetZero": "2056-07-30", - "budgetRunsOut": "2026-07-22", - "electricCarChangePercent": 0.07797206459456414, - "electricCarChangeYearly": { - "2015": 0.013407821229050279, - "2016": 0.01910828025477707, - "2017": 0.02710843373493976, - "2018": 0.05668449197860963, - "2019": 0.10232067510548523, - "2020": 0.2742927429274293, - "2021": 0.4050387596899225, - "2022": 0.560952380952381 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete pågår med ny Klimat– och energiplan.", - "bicycleMetrePerCapita": 2.384192387, - "totalConsumptionEmission": 6384.1, - "electricVehiclePerChargePoints": 69.78571428571429 - }, - { - "kommun": "Perstorp", - "län": "Skåne län", - "emissions": { - "1990": 136397.902560983, - "2000": 71461.1741995751, - "2005": 81865.5399708917, - "2010": 87019.0298043405, - "2015": 53041.2452903236, - "2016": 51045.8564099038, - "2017": 47689.3885139542, - "2018": 52457.3627639341, - "2019": 50619.6875020151, - "2020": 50429.9020443663, - "2021": 51009.6333632543 - }, - "budget": 105545.5016009661, - "emissionBudget": { - "2024": 49956.91537163133, - "2025": 31119.661379872112, - "2026": 19385.370717821403, - "2027": 12075.729015175799, - "2028": 7522.333896555312, - "2029": 4685.887467344865, - "2030": 2918.9798882331766, - "2031": 1818.3201468851444, - "2032": 1132.6861722811218, - "2033": 705.5841992812167, - "2034": 439.52956649298125, - "2035": 273.79615362462505, - "2036": 170.5558384565155, - "2037": 106.2443487481804, - "2038": 66.18279235162568, - "2039": 41.22724695541438, - "2040": 25.68168901808166, - "2041": 15.997894584975114, - "2042": 9.96556850181398, - "2043": 6.207851604274166, - "2044": 3.8670570107139026, - "2045": 2.408905830451143, - "2046": 1.5005797131783825, - "2047": 0.9347561233561397, - "2048": 0.5822876335580105, - "2049": 0.3627244365912627, - "2050": 0.22595193392054255 - }, - "approximatedHistoricalEmission": { - "2021": 51009.6333632543, - "2022": 50270.947194789944, - "2023": 50113.93128321064, - "2024": 49956.91537163133 - }, - "totalApproximatedHistoricalEmission": 150868.1528454434, - "trend": { - "2024": 49956.91537163133, - "2025": 49799.899460051965, - "2026": 49642.88354847266, - "2027": 49485.86763689335, - "2028": 49328.851725314045, - "2029": 49171.83581373468, - "2030": 49014.819902155374, - "2031": 48857.80399057607, - "2032": 48700.7880789967, - "2033": 48543.772167417395, - "2034": 48386.75625583809, - "2035": 48229.740344258724, - "2036": 48072.72443267942, - "2037": 47915.70852110011, - "2038": 47758.692609520745, - "2039": 47601.67669794144, - "2040": 47444.66078636213, - "2041": 47287.64487478277, - "2042": 47130.62896320346, - "2043": 46973.613051624154, - "2044": 46816.59714004479, - "2045": 46659.58122846548, - "2046": 46502.565316886175, - "2047": 46345.54940530681, - "2048": 46188.533493727504, - "2049": 46031.5175821482, - "2050": 45874.50167056883 - }, - "trendEmission": 1245808.4215486024, - "historicalEmissionChangePercent": -0.5113169489411464, - "neededEmissionChangePercent": 37.70699982500559, - "hitNetZero": "2341-12-15", - "budgetRunsOut": "2026-02-13", - "electricCarChangePercent": 0.06374565186486536, - "electricCarChangeYearly": { - "2015": 0.022988505747126436, - "2016": 0.018018018018018018, - "2017": 0.008547008547008548, - "2018": 0.06315789473684211, - "2019": 0.11688311688311688, - "2020": 0.21794871794871795, - "2021": 0.3225806451612903, - "2022": 0.47297297297297297 - }, - "climatePlanLink": "https://www.perstorp.se/download/18.6ee8abfe17bedf7491a2a38/1643719465669/Klimat-%20och%20energiprogram.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Energi– och klimatprogram. Gäller till 2030. ", - "bicycleMetrePerCapita": 3.362789196, - "totalConsumptionEmission": 5974.1, - "electricVehiclePerChargePoints": 4.774193548387097 - }, - { - "kommun": "Piteå", - "län": "Norrbottens län", - "emissions": { - "1990": 304864.477679964, - "2000": 197456.808906165, - "2005": 261610.540791138, - "2010": 170663.572173294, - "2015": 143484.873198738, - "2016": 140279.929257591, - "2017": 146436.772817364, - "2018": 137145.674559352, - "2019": 146512.245301487, - "2020": 128155.704137901, - "2021": 134037.461587914 - }, - "budget": 289138.28151944873, - "emissionBudget": { - "2024": 128182.83456839435, - "2025": 82280.20400774003, - "2026": 52815.43347321627, - "2027": 33902.07944430145, - "2028": 21761.65024245395, - "2029": 13968.742597424882, - "2030": 8966.49691448717, - "2031": 5755.56936186434, - "2032": 3694.483921107348, - "2033": 2371.478925049299, - "2034": 1522.2457079383698, - "2035": 977.1252743848927, - "2036": 627.2139884268986, - "2037": 402.6069098724563, - "2038": 258.4322525771279, - "2039": 165.88694216213602, - "2040": 106.4823655154695, - "2041": 68.35073344523967, - "2042": 43.87414516841751, - "2043": 28.162691418689317, - "2044": 18.077553075957194, - "2045": 11.603930901191468, - "2046": 7.448530882130824, - "2047": 4.781191199299546, - "2048": 3.069033296096078, - "2049": 1.970003913235316, - "2050": 1.2645400175681147 - }, - "approximatedHistoricalEmission": { - "2021": 134037.461587914, - "2022": 131933.9211818031, - "2023": 130058.37787509896, - "2024": 128182.83456839435 - }, - "totalApproximatedHistoricalEmission": 393102.44713505625, - "trend": { - "2024": 128182.83456839435, - "2025": 126307.29126168974, - "2026": 124431.74795498513, - "2027": 122556.20464828052, - "2028": 120680.6613415759, - "2029": 118805.11803487176, - "2030": 116929.57472816715, - "2031": 115054.03142146254, - "2032": 113178.48811475793, - "2033": 111302.94480805332, - "2034": 109427.40150134871, - "2035": 107551.85819464456, - "2036": 105676.31488793995, - "2037": 103800.77158123534, - "2038": 101925.22827453073, - "2039": 100049.68496782612, - "2040": 98174.14166112198, - "2041": 96298.59835441737, - "2042": 94423.05504771275, - "2043": 92547.51174100814, - "2044": 90671.96843430353, - "2045": 88796.42512759892, - "2046": 86920.88182089478, - "2047": 85045.33851419017, - "2048": 83169.79520748556, - "2049": 81294.25190078095, - "2050": 79418.70859407634 - }, - "trendEmission": 2698820.061112119, - "historicalEmissionChangePercent": -0.8832141837422888, - "neededEmissionChangePercent": 35.81027889983359, - "hitNetZero": "2092-04-18", - "budgetRunsOut": "2026-04-18", - "electricCarChangePercent": 0.08428524112409641, - "electricCarChangeYearly": { - "2015": 0.011098779134295227, - "2016": 0.026345933562428408, - "2017": 0.04738760631834751, - "2018": 0.06606606606606606, - "2019": 0.09408194233687406, - "2020": 0.24660633484162897, - "2021": 0.44749596122778673, - "2022": 0.6323185011709602 - }, - "climatePlanLink": "https://www.pitea.se/contentassets/9c4b5902081c401a985a37bee096f992/handlingsplan-miljo-klimat-och-energi.pdf?t=638201013076470932", - "climatePlanYear": 2019, - "climatePlanComment": "Handlingsplan klimat och energi, gäller tillsvidare.", - "bicycleMetrePerCapita": 3.046185101, - "totalConsumptionEmission": 6605.3, - "electricVehiclePerChargePoints": 32.15686274509804 - }, - { - "kommun": "Ragunda", - "län": "Jämtlands län", - "emissions": { - "1990": 52653.1274152654, - "2000": 51096.6545448331, - "2005": 48902.087310614, - "2010": 42048.458956496, - "2015": 33975.5213389555, - "2016": 33907.0026872045, - "2017": 30816.88182752, - "2018": 26602.5552474909, - "2019": 25935.3581063959, - "2020": 24012.4863844684, - "2021": 23761.3196384102 - }, - "budget": 58953.51455900168, - "emissionBudget": { - "2024": 16577.340441156644, - "2025": 12513.94106638504, - "2026": 9446.552754877948, - "2027": 7131.035576825723, - "2028": 5383.092617748388, - "2029": 4063.6013968894254, - "2030": 3067.540814430311, - "2031": 2315.6322998113747, - "2032": 1748.029862456957, - "2033": 1319.5568226830267, - "2034": 996.1101041156843, - "2035": 751.945897641504, - "2036": 567.6306571368953, - "2037": 428.4943423885492, - "2038": 323.4627995343013, - "2039": 244.17634571168531, - "2040": 184.32440420027294, - "2041": 139.14323226010856, - "2042": 105.0367647615153, - "2043": 79.29039574804315, - "2044": 59.854917201189394, - "2045": 45.18341823574077, - "2046": 34.1081631873898, - "2047": 25.74764905894993, - "2048": 19.436444830542577, - "2049": 14.672228395912917, - "2050": 11.075805682505758 - }, - "approximatedHistoricalEmission": { - "2021": 23761.3196384102, - "2022": 20528.280543173198, - "2023": 18552.81049216492, - "2024": 16577.340441156644 - }, - "totalApproximatedHistoricalEmission": 59250.42107512154, - "trend": { - "2024": 16577.340441156644, - "2025": 14601.870390148368, - "2026": 12626.400339140091, - "2027": 10650.930288131814, - "2028": 8675.460237123538, - "2029": 6699.990186115261, - "2030": 4724.5201351069845, - "2031": 2749.050084098708, - "2032": 773.5800330904312, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 69790.47191353352, - "historicalEmissionChangePercent": -5.659778036841039, - "neededEmissionChangePercent": 24.511768876287203, - "hitNetZero": "2032-05-20", - "budgetRunsOut": "2029-02-11", - "electricCarChangePercent": 0.050618318360253836, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.03333333333333333, - "2018": 0.0, - "2019": 0.0, - "2020": 0.0967741935483871, - "2021": 0.2777777777777778, - "2022": 0.38181818181818183 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.487975575, - "totalConsumptionEmission": 6312.0, - "electricVehiclePerChargePoints": 5.6923076923076925 - }, - { - "kommun": "Robertsfors", - "län": "Västerbottens län", - "emissions": { - "1990": 51464.2743730163, - "2000": 49935.8541491598, - "2005": 48756.3127418382, - "2010": 48294.3148439398, - "2015": 43973.352449219, - "2016": 42930.93834704, - "2017": 45798.987073553, - "2018": 44372.4159431043, - "2019": 44172.3581025587, - "2020": 37782.4144641121, - "2021": 37555.3370470512 - }, - "budget": 87858.28159133815, - "emissionBudget": { - "2024": 35688.459858801216, - "2025": 23774.71297877845, - "2026": 15838.088263254156, - "2027": 10550.91769387651, - "2028": 7028.7437683519875, - "2029": 4682.364169120503, - "2030": 3119.267814396958, - "2031": 2077.9741486361877, - "2032": 1384.2917054030127, - "2033": 922.178712812794, - "2034": 614.3311955463013, - "2035": 409.2512791476269, - "2036": 272.6324345860858, - "2037": 181.6205548413797, - "2038": 120.99083511824408, - "2039": 80.60091103341843, - "2040": 53.69420628486457, - "2041": 35.76966750867398, - "2042": 23.828811378514526, - "2043": 15.874127193805508, - "2044": 10.574925881209628, - "2045": 7.0447373910872955, - "2046": 4.693018699787478, - "2047": 3.126365582401882, - "2048": 2.0827024949356576, - "2049": 1.3874416053028369, - "2050": 0.9242770932507989 - }, - "approximatedHistoricalEmission": { - "2021": 37555.3370470512, - "2022": 37915.44006904075, - "2023": 36801.94996392075, - "2024": 35688.459858801216 - }, - "totalApproximatedHistoricalEmission": 111339.28848588771, - "trend": { - "2024": 35688.459858801216, - "2025": 34574.96975368122, - "2026": 33461.47964856168, - "2027": 32347.989543441683, - "2028": 31234.49943832215, - "2029": 30121.009333202615, - "2030": 29007.519228082616, - "2031": 27894.029122963082, - "2032": 26780.539017843083, - "2033": 25667.04891272355, - "2034": 24553.55880760355, - "2035": 23440.068702484015, - "2036": 22326.578597364016, - "2037": 21213.088492244482, - "2038": 20099.59838712495, - "2039": 18986.10828200495, - "2040": 17872.618176885415, - "2041": 16759.128071765415, - "2042": 15645.637966645882, - "2043": 14532.147861525882, - "2044": 13418.657756406348, - "2045": 12305.167651286349, - "2046": 11191.677546166815, - "2047": 10078.187441046815, - "2048": 8964.697335927282, - "2049": 7851.207230807748, - "2050": 6737.717125687748 - }, - "trendEmission": 551540.3007983561, - "historicalEmissionChangePercent": -2.387101399806946, - "neededEmissionChangePercent": 33.38263104420485, - "hitNetZero": "2056-01-11", - "budgetRunsOut": "2026-07-26", - "electricCarChangePercent": 0.100632611114207, - "electricCarChangeYearly": { - "2015": 0.010869565217391304, - "2016": 0.0, - "2017": 0.06818181818181818, - "2018": 0.08571428571428572, - "2019": 0.12857142857142856, - "2020": 0.20754716981132076, - "2021": 0.4666666666666667, - "2022": 0.8192771084337349 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.337627834, - "totalConsumptionEmission": 5986.9, - "electricVehiclePerChargePoints": 13.0625 - }, - { - "kommun": "Ronneby", - "län": "Blekinge län", - "emissions": { - "1990": 129432.353451112, - "2000": 130097.955405933, - "2005": 111575.876666887, - "2010": 107581.352078925, - "2015": 82690.5132934546, - "2016": 77730.3509943048, - "2017": 77135.196140403, - "2018": 73140.9815482681, - "2019": 68632.7670812859, - "2020": 62645.9786817864, - "2021": 63258.8422269992 - }, - "budget": 149666.7941500857, - "emissionBudget": { - "2024": 51397.907091603614, - "2025": 36458.76462977628, - "2026": 25861.782970275282, - "2027": 18344.88428758714, - "2028": 13012.822043699152, - "2029": 9230.559042313515, - "2030": 6547.635858502457, - "2031": 4644.522085717793, - "2032": 3294.560948545802, - "2033": 2336.9749660702823, - "2034": 1657.7176981502937, - "2035": 1175.8910585942767, - "2036": 834.11052631267, - "2037": 591.670771727208, - "2038": 419.6977391759265, - "2039": 297.7098087086123, - "2040": 211.17847900573665, - "2041": 149.79805397955718, - "2042": 106.25825643650349, - "2043": 75.37358971610254, - "2044": 53.465756141841574, - "2045": 37.9255796438228, - "2046": 26.902258475576147, - "2047": 19.082938688969744, - "2048": 13.53635604005471, - "2049": 9.601924411623108, - "2050": 6.811061421087675 - }, - "approximatedHistoricalEmission": { - "2021": 63258.8422269992, - "2022": 58324.06329756882, - "2023": 54860.98519458622, - "2024": 51397.907091603614 - }, - "totalApproximatedHistoricalEmission": 170513.42315145646, - "trend": { - "2024": 51397.907091603614, - "2025": 47934.82898862101, - "2026": 44471.75088563748, - "2027": 41008.672782654874, - "2028": 37545.59467967227, - "2029": 34082.51657668967, - "2030": 30619.438473706134, - "2031": 27156.36037072353, - "2032": 23693.282267740928, - "2033": 20230.204164758325, - "2034": 16767.12606177479, - "2035": 13304.047958792187, - "2036": 9840.969855809584, - "2037": 6377.891752826981, - "2038": 2914.813649843447, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 381646.452015053, - "historicalEmissionChangePercent": -4.308449639964562, - "neededEmissionChangePercent": 29.065662995191893, - "hitNetZero": "2038-10-31", - "budgetRunsOut": "2027-04-10", - "electricCarChangePercent": 0.06084937111254478, - "electricCarChangeYearly": { - "2015": 0.014388489208633094, - "2016": 0.04562043795620438, - "2017": 0.03544776119402985, - "2018": 0.07727272727272727, - "2019": 0.09792843691148775, - "2020": 0.19622641509433963, - "2021": 0.3852295409181637, - "2022": 0.43014705882352944 - }, - "climatePlanLink": "https://www.ronneby.se/download/18.2e5b091017e6102741ae787e/1643191137416/Program%20f%C3%B6r%20klimat%20och%20energi%20Ronneby%20kommun%202021-2025.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Program för klimat och energi 2021–2025", - "bicycleMetrePerCapita": 3.962831222, - "totalConsumptionEmission": 6076.0, - "electricVehiclePerChargePoints": 9.53191489361702 - }, - { - "kommun": "Rättvik", - "län": "Dalarnas län", - "emissions": { - "1990": 186962.28416206, - "2000": 212446.57506232, - "2005": 236084.776854862, - "2010": 217587.444212846, - "2015": 186095.115695446, - "2016": 203351.538935695, - "2017": 194678.137760319, - "2018": 157363.003440239, - "2019": 169739.906624526, - "2020": 176805.382394022, - "2021": 176132.127440084 - }, - "budget": 374486.5125577416, - "emissionBudget": { - "2024": 157469.42125892546, - "2025": 103413.65872028588, - "2026": 67914.04149718116, - "2027": 44600.65613727365, - "2028": 29290.2393087281, - "2029": 19235.549273580786, - "2030": 12632.411499147338, - "2031": 8295.984586359762, - "2032": 5448.156930429649, - "2033": 3577.9253962684998, - "2034": 2349.702900399668, - "2035": 1543.1019679462013, - "2036": 1013.3892600100282, - "2037": 665.515185409625, - "2038": 437.0585711619094, - "2039": 287.02604961375414, - "2040": 188.49636774737436, - "2041": 123.78974208705678, - "2042": 81.2954670114246, - "2043": 53.38853482672091, - "2044": 35.06143399783197, - "2045": 23.025620725014956, - "2046": 15.121435415477361, - "2047": 9.930581753048676, - "2048": 6.521633115137036, - "2049": 4.282900996751264, - "2050": 2.812676000647352 - }, - "approximatedHistoricalEmission": { - "2021": 176132.127440084, - "2022": 165177.95761501323, - "2023": 161323.68943696935, - "2024": 157469.42125892546 - }, - "totalApproximatedHistoricalEmission": 493302.4214014873, - "trend": { - "2024": 157469.42125892546, - "2025": 153615.15308088064, - "2026": 149760.88490283675, - "2027": 145906.61672479287, - "2028": 142052.34854674898, - "2029": 138198.0803687051, - "2030": 134343.8121906612, - "2031": 130489.54401261639, - "2032": 126635.2758345725, - "2033": 122781.00765652861, - "2034": 118926.73947848473, - "2035": 115072.47130044084, - "2036": 111218.20312239695, - "2037": 107363.93494435307, - "2038": 103509.66676630825, - "2039": 99655.39858826436, - "2040": 95801.13041022047, - "2041": 91946.86223217659, - "2042": 88092.5940541327, - "2043": 84238.32587608881, - "2044": 80384.05769804493, - "2045": 76529.78952000011, - "2046": 72675.52134195622, - "2047": 68821.25316391233, - "2048": 64966.98498586845, - "2049": 61112.71680782456, - "2050": 57258.44862978067 - }, - "trendEmission": 2791462.3085531695, - "historicalEmissionChangePercent": -0.41883160605563186, - "neededEmissionChangePercent": 34.32778383668291, - "hitNetZero": "2064-10-29", - "budgetRunsOut": "2026-06-14", - "electricCarChangePercent": 0.06738883066063339, - "electricCarChangeYearly": { - "2015": 0.023148148148148147, - "2016": 0.06167400881057269, - "2017": 0.04186046511627907, - "2018": 0.05641025641025641, - "2019": 0.13186813186813187, - "2020": 0.24299065420560748, - "2021": 0.30434782608695654, - "2022": 0.5614973262032086 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.793276136, - "totalConsumptionEmission": 6586.6, - "electricVehiclePerChargePoints": 10.225806451612904 - }, - { - "kommun": "Sala", - "län": "Västmanlands län", - "emissions": { - "1990": 138398.115595249, - "2000": 104429.219840113, - "2005": 96484.6370014235, - "2010": 88184.223219354, - "2015": 75205.0248493749, - "2016": 71476.1611231589, - "2017": 67183.1712073682, - "2018": 67112.4876906606, - "2019": 67046.6991621637, - "2020": 62226.2129080975, - "2021": 62672.5396044912 - }, - "budget": 140094.83873012892, - "emissionBudget": { - "2024": 55510.22289005015, - "2025": 37350.04154955192, - "2026": 25130.967434888542, - "2027": 16909.36604114715, - "2028": 11377.463309134584, - "2029": 7655.323743995424, - "2030": 5150.882937001338, - "2031": 3465.770477898079, - "2032": 2331.942921704718, - "2033": 1569.047294033952, - "2034": 1055.7331348039768, - "2035": 710.3498130113816, - "2036": 477.95871912175573, - "2037": 321.59442150912366, - "2038": 216.38473744307154, - "2039": 145.59442411527857, - "2040": 97.96317699642054, - "2041": 65.91450260233518, - "2042": 44.3505589194193, - "2043": 29.841264043691623, - "2044": 20.078688102742454, - "2045": 13.509940977598676, - "2046": 9.090160885225888, - "2047": 6.116312799316015, - "2048": 4.115359753409612, - "2049": 2.769018926219337, - "2050": 1.8631337898001088 - }, - "approximatedHistoricalEmission": { - "2021": 62672.5396044912, - "2022": 59526.92461933382, - "2023": 57518.573754691985, - "2024": 55510.22289005015 - }, - "totalApproximatedHistoricalEmission": 176136.87962129648, - "trend": { - "2024": 55510.22289005015, - "2025": 53501.87202540785, - "2026": 51493.52116076602, - "2027": 49485.17029612372, - "2028": 47476.81943148188, - "2029": 45468.46856683958, - "2030": 43460.11770219775, - "2031": 41451.76683755545, - "2032": 39443.415972913615, - "2033": 37435.06510827178, - "2034": 35426.71424362948, - "2035": 33418.36337898765, - "2036": 31410.012514345348, - "2037": 29401.661649703514, - "2038": 27393.310785061214, - "2039": 25384.95992041938, - "2040": 23376.609055777546, - "2041": 21368.258191135246, - "2042": 19359.907326493412, - "2043": 17351.556461851113, - "2044": 15343.205597209278, - "2045": 13334.854732566979, - "2046": 11326.503867925145, - "2047": 9318.153003282845, - "2048": 7309.802138641011, - "2049": 5301.451273999177, - "2050": 3293.100409356877 - }, - "trendEmission": 764443.2028922895, - "historicalEmissionChangePercent": -2.9400275463345267, - "neededEmissionChangePercent": 32.71502147715808, - "hitNetZero": "2051-08-15", - "budgetRunsOut": "2026-08-26", - "electricCarChangePercent": 0.06924026936717274, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.02142857142857143, - "2017": 0.010482180293501049, - "2018": 0.039735099337748346, - "2019": 0.047961630695443645, - "2020": 0.19109947643979058, - "2021": 0.33163265306122447, - "2022": 0.5307262569832403 - }, - "climatePlanLink": "https://www.sala.se/resources/files/_Nystruktur/Styrdokument/06%20Planer/Energi-%20och%20klimatstrategi%20Sala%20kommun%202020-2030%20med%20utblick%20mot%202045.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Energi– och klimatstrategi. 2020–2030 med utblick mot 2045.", - "bicycleMetrePerCapita": 1.058042274, - "totalConsumptionEmission": 6148.8, - "electricVehiclePerChargePoints": 20.09090909090909 - }, - { - "kommun": "Salem", - "län": "Stockholms län", - "emissions": { - "1990": 55147.2907314068, - "2000": 53123.6970790706, - "2005": 50774.540282397, - "2010": 46972.2156198222, - "2015": 41780.6921887169, - "2016": 40099.992070785, - "2017": 40691.6952644617, - "2018": 40232.6338269838, - "2019": 39737.8237187339, - "2020": 36350.193476073, - "2021": 36625.9984524092 - }, - "budget": 81617.62347967649, - "emissionBudget": { - "2024": 34234.67201172141, - "2025": 22506.113278923905, - "2026": 14795.676580465815, - "2027": 9726.781464249854, - "2028": 6394.4542947218115, - "2029": 4203.759062293238, - "2030": 2763.5806652647784, - "2031": 1816.7972950521496, - "2032": 1194.3752729188252, - "2033": 785.1906739650723, - "2034": 516.1898512642986, - "2035": 339.34682540576296, - "2036": 223.08898098426056, - "2037": 146.66025938827175, - "2038": 96.41548223913703, - "2039": 63.38421365255498, - "2040": 41.669226218130426, - "2041": 27.39364131162867, - "2042": 18.0087717583693, - "2043": 11.839092749869906, - "2044": 7.78310253584523, - "2045": 5.1166661469179, - "2046": 3.3637321798655377, - "2047": 2.2113411062940926, - "2048": 1.4537511391829823, - "2049": 0.9557061860155882, - "2050": 0.6282879437685494 - }, - "approximatedHistoricalEmission": { - "2021": 36625.9984524092, - "2022": 35943.068436298054, - "2023": 35088.870224009734, - "2024": 34234.67201172141 - }, - "totalApproximatedHistoricalEmission": 106462.2738923731, - "trend": { - "2024": 34234.67201172141, - "2025": 33380.47379943309, - "2026": 32526.275587144773, - "2027": 31672.07737485622, - "2028": 30817.8791625679, - "2029": 29963.68095027958, - "2030": 29109.48273799126, - "2031": 28255.284525702707, - "2032": 27401.086313414387, - "2033": 26546.888101126067, - "2034": 25692.689888837747, - "2035": 24838.491676549427, - "2036": 23984.293464260874, - "2037": 23130.095251972554, - "2038": 22275.897039684234, - "2039": 21421.698827395914, - "2040": 20567.500615107594, - "2041": 19713.30240281904, - "2042": 18859.10419053072, - "2043": 18004.9059782424, - "2044": 17150.70776595408, - "2045": 16296.50955366576, - "2046": 15442.311341377208, - "2047": 14588.113129088888, - "2048": 13733.914916800568, - "2049": 12879.716704512248, - "2050": 12025.518492223928 - }, - "trendEmission": 601382.4765512879, - "historicalEmissionChangePercent": -2.111887944172099, - "neededEmissionChangePercent": 34.259299253055005, - "hitNetZero": "2064-01-19", - "budgetRunsOut": "2026-06-17", - "electricCarChangePercent": 0.0714780271065529, - "electricCarChangeYearly": { - "2015": 0.00974025974025974, - "2016": 0.01507537688442211, - "2017": 0.027855153203342618, - "2018": 0.04100946372239748, - "2019": 0.06461538461538462, - "2020": 0.18620689655172415, - "2021": 0.4171597633136095, - "2022": 0.5090361445783133 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.830194816, - "totalConsumptionEmission": 6075.5, - "electricVehiclePerChargePoints": 48.69230769230769 - }, - { - "kommun": "Sandviken", - "län": "Gävleborgs län", - "emissions": { - "1990": 236345.643479017, - "2000": 247185.355595772, - "2005": 278632.856315522, - "2010": 277274.572641715, - "2015": 219101.875946672, - "2016": 225416.520103901, - "2017": 220757.487103173, - "2018": 218402.956161077, - "2019": 210413.124184133, - "2020": 187313.66742965, - "2021": 168389.147393076 - }, - "budget": 429475.9776488934, - "emissionBudget": { - "2024": 155966.056775596, - "2025": 108471.1325831547, - "2026": 75439.40551629917, - "2027": 52466.5297496529, - "2028": 36489.37481852857, - "2029": 25377.597508359613, - "2030": 17649.588640506896, - "2031": 12274.91999888864, - "2032": 8536.950296581474, - "2033": 5937.270497314927, - "2034": 4129.247533794612, - "2035": 2871.805352823304, - "2036": 1997.2805982221366, - "2037": 1389.0669101625622, - "2038": 966.0670026165088, - "2039": 671.8794081958404, - "2040": 467.27808520004817, - "2041": 324.98214150444517, - "2042": 226.01828684433335, - "2043": 157.19099440837604, - "2044": 109.3230511038784, - "2045": 76.03189704119828, - "2046": 52.87859522133558, - "2047": 36.77595774135095, - "2048": 25.576909941206864, - "2049": 17.788206271649216, - "2050": 12.371325664049724 - }, - "approximatedHistoricalEmission": { - "2021": 168389.147393076, - "2022": 173015.2177704759, - "2023": 164490.63727303594, - "2024": 155966.056775596 - }, - "totalApproximatedHistoricalEmission": 499683.4571278478, - "trend": { - "2024": 155966.056775596, - "2025": 147441.47627815604, - "2026": 138916.8957807161, - "2027": 130392.31528327242, - "2028": 121867.73478583246, - "2029": 113343.15428839251, - "2030": 104818.57379095256, - "2031": 96293.99329351261, - "2032": 87769.41279607266, - "2033": 79244.83229863271, - "2034": 70720.25180119276, - "2035": 62195.67130375281, - "2036": 53671.090806309134, - "2037": 45146.51030886918, - "2038": 36621.92981142923, - "2039": 28097.34931398928, - "2040": 19572.76881654933, - "2041": 11048.18831910938, - "2042": 2523.6078216694295, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 1427668.7852862086, - "historicalEmissionChangePercent": -4.165154368141493, - "neededEmissionChangePercent": 30.45209013700782, - "hitNetZero": "2042-04-14", - "budgetRunsOut": "2026-12-31", - "electricCarChangePercent": 0.04678196704923624, - "electricCarChangeYearly": { - "2015": 0.012216404886561954, - "2016": 0.008928571428571428, - "2017": 0.02127659574468085, - "2018": 0.022770398481973434, - "2019": 0.052732502396931925, - "2020": 0.1577574967405476, - "2021": 0.2275064267352185, - "2022": 0.3547008547008547 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete pågår med att ta fram en hållbarhetsplan. ", - "bicycleMetrePerCapita": 3.210885786, - "totalConsumptionEmission": 6202.0, - "electricVehiclePerChargePoints": 5.431578947368421 - }, - { - "kommun": "Sigtuna", - "län": "Stockholms län", - "emissions": { - "1990": 386940.251862089, - "2000": 299005.278573117, - "2005": 293088.691594982, - "2010": 251261.897566776, - "2015": 237800.199880201, - "2016": 231026.312906616, - "2017": 232398.621126419, - "2018": 233405.011316719, - "2019": 236409.978184602, - "2020": 208117.733670013, - "2021": 211306.066490469 - }, - "budget": 471146.71587065497, - "emissionBudget": { - "2024": 201218.8030283861, - "2025": 131277.0245723623, - "2026": 85646.35571428905, - "2027": 55876.48159328277, - "2028": 36454.337948247, - "2029": 23783.150215470225, - "2030": 15516.349109799743, - "2031": 10123.010934883558, - "2032": 6604.34678690306, - "2033": 4308.737465784282, - "2034": 2811.0605254511247, - "2035": 1833.9621154688314, - "2036": 1196.493995957324, - "2037": 780.6038468771494, - "2038": 509.2732331446968, - "2039": 332.25460908914835, - "2040": 216.76600707898868, - "2041": 141.42016555851836, - "2042": 92.2638355344662, - "2043": 60.19378717251313, - "2044": 39.27098839085532, - "2045": 25.62075924504926, - "2046": 16.71522238655018, - "2047": 10.90516704675007, - "2048": 7.114632732210259, - "2049": 4.641652777737382, - "2050": 3.0282575812432584 - }, - "approximatedHistoricalEmission": { - "2021": 211306.066490469, - "2022": 209882.24599868804, - "2023": 205550.52451353706, - "2024": 201218.8030283861 - }, - "totalApproximatedHistoricalEmission": 621695.2052716527, - "trend": { - "2024": 201218.8030283861, - "2025": 196887.0815432351, - "2026": 192555.360058086, - "2027": 188223.63857293501, - "2028": 183891.91708778404, - "2029": 179560.19560263306, - "2030": 175228.47411748394, - "2031": 170896.75263233297, - "2032": 166565.031147182, - "2033": 162233.309662031, - "2034": 157901.5881768819, - "2035": 153569.86669173092, - "2036": 149238.14520657994, - "2037": 144906.42372142896, - "2038": 140574.70223627985, - "2039": 136242.98075112887, - "2040": 131911.2592659779, - "2041": 127579.53778082691, - "2042": 123247.8162956778, - "2043": 118916.09481052682, - "2044": 114584.37332537584, - "2045": 110252.65184022486, - "2046": 105920.93035507575, - "2047": 101589.20886992477, - "2048": 97257.48738477379, - "2049": 92925.76589962281, - "2050": 88594.04441447183 - }, - "trendEmission": 3767567.0167571697, - "historicalEmissionChangePercent": -1.8282548585959575, - "neededEmissionChangePercent": 34.75906694771315, - "hitNetZero": "2070-06-03", - "budgetRunsOut": "2026-05-28", - "electricCarChangePercent": 0.08230968541458143, - "electricCarChangeYearly": { - "2015": 0.019955654101995565, - "2016": 0.018108651911468814, - "2017": 0.031190926275992438, - "2018": 0.07347876004592423, - "2019": 0.12512030798845045, - "2020": 0.316008316008316, - "2021": 0.43105022831050227, - "2022": 0.5832716506291635 - }, - "climatePlanLink": "https://www.sigtuna.se/download/18.24e83a616b997088b4b830f/1566301462415/Plan%20f%C3%B6r%20Klimatsmart.pdf", - "climatePlanYear": 2018, - "climatePlanComment": "Plan för klimatsmart Sigtuna", - "bicycleMetrePerCapita": 2.417291994, - "totalConsumptionEmission": 6010.3, - "electricVehiclePerChargePoints": 5.0 - }, - { - "kommun": "Simrishamn", - "län": "Skåne län", - "emissions": { - "1990": 72294.8669507433, - "2000": 67734.3553232718, - "2005": 60488.5157485077, - "2010": 60701.1078661139, - "2015": 50614.8238884586, - "2016": 48045.0585816113, - "2017": 47406.6679740105, - "2018": 42263.8707745091, - "2019": 46938.8356059295, - "2020": 42316.1050356446, - "2021": 42381.5768764867 - }, - "budget": 94784.52804770412, - "emissionBudget": { - "2024": 37861.24542753631, - "2025": 25393.230501821254, - "2026": 17031.03392498688, - "2027": 11422.576443483653, - "2028": 7661.029458452456, - "2029": 5138.19037707194, - "2030": 3446.1426488715974, - "2031": 2311.299948979192, - "2032": 1550.170146293982, - "2033": 1039.6865554046442, - "2034": 697.3093476696189, - "2035": 467.67972887577207, - "2036": 313.66900434116366, - "2037": 210.37525941286077, - "2038": 141.09698172437626, - "2039": 94.6326022712532, - "2040": 63.46931949347327, - "2041": 42.56835826428806, - "2042": 28.55025293761218, - "2043": 19.1484232899219, - "2044": 12.842692332402489, - "2045": 8.613489677322802, - "2046": 5.776997727661606, - "2047": 3.874585562373415, - "2048": 2.598653139202326, - "2049": 1.74289560242657, - "2050": 1.1689459570931073 - }, - "approximatedHistoricalEmission": { - "2021": 42381.5768764867, - "2022": 40477.351177245844, - "2023": 39169.29830239108, - "2024": 37861.24542753631 - }, - "totalApproximatedHistoricalEmission": 119768.06063164843, - "trend": { - "2024": 37861.24542753631, - "2025": 36553.19255268201, - "2026": 35245.13967782725, - "2027": 33937.08680297248, - "2028": 32629.03392811818, - "2029": 31320.981053263415, - "2030": 30012.92817840865, - "2031": 28704.87530355435, - "2032": 27396.822428699583, - "2033": 26088.769553844817, - "2034": 24780.716678990517, - "2035": 23472.66380413575, - "2036": 22164.610929280985, - "2037": 20856.55805442622, - "2038": 19548.50517957192, - "2039": 18240.452304717153, - "2040": 16932.399429862387, - "2041": 15624.346555008087, - "2042": 14316.293680153321, - "2043": 13008.240805298556, - "2044": 11700.187930444255, - "2045": 10392.13505558949, - "2046": 9084.082180734724, - "2047": 7776.029305880424, - "2048": 6467.976431025658, - "2049": 5159.923556170892, - "2050": 3851.870681316592 - }, - "trendEmission": 542270.5094150875, - "historicalEmissionChangePercent": -2.6477348038309927, - "neededEmissionChangePercent": 32.930810344255406, - "hitNetZero": "2052-12-03", - "budgetRunsOut": "2026-08-16", - "electricCarChangePercent": 0.06034983087158206, - "electricCarChangeYearly": { - "2015": 0.009900990099009901, - "2016": 0.011146496815286623, - "2017": 0.02337228714524207, - "2018": 0.04032258064516129, - "2019": 0.050434782608695654, - "2020": 0.2431818181818182, - "2021": 0.30544747081712065, - "2022": 0.42823529411764705 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Klimatplan finns men saknas på kommunens webbplats. Lämnas ut på begäran. Ska arbetas in i kommunens hållbarhetspolicy.", - "bicycleMetrePerCapita": 3.729507637, - "totalConsumptionEmission": 6254.4, - "electricVehiclePerChargePoints": 16.78048780487805 - }, - { - "kommun": "Sjöbo", - "län": "Skåne län", - "emissions": { - "1990": 66028.6151838961, - "2000": 63364.2090151149, - "2005": 60022.1668807001, - "2010": 59273.6388244371, - "2015": 50354.6892881688, - "2016": 48692.8580696507, - "2017": 50151.2539966752, - "2018": 46112.3907524522, - "2019": 46464.3141580136, - "2020": 42943.5871333503, - "2021": 43101.3112244717 - }, - "budget": 97110.97796310761, - "emissionBudget": { - "2024": 38914.56868132157, - "2025": 26066.37173194239, - "2026": 17460.189288798007, - "2027": 11695.460079205257, - "2028": 7834.038005077108, - "2029": 5247.519212528744, - "2030": 3514.976295495677, - "2031": 2354.4570029201855, - "2032": 1577.0996196201006, - "2033": 1056.397805150397, - "2034": 707.6130821687713, - "2035": 473.9845838520103, - "2036": 317.49184885162975, - "2037": 212.66741054746794, - "2038": 142.45224774290475, - "2039": 95.41961711372113, - "2040": 63.91547676075635, - "2041": 42.81287530934081, - "2042": 28.677597119616248, - "2043": 19.209281568051818, - "2044": 12.86706472727076, - "2045": 8.618820756479028, - "2046": 5.773194804474284, - "2047": 3.8670926327541806, - "2048": 2.5903171357931347, - "2049": 1.7350871833666983, - "2050": 1.1622235332823765 - }, - "approximatedHistoricalEmission": { - "2021": 43101.3112244717, - "2022": 41553.54124577576, - "2023": 40234.05496354867, - "2024": 38914.56868132157 - }, - "totalApproximatedHistoricalEmission": 122795.53616222106, - "trend": { - "2024": 38914.56868132157, - "2025": 37595.08239909494, - "2026": 36275.59611686785, - "2027": 34956.10983464122, - "2028": 33636.62355241412, - "2029": 32317.137270187028, - "2030": 30997.6509879604, - "2031": 29678.164705733303, - "2032": 28358.678423506673, - "2033": 27039.19214127958, - "2034": 25719.705859052483, - "2035": 24400.219576825853, - "2036": 23080.73329459876, - "2037": 21761.24701237213, - "2038": 20441.760730145033, - "2039": 19122.27444791794, - "2040": 17802.78816569131, - "2041": 16483.301883464213, - "2042": 15163.815601237584, - "2043": 13844.329319010489, - "2044": 12524.843036783393, - "2045": 11205.356754556764, - "2046": 9885.870472329669, - "2047": 8566.38419010304, - "2048": 7246.897907875944, - "2049": 5927.411625648849, - "2050": 4607.925343422219 - }, - "trendEmission": 565792.4223216705, - "historicalEmissionChangePercent": -2.4675543834198805, - "neededEmissionChangePercent": 33.01641874691041, - "hitNetZero": "2053-06-21", - "budgetRunsOut": "2026-08-12", - "electricCarChangePercent": 0.06578047080306838, - "electricCarChangeYearly": { - "2015": 0.00477326968973747, - "2016": 0.014830508474576272, - "2017": 0.017241379310344827, - "2018": 0.0407725321888412, - "2019": 0.06692913385826772, - "2020": 0.19230769230769232, - "2021": 0.3163538873994638, - "2022": 0.5 - }, - "climatePlanLink": "https://www.sjobo.se/bygga-bo-och-miljo/hallbarhet-miljo-och-natur/lokala-miljomal.html", - "climatePlanYear": 2022, - "climatePlanComment": "Hållbara Sjöbo 2034 – Kommunalt miljömålsprogram. ", - "bicycleMetrePerCapita": 2.627200704, - "totalConsumptionEmission": 6132.8, - "electricVehiclePerChargePoints": 17.11111111111111 - }, - { - "kommun": "Skara", - "län": "Västra Götalands län", - "emissions": { - "1990": 101109.845480631, - "2000": 89513.0870050987, - "2005": 81228.3868170459, - "2010": 79080.0081597043, - "2015": 61433.557186142, - "2016": 58654.7483953484, - "2017": 59787.1299084877, - "2018": 56359.0266312272, - "2019": 56037.3699180081, - "2020": 51459.0910005909, - "2021": 51343.2670589828 - }, - "budget": 117033.71854666295, - "emissionBudget": { - "2024": 46065.18176522618, - "2025": 31076.481788585206, - "2026": 20964.808633085533, - "2027": 14143.274132895576, - "2028": 9541.332177130065, - "2029": 6436.771207212638, - "2030": 4342.373036053752, - "2031": 2929.450648038821, - "2032": 1976.2652881369902, - "2033": 1333.2276110232062, - "2034": 899.4216887097571, - "2035": 606.7676422487699, - "2036": 409.337440159216, - "2037": 276.1471249440863, - "2038": 186.29430668551564, - "2039": 125.67782014918326, - "2040": 84.78474065293865, - "2041": 57.19746124696596, - "2042": 38.58653748190454, - "2043": 26.031240589745664, - "2044": 17.56118923495013, - "2045": 11.847125237174156, - "2046": 7.992304764073549, - "2047": 5.391766708213598, - "2048": 3.637392353514726, - "2049": 2.453856750376909, - "2050": 1.6554202478465 - }, - "approximatedHistoricalEmission": { - "2021": 51343.2670589828, - "2022": 49523.17784818821, - "2023": 47794.17980670743, - "2024": 46065.18176522618 - }, - "totalApproximatedHistoricalEmission": 146021.58206700013, - "trend": { - "2024": 46065.18176522618, - "2025": 44336.183723744936, - "2026": 42607.18568226369, - "2027": 40878.18764078291, - "2028": 39149.189599301666, - "2029": 37420.19155782042, - "2030": 35691.193516339175, - "2031": 33962.195474858396, - "2032": 32233.19743337715, - "2033": 30504.199391895905, - "2034": 28775.20135041466, - "2035": 27046.20330893388, - "2036": 25317.205267452635, - "2037": 23588.20722597139, - "2038": 21859.209184490144, - "2039": 20130.211143009365, - "2040": 18401.21310152812, - "2041": 16672.215060046874, - "2042": 14943.217018565629, - "2043": 13214.218977084849, - "2044": 11485.220935603604, - "2045": 9756.222894122358, - "2046": 8027.224852641113, - "2047": 6298.226811160333, - "2048": 4569.228769679088, - "2049": 2840.230728197843, - "2050": 1111.2326867170632 - }, - "trendEmission": 613293.3878752578, - "historicalEmissionChangePercent": -2.8820648268290405, - "neededEmissionChangePercent": 32.538024169820346, - "hitNetZero": "2050-08-16", - "budgetRunsOut": "2026-09-04", - "electricCarChangePercent": 0.06307028341146065, - "electricCarChangeYearly": { - "2015": 0.0076045627376425855, - "2016": 0.01391304347826087, - "2017": 0.01926444833625219, - "2018": 0.015521064301552107, - "2019": 0.06438631790744467, - "2020": 0.1975, - "2021": 0.2753623188405797, - "2022": 0.4943310657596372 - }, - "climatePlanLink": "https://skara.se/download/18.a9ae3d177427fab272ada/1611824198185/milj%C3%B6strategi%202017web.pdf", - "climatePlanYear": 2017, - "climatePlanComment": "Miljöstrategi. ", - "bicycleMetrePerCapita": 3.680481651, - "totalConsumptionEmission": 6113.9, - "electricVehiclePerChargePoints": 17.45 - }, - { - "kommun": "Skellefteå", - "län": "Västerbottens län", - "emissions": { - "1990": 606046.903296444, - "2000": 522131.933766314, - "2005": 485559.681304623, - "2010": 535190.284330015, - "2015": 528915.550228399, - "2016": 521073.81486466, - "2017": 529371.104180673, - "2018": 528017.24631959, - "2019": 506186.85656076, - "2020": 481197.103109729, - "2021": 497032.578523585 - }, - "budget": 1064005.3142174776, - "emissionBudget": { - "2024": 470559.19634586945, - "2025": 302375.3395923182, - "2026": 194302.5377116771, - "2027": 124856.33323173563, - "2028": 80231.08772365426, - "2029": 51555.473965213, - "2030": 33128.890199429734, - "2031": 21288.20242417757, - "2032": 13679.527437371287, - "2033": 8790.289907111463, - "2034": 5648.528211579362, - "2035": 3629.672205827441, - "2036": 2332.38107844602, - "2037": 1498.7583414169164, - "2038": 963.082999911575, - "2039": 618.8648557190337, - "2040": 397.67466529811554, - "2041": 255.5406692729803, - "2042": 164.20717574133099, - "2043": 105.51743736782724, - "2044": 67.80415982680435, - "2045": 43.57008855126535, - "2046": 27.997583352026837, - "2047": 17.990890072013073, - "2048": 11.56071656305389, - "2049": 7.428769055688732, - "2050": 4.773632272858041 - }, - "approximatedHistoricalEmission": { - "2021": 497032.578523585, - "2022": 484743.9525061697, - "2023": 477651.57442601956, - "2024": 470559.19634586945 - }, - "totalApproximatedHistoricalEmission": 1446191.4143669165, - "trend": { - "2024": 470559.19634586945, - "2025": 463466.81826571934, - "2026": 456374.44018556736, - "2027": 449282.06210541725, - "2028": 442189.68402526714, - "2029": 435097.305945117, - "2030": 428004.9278649669, - "2031": 420912.54978481494, - "2032": 413820.1717046648, - "2033": 406727.7936245147, - "2034": 399635.4155443646, - "2035": 392543.0374642145, - "2036": 385450.6593840625, - "2037": 378358.2813039124, - "2038": 371265.9032237623, - "2039": 364173.5251436122, - "2040": 357081.14706346206, - "2041": 349988.7689833101, - "2042": 342896.39090316, - "2043": 335804.01282300986, - "2044": 328711.63474285975, - "2045": 321619.25666270964, - "2046": 314526.87858255766, - "2047": 307434.50050240755, - "2048": 300342.12242225744, - "2049": 293249.7443421073, - "2050": 286157.3662619572 - }, - "trendEmission": 9837315.313901734, - "historicalEmissionChangePercent": -0.9877386765881085, - "neededEmissionChangePercent": 35.7412750743337, - "hitNetZero": "2090-04-20", - "budgetRunsOut": "2026-04-20", - "electricCarChangePercent": 0.08220670884696615, - "electricCarChangeYearly": { - "2015": 0.011855905152758778, - "2016": 0.01853448275862069, - "2017": 0.02861098292570374, - "2018": 0.03705848291835553, - "2019": 0.07295173961840629, - "2020": 0.283921568627451, - "2021": 0.44814814814814813, - "2022": 0.5769230769230769 - }, - "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab7bb0c4e669d7aee685/1670425468289/Viable-Cities-Klimatkontrakt-Skelleftea-FINAL.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities.", - "bicycleMetrePerCapita": 3.352954207, - "totalConsumptionEmission": 6176.7, - "electricVehiclePerChargePoints": 26.899159663865547 - }, - { - "kommun": "Skinnskatteberg", - "län": "Västmanlands län", - "emissions": { - "1990": 34470.9438062771, - "2000": 29428.7744237824, - "2005": 27952.5321305346, - "2010": 22990.9575508567, - "2015": 19576.1205265807, - "2016": 18535.2108636826, - "2017": 17331.2650506636, - "2018": 16929.5941362503, - "2019": 17026.3097926718, - "2020": 16083.1074261299, - "2021": 15746.9656758898 - }, - "budget": 35911.813788626656, - "emissionBudget": { - "2024": 13740.519063444808, - "2025": 9372.039263758408, - "2026": 6392.416440446216, - "2027": 4360.095684415652, - "2028": 2973.9042433119366, - "2029": 2028.4202660965334, - "2030": 1383.5310216071264, - "2031": 943.6693764812558, - "2032": 643.6515540317213, - "2033": 439.01744968374413, - "2034": 299.4420193962899, - "2035": 204.24136453965693, - "2036": 139.3075530051607, - "2037": 95.01794295208765, - "2038": 64.809188648312, - "2039": 44.204608127229605, - "2040": 30.150776771571703, - "2041": 20.565035602457243, - "2042": 14.02685882803171, - "2043": 9.56734393195127, - "2044": 6.525628512730181, - "2045": 4.450956063567806, - "2046": 3.035877669279476, - "2047": 2.070690676609816, - "2048": 1.412362534099228, - "2049": 0.9633345773271527, - "2050": 0.6570646597234677 - }, - "approximatedHistoricalEmission": { - "2021": 15746.9656758898, - "2022": 14933.135255242698, - "2023": 14336.827159343753, - "2024": 13740.519063444808 - }, - "totalApproximatedHistoricalEmission": 44013.70478425376, - "trend": { - "2024": 13740.519063444808, - "2025": 13144.210967545863, - "2026": 12547.902871646918, - "2027": 11951.594775747973, - "2028": 11355.286679849029, - "2029": 10758.978583950317, - "2030": 10162.670488051372, - "2031": 9566.362392152427, - "2032": 8970.054296253482, - "2033": 8373.746200354537, - "2034": 7777.438104455592, - "2035": 7181.130008556647, - "2036": 6584.821912657702, - "2037": 5988.51381675899, - "2038": 5392.205720860045, - "2039": 4795.8976249611005, - "2040": 4199.589529062156, - "2041": 3603.2814331632107, - "2042": 3006.973337264266, - "2043": 2410.665241365321, - "2044": 1814.357145466376, - "2045": 1218.049049567664, - "2046": 621.7409536687192, - "2047": 25.432857769774273, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 158321.1635228519, - "historicalEmissionChangePercent": -3.5314545188454436, - "neededEmissionChangePercent": 31.792683955501193, - "hitNetZero": "2047-01-10", - "budgetRunsOut": "2026-10-13", - "electricCarChangePercent": 0.08467082063406652, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.0, - "2018": 0.012987012987012988, - "2019": 0.031914893617021274, - "2020": 0.175, - "2021": 0.47368421052631576, - "2022": 0.6 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.952591988, - "totalConsumptionEmission": 6703.6, - "electricVehiclePerChargePoints": 10000000000.0 - }, - { - "kommun": "Skurup", - "län": "Skåne län", - "emissions": { - "1990": 45364.2306933898, - "2000": 42241.2380830484, - "2005": 40596.9740106325, - "2010": 42388.8253225969, - "2015": 36482.6647685024, - "2016": 35160.1515841525, - "2017": 32423.2681296748, - "2018": 32581.3048550645, - "2019": 33393.9526562175, - "2020": 31101.5629682918, - "2021": 31112.2751602701 - }, - "budget": 68801.4759319668, - "emissionBudget": { - "2024": 28195.52683247975, - "2025": 18715.525684231143, - "2026": 12422.924519843411, - "2027": 8246.044285881715, - "2028": 5473.529703582192, - "2029": 3633.199917115546, - "2030": 2411.632411365098, - "2031": 1600.7847132629095, - "2032": 1062.5631361313945, - "2033": 705.3043478682652, - "2034": 468.1643906196692, - "2035": 310.7564802439352, - "2036": 206.27282200121712, - "2037": 136.9190340389569, - "2038": 90.88362538643322, - "2039": 60.32640692623788, - "2040": 40.04324604301381, - "2041": 26.579762252738185, - "2042": 17.643019266050317, - "2043": 11.71102005587562, - "2044": 7.7734988938672664, - "2045": 5.159865217943864, - "2046": 3.4249968297225166, - "2047": 2.273432112686807, - "2048": 1.5090506146291338, - "2049": 1.001672205123058, - "2050": 0.664886384054569 - }, - "approximatedHistoricalEmission": { - "2021": 31112.2751602701, - "2022": 29856.788370328024, - "2023": 29026.15760140377, - "2024": 28195.52683247975 - }, - "totalApproximatedHistoricalEmission": 88536.84696810672, - "trend": { - "2024": 28195.52683247975, - "2025": 27364.89606355573, - "2026": 26534.265294631477, - "2027": 25703.634525707457, - "2028": 24873.003756783204, - "2029": 24042.372987859184, - "2030": 23211.742218935164, - "2031": 22381.11145001091, - "2032": 21550.48068108689, - "2033": 20719.84991216287, - "2034": 19889.219143238617, - "2035": 19058.588374314597, - "2036": 18227.957605390344, - "2037": 17397.326836466324, - "2038": 16566.696067542303, - "2039": 15736.06529861805, - "2040": 14905.43452969403, - "2041": 14074.80376077001, - "2042": 13244.172991845757, - "2043": 12413.542222921737, - "2044": 11582.911453997483, - "2045": 10752.280685073463, - "2046": 9921.649916149443, - "2047": 9091.01914722519, - "2048": 8260.38837830117, - "2049": 7429.7576093771495, - "2050": 6599.126840452896 - }, - "trendEmission": 452330.4977481249, - "historicalEmissionChangePercent": -2.542950725723505, - "neededEmissionChangePercent": 33.62235862650438, - "hitNetZero": "2057-12-02", - "budgetRunsOut": "2026-07-15", - "electricCarChangePercent": 0.0663886080143808, - "electricCarChangeYearly": { - "2015": 0.005141388174807198, - "2016": 0.0024509803921568627, - "2017": 0.022779043280182234, - "2018": 0.05647840531561462, - "2019": 0.09235668789808917, - "2020": 0.2231404958677686, - "2021": 0.3563636363636364, - "2022": 0.4580152671755725 - }, - "climatePlanLink": "https://www.skurup.se/36987", - "climatePlanYear": 2017, - "climatePlanComment": "Klimatstrategi och energiplan, gäller till 2030", - "bicycleMetrePerCapita": 4.412308506, - "totalConsumptionEmission": 5808.7, - "electricVehiclePerChargePoints": 20.28 - }, - { - "kommun": "Skövde", - "län": "Västra Götalands län", - "emissions": { - "1990": 756741.622217686, - "2000": 645559.291126671, - "2005": 614079.091128438, - "2010": 189373.699134178, - "2015": 136142.01973774, - "2016": 147686.49235449499, - "2017": 136263.58698435803, - "2018": 140813.83315306, - "2019": 136091.66800786095, - "2020": 108306.95490232401, - "2021": 131967.22007073794 - }, - "budget": 277650.1322809709, - "emissionBudget": { - "2024": 114298.38369825762, - "2025": 75728.08377400653, - "2026": 50173.43628604936, - "2027": 33242.27397939701, - "2028": 22024.578364957488, - "2029": 14592.324594123704, - "2030": 9668.105038462947, - "2031": 6405.576742200053, - "2032": 4243.997477993628, - "2033": 2811.8490056572277, - "2034": 1862.9829239091289, - "2035": 1234.3142778272265, - "2036": 817.7915733394358, - "2037": 541.8255864318884, - "2038": 358.9850711146997, - "2039": 237.84458414354702, - "2040": 157.5832834239007, - "2041": 104.40637655919966, - "2042": 69.17416130300072, - "2043": 45.831152748226756, - "2044": 30.365305811668406, - "2045": 20.118450917030835, - "2046": 13.329425029055528, - "2047": 8.831374360677374, - "2048": 5.851203103541216, - "2049": 3.8766987289466908, - "2050": 2.5684962167731427 - }, - "approximatedHistoricalEmission": { - "2021": 131967.22007073794, - "2022": 120830.91176124662, - "2023": 117564.64772975165, - "2024": 114298.38369825762 - }, - "totalApproximatedHistoricalEmission": 361528.361375496, - "trend": { - "2024": 114298.38369825762, - "2025": 111032.11966676265, - "2026": 107765.85563526861, - "2027": 104499.59160377365, - "2028": 101233.32757227961, - "2029": 97967.06354078557, - "2030": 94700.7995092906, - "2031": 91434.53547779657, - "2032": 88168.2714463016, - "2033": 84902.00741480757, - "2034": 81635.7433833126, - "2035": 78369.47935181856, - "2036": 75103.2153203236, - "2037": 71836.95128882956, - "2038": 68570.68725733552, - "2039": 65304.423225840554, - "2040": 62038.15919434652, - "2041": 58771.89516285155, - "2042": 55505.63113135751, - "2043": 52239.367099862546, - "2044": 48973.10306836851, - "2045": 45706.83903687354, - "2046": 42440.575005379505, - "2047": 39174.31097388454, - "2048": 35908.0469423905, - "2049": 32641.782910896465, - "2050": 29375.518879401498 - }, - "trendEmission": 1867760.7335095676, - "historicalEmissionChangePercent": 0.3600615966581233, - "neededEmissionChangePercent": 33.74527152201458, - "hitNetZero": "2058-12-20", - "budgetRunsOut": "2026-07-09", - "electricCarChangePercent": 0.06008614401892933, - "electricCarChangeYearly": { - "2015": 0.016739203213927016, - "2016": 0.016448370392933294, - "2017": 0.02524271844660194, - "2018": 0.039271127866792335, - "2019": 0.05175237471339666, - "2020": 0.19880034275921166, - "2021": 0.3125822007891276, - "2022": 0.4500838926174497 - }, - "climatePlanLink": "https://skovde.se/globalassets/energi--och-klimatplanen_webb.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Energi– och klimatplan 2021–2030", - "bicycleMetrePerCapita": 3.108804107, - "totalConsumptionEmission": 6036.7, - "electricVehiclePerChargePoints": 9.99388379204893 - }, - { - "kommun": "Smedjebacken", - "län": "Dalarnas län", - "emissions": { - "1990": 156725.679104253, - "2000": 102936.632525076, - "2005": 107790.352597616, - "2010": 97238.6448570713, - "2015": 74797.6949325639, - "2016": 77030.7376980843, - "2017": 76643.8132772613, - "2018": 75233.7525336295, - "2019": 67373.4547326501, - "2020": 57546.8436852671, - "2021": 71079.1096970575 - }, - "budget": 148028.85982644797, - "emissionBudget": { - "2024": 58659.221877338365, - "2025": 39467.43796761765, - "2026": 26554.71057875591, - "2027": 17866.694425416128, - "2028": 12021.172994691742, - "2029": 8088.155353613506, - "2030": 5441.919607435478, - "2031": 3661.4639208877174, - "2032": 2463.527396774651, - "2033": 1657.5247949426407, - "2034": 1115.2254484551843, - "2035": 750.3524560699601, - "2036": 504.856492568504, - "2037": 339.6804741914614, - "2038": 228.54578725909894, - "2039": 153.77150246334133, - "2040": 103.46143437343986, - "2041": 69.61152249365234, - "2042": 46.836428406682174, - "2043": 31.512757476239646, - "2044": 21.20259630246736, - "2045": 14.265653848425048, - "2046": 9.598299982696062, - "2047": 6.457983877689156, - "2048": 4.345098177769026, - "2049": 2.9234941635077947, - "2050": 1.9670023033754487 - }, - "approximatedHistoricalEmission": { - "2021": 71079.1096970575, - "2022": 62901.643468535505, - "2023": 60780.43267293647, - "2024": 58659.221877338365 - }, - "totalApproximatedHistoricalEmission": 188551.24192866992, - "trend": { - "2024": 58659.221877338365, - "2025": 56538.01108173933, - "2026": 54416.80028614029, - "2027": 52295.58949054126, - "2028": 50174.37869494315, - "2029": 48053.16789934412, - "2030": 45931.95710374508, - "2031": 43810.746308146976, - "2032": 41689.53551254794, - "2033": 39568.324716948904, - "2034": 37447.1139213508, - "2035": 35325.90312575176, - "2036": 33204.69233015273, - "2037": 31083.481534554623, - "2038": 28962.270738955587, - "2039": 26841.05994335655, - "2040": 24719.849147758447, - "2041": 22598.63835215941, - "2042": 20477.427556560375, - "2043": 18356.21676096134, - "2044": 16235.005965363234, - "2045": 14113.795169764198, - "2046": 11992.584374165162, - "2047": 9871.373578567058, - "2048": 7750.162782968022, - "2049": 5628.951987368986, - "2050": 3507.7411917708814 - }, - "trendEmission": 808170.51989841, - "historicalEmissionChangePercent": -0.14575255536473466, - "neededEmissionChangePercent": 32.71741986256217, - "hitNetZero": "2051-08-20", - "budgetRunsOut": "2026-08-26", - "electricCarChangePercent": 0.07060793700347996, - "electricCarChangeYearly": { - "2015": 0.013888888888888888, - "2016": 0.004901960784313725, - "2017": 0.03864734299516908, - "2018": 0.05405405405405406, - "2019": 0.050505050505050504, - "2020": 0.2642857142857143, - "2021": 0.375886524822695, - "2022": 0.5 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.874182105, - "totalConsumptionEmission": 6344.6, - "electricVehiclePerChargePoints": 3.734042553191489 - }, - { - "kommun": "Sollefteå", - "län": "Västernorrlands län", - "emissions": { - "1990": 141431.830084516, - "2000": 129974.890278038, - "2005": 105338.162854244, - "2010": 90225.7930607062, - "2015": 79217.2301977891, - "2016": 73676.8364350968, - "2017": 65793.0483123263, - "2018": 61568.7014981703, - "2019": 63136.927975969, - "2020": 58393.1923098289, - "2021": 56168.719156538 - }, - "budget": 135660.94077333045, - "emissionBudget": { - "2024": 43485.89190282021, - "2025": 31559.92762519119, - "2026": 22904.647648326387, - "2027": 16623.069929831792, - "2028": 12064.208894838372, - "2029": 8755.611139979728, - "2030": 6354.393156051544, - "2031": 4611.706908418981, - "2032": 3346.950698023011, - "2033": 2429.0526690988477, - "2034": 1762.8872970078232, - "2035": 1279.4171412942228, - "2036": 928.5382135408387, - "2037": 673.8874962496217, - "2038": 489.07449470480003, - "2039": 354.9462821345381, - "2040": 257.6026036221238, - "2041": 186.95533587176564, - "2042": 135.68301375632086, - "2043": 98.47207695973675, - "2044": 71.4662040023606, - "2045": 51.866665883317786, - "2046": 37.642282354367964, - "2047": 27.31892240834595, - "2048": 19.826734057389697, - "2049": 14.38927119842635, - "2050": 10.44302732979319 - }, - "approximatedHistoricalEmission": { - "2021": 56168.719156538, - "2022": 50797.959167866036, - "2023": 47141.92553534359, - "2024": 43485.89190282021 - }, - "totalApproximatedHistoricalEmission": 147767.19023288874, - "trend": { - "2024": 43485.89190282021, - "2025": 39829.85827029683, - "2026": 36173.82463777438, - "2027": 32517.791005250998, - "2028": 28861.75737272855, - "2029": 25205.72374020517, - "2030": 21549.69010768179, - "2031": 17893.65647515934, - "2032": 14237.62284263596, - "2033": 10581.58921011258, - "2034": 6925.55557759013, - "2035": 3269.52194506675, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 258789.53713591257, - "historicalEmissionChangePercent": -5.481807858931987, - "neededEmissionChangePercent": 27.424904390326116, - "hitNetZero": "2035-11-20", - "budgetRunsOut": "2027-09-10", - "electricCarChangePercent": 0.062291872535175784, - "electricCarChangeYearly": { - "2015": 0.005319148936170213, - "2016": 0.008086253369272238, - "2017": 0.028846153846153848, - "2018": 0.030821917808219176, - "2019": 0.08960573476702509, - "2020": 0.22167487684729065, - "2021": 0.34051724137931033, - "2022": 0.42433234421364985 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.558660435, - "totalConsumptionEmission": 6071.1, - "electricVehiclePerChargePoints": 11.416666666666666 - }, - { - "kommun": "Sollentuna", - "län": "Stockholms län", - "emissions": { - "1990": 192297.397274444, - "2000": 179489.421214289, - "2005": 174951.835121893, - "2010": 187693.420165136, - "2015": 168986.690555682, - "2016": 160866.118581577, - "2017": 143683.536050638, - "2018": 125272.787293164, - "2019": 123667.272404552, - "2020": 112121.031157713, - "2021": 112633.150159207 - }, - "budget": 280600.25332633883, - "emissionBudget": { - "2024": 73911.4280968085, - "2025": 56795.82103140913, - "2026": 43643.6606583596, - "2027": 33537.13496999495, - "2028": 25770.968911156702, - "2029": 19803.207376360606, - "2030": 15217.395346799214, - "2031": 11693.515941120424, - "2032": 8985.658317275607, - "2033": 6904.856999501208, - "2034": 5305.905087877431, - "2035": 4077.2211218273324, - "2036": 3133.062465488819, - "2037": 2407.5418328686305, - "2038": 1850.0294012197803, - "2039": 1421.6196531461785, - "2040": 1092.4163891011428, - "2041": 839.4464472517182, - "2042": 645.0565414743965, - "2043": 495.68134222401125, - "2044": 380.8968318767912, - "2045": 292.69287377819046, - "2046": 224.91423186278206, - "2047": 172.83103288931065, - "2048": 132.8086963736902, - "2049": 102.0542985690269, - "2050": 78.42167072486492 - }, - "approximatedHistoricalEmission": { - "2021": 112633.150159207, - "2022": 94380.5037884675, - "2023": 84145.96594263613, - "2024": 73911.4280968085 - }, - "totalApproximatedHistoricalEmission": 271798.75885911135, - "trend": { - "2024": 73911.4280968085, - "2025": 63676.89025097713, - "2026": 53442.35240514949, - "2027": 43207.814559318125, - "2028": 32973.27671348676, - "2029": 22738.73886765912, - "2030": 12504.201021827757, - "2031": 2269.663175996393, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 267768.651042819, - "historicalEmissionChangePercent": -6.410257178274332, - "neededEmissionChangePercent": 23.15691565718566, - "hitNetZero": "2031-03-20", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.09384386828142256, - "electricCarChangeYearly": { - "2015": 0.032583065380493034, - "2016": 0.07394502516453735, - "2017": 0.14926209602092286, - "2018": 0.21539614159955048, - "2019": 0.27415245933764454, - "2020": 0.4370603929177783, - "2021": 0.5860694183864915, - "2022": 0.6611704598235021 - }, - "climatePlanLink": "https://www.sollentuna.se/globalassets/kommun-och-politik/politik-och-demokrati/miljo-och-klimat/plan-for-miljo--och-klimatarbetet-i-sollentuna-kommun-2021-2030.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Plan för miljö– och klimatarbetet 2021–2030", - "bicycleMetrePerCapita": 1.370438966, - "totalConsumptionEmission": 6657.6, - "electricVehiclePerChargePoints": 79.54761904761905 - }, - { - "kommun": "Solna", - "län": "Stockholms län", - "emissions": { - "1990": 198204.603662609, - "2000": 163954.032194089, - "2005": 162074.708642765, - "2010": 172274.023197084, - "2015": 143491.213214482, - "2016": 144940.41300953, - "2017": 128444.55858096, - "2018": 113321.756228237, - "2019": 110709.890661572, - "2020": 99936.1143370108, - "2021": 101943.766644076 - }, - "budget": 249660.90529788865, - "emissionBudget": { - "2024": 70601.32931605354, - "2025": 53210.73102721905, - "2026": 40103.80433173011, - "2027": 30225.39045845825, - "2028": 22780.23852324253, - "2029": 17168.984727891362, - "2030": 12939.901234388339, - "2031": 9752.530310293394, - "2032": 7350.276152064251, - "2033": 5539.747921068406, - "2034": 4175.1910260355435, - "2035": 3146.753309404324, - "2036": 2371.6415197532497, - "2037": 1787.4561318193232, - "2038": 1347.1679410937743, - "2039": 1015.3320292474104, - "2040": 765.2343098208455, - "2041": 576.7409399672291, - "2042": 434.67746749640315, - "2043": 327.607228229407, - "2044": 246.91064988097818, - "2045": 186.0913428380046, - "2046": 140.25311543242444, - "2047": 105.70581139620678, - "2048": 79.66823787464506, - "2049": 60.044268543203245, - "2050": 45.2540972546817 - }, - "approximatedHistoricalEmission": { - "2021": 101943.766644076, - "2022": 87200.30110003054, - "2023": 78900.8152080439, - "2024": 70601.32931605354 - }, - "totalApproximatedHistoricalEmission": 252373.6642881392, - "trend": { - "2024": 70601.32931605354, - "2025": 62301.8434240669, - "2026": 54002.35753208026, - "2027": 45702.871640093625, - "2028": 37403.385748106986, - "2029": 29103.899856120348, - "2030": 20804.413964129984, - "2031": 12504.928072143346, - "2032": 4205.442180156708, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 301329.80707492493, - "historicalEmissionChangePercent": -5.362065812309443, - "neededEmissionChangePercent": 24.63211168586335, - "hitNetZero": "2032-07-01", - "budgetRunsOut": "2029-01-04", - "electricCarChangePercent": 0.09063096588168804, - "electricCarChangeYearly": { - "2015": 0.035277636271013754, - "2016": 0.10657069886231715, - "2017": 0.15093504481575745, - "2018": 0.21587132792768843, - "2019": 0.28033964728935334, - "2020": 0.5307766677408959, - "2021": 0.6498606229547934, - "2022": 0.5627859684799187 - }, - "climatePlanLink": "https://www.solna.se/download/18.5002ae1016ed574744199bd/1596180205909/Klimatstrategi_2019.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Klimatstrategi", - "bicycleMetrePerCapita": 1.307139177, - "totalConsumptionEmission": 6978.6, - "electricVehiclePerChargePoints": 58.33116883116883 - }, - { - "kommun": "Sorsele", - "län": "Västerbottens län", - "emissions": { - "1990": 18803.4188918504, - "2000": 18014.6767088845, - "2005": 16886.9733412671, - "2010": 17027.8369689132, - "2015": 14856.7633581033, - "2016": 13339.3468415919, - "2017": 18407.0111414451, - "2018": 15722.7611813232, - "2019": 16299.1702382612, - "2020": 14882.5454482634, - "2021": 15392.0842487046 - }, - "budget": 32259.598591818274, - "emissionBudget": { - "2024": 16110.922990091087, - "2025": 9777.488252779798, - "2026": 5933.8174846993315, - "2027": 3601.1487849870896, - "2028": 2185.4855841207414, - "2029": 1326.3398775168082, - "2030": 804.9366618901996, - "2031": 488.504523341323, - "2032": 296.4663937216533, - "2033": 179.92120524319307, - "2034": 109.19160074027242, - "2035": 66.26681749995751, - "2036": 40.21638177113987, - "2037": 24.40674569535661, - "2038": 14.812104152673626, - "2039": 8.989253715680405, - "2040": 5.455449241510242, - "2041": 3.310833954411527, - "2042": 2.009297674383594, - "2043": 1.2194139603116716, - "2044": 0.7400448552547921, - "2045": 0.4491226159565268, - "2046": 0.27256607857125925, - "2047": 0.16541644652983822, - "2048": 0.10038887056668423, - "2049": 0.060924566722793054, - "2050": 0.03697424634232209 - }, - "approximatedHistoricalEmission": { - "2021": 15392.0842487046, - "2022": 15926.314491379424, - "2023": 16018.618740735255, - "2024": 16110.922990091087 - }, - "totalApproximatedHistoricalEmission": 47696.436851512524, - "trend": { - "2024": 16110.922990091087, - "2025": 16203.227239446918, - "2026": 16295.53148880275, - "2027": 16387.83573815858, - "2028": 16480.139987514412, - "2029": 16572.444236870244, - "2030": 16664.748486226075, - "2031": 16757.052735581907, - "2032": 16849.356984937738, - "2033": 16941.66123429357, - "2034": 17033.9654836494, - "2035": 17126.269733005232, - "2036": 17218.573982361064, - "2037": 17310.878231716895, - "2038": 17403.182481072727, - "2039": 17495.486730428558, - "2040": 17587.79097978436, - "2041": 17680.09522914019, - "2042": 17772.399478496023, - "2043": 17864.703727851855, - "2044": 17957.007977207686, - "2045": 18049.312226563517, - "2046": 18141.61647591935, - "2047": 18233.92072527518, - "2048": 18326.22497463101, - "2049": 18418.529223986843, - "2050": 18510.833473342675 - }, - "trendEmission": 450082.834024639, - "historicalEmissionChangePercent": 1.9320618194053696, - "neededEmissionChangePercent": 39.31143325063764, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-12-28", - "electricCarChangePercent": 0.017857142857142853, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.0, - "2018": 0.0, - "2019": 0.0, - "2020": 0.0, - "2021": 0.0, - "2022": 0.21428571428571427 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.773361199, - "totalConsumptionEmission": 6375.6, - "electricVehiclePerChargePoints": 0.7142857142857143 - }, - { - "kommun": "Sotenäs", - "län": "Västra Götalands län", - "emissions": { - "1990": 53413.0281071896, - "2000": 46342.6758004993, - "2005": 36327.5732888974, - "2010": 35562.6170894389, - "2015": 29758.4610683972, - "2016": 29638.4179865095, - "2017": 29039.753531695, - "2018": 30713.3023714351, - "2019": 30960.0154003337, - "2020": 27755.8737801066, - "2021": 27416.5036901078 - }, - "budget": 60811.247051312144, - "emissionBudget": { - "2024": 27425.182830004604, - "2025": 17469.78841134545, - "2026": 11128.221424408584, - "2027": 7088.655520878677, - "2028": 4515.4598544802275, - "2029": 2876.3391925829155, - "2030": 1832.2225016749437, - "2031": 1167.122189309464, - "2032": 743.4545769049728, - "2033": 473.579127347391, - "2034": 301.668988027204, - "2035": 192.16256182380653, - "2036": 122.40718016184779, - "2037": 77.973136978229, - "2038": 49.668737423628954, - "2039": 31.63888965947606, - "2040": 20.153911510709857, - "2041": 12.838002646526807, - "2042": 8.177782851961346, - "2043": 5.2092318575682475, - "2044": 3.318270616515051, - "2045": 2.1137319638460537, - "2046": 1.3464431721595955, - "2047": 0.8576816961013831, - "2048": 0.5463415813141745, - "2049": 0.348018530452105, - "2050": 0.2216871306897552 - }, - "approximatedHistoricalEmission": { - "2021": 27416.5036901078, - "2022": 28058.804164221394, - "2023": 27741.993497113, - "2024": 27425.182830004604 - }, - "totalApproximatedHistoricalEmission": 83221.64092139059, - "trend": { - "2024": 27425.182830004604, - "2025": 27108.37216289621, - "2026": 26791.561495787813, - "2027": 26474.75082867942, - "2028": 26157.940161571023, - "2029": 25841.129494462744, - "2030": 25524.31882735435, - "2031": 25207.508160245954, - "2032": 24890.69749313756, - "2033": 24573.886826029164, - "2034": 24257.07615892077, - "2035": 23940.265491812374, - "2036": 23623.45482470398, - "2037": 23306.644157595583, - "2038": 22989.833490487188, - "2039": 22673.022823378793, - "2040": 22356.212156270398, - "2041": 22039.401489162003, - "2042": 21722.590822053724, - "2043": 21405.78015494533, - "2044": 21088.969487836934, - "2045": 20772.15882072854, - "2046": 20455.348153620143, - "2047": 20138.53748651175, - "2048": 19821.726819403353, - "2049": 19504.916152294958, - "2050": 19188.105485186563 - }, - "trendEmission": 605972.7480974856, - "historicalEmissionChangePercent": -1.2381725395485168, - "neededEmissionChangePercent": 36.3001934403421, - "hitNetZero": "2110-07-05", - "budgetRunsOut": "2026-03-31", - "electricCarChangePercent": 0.08320347022902196, - "electricCarChangeYearly": { - "2015": 0.015, - "2016": 0.02631578947368421, - "2017": 0.0379746835443038, - "2018": 0.046511627906976744, - "2019": 0.15384615384615385, - "2020": 0.3251231527093596, - "2021": 0.4271356783919598, - "2022": 0.5887445887445888 - }, - "climatePlanLink": "https://www.sotenas.se/download/18.31f128a417e9f4ede9dc1776/1644237756609/H%C3%A5llbarhetsstrategi%202030%20antagen%20210218%20m%C3%A5l%202022.pdf", - "climatePlanYear": 2018, - "climatePlanComment": "Hållbarhetsstrategi 2030. ", - "bicycleMetrePerCapita": 1.432852918, - "totalConsumptionEmission": 6663.6, - "electricVehiclePerChargePoints": 7.557142857142857 - }, - { - "kommun": "Staffanstorp", - "län": "Skåne län", - "emissions": { - "1990": 95093.944420055, - "2000": 78615.2606846436, - "2005": 75340.2411443428, - "2010": 81906.7874350151, - "2015": 70637.9578553952, - "2016": 68083.2118413961, - "2017": 66847.6624430646, - "2018": 64087.1796820814, - "2019": 64053.4994027899, - "2020": 59210.0760544293, - "2021": 59245.4924784036 - }, - "budget": 133945.88157668203, - "emissionBudget": { - "2024": 52869.76194854127, - "2025": 35627.63833377811, - "2026": 24008.593314226506, - "2027": 16178.803307920427, - "2028": 10902.499494681866, - "2029": 7346.927518016587, - "2030": 4950.914602777004, - "2031": 3336.300153211235, - "2032": 2248.2510011531826, - "2033": 1515.0413128510438, - "2034": 1020.949252760512, - "2035": 687.9927087603636, - "2036": 463.6214444817805, - "2037": 312.4231420572229, - "2038": 210.53430736365218, - "2039": 141.87391588608483, - "2040": 95.60535886478965, - "2041": 64.42611093503842, - "2042": 43.415179018197676, - "2043": 29.2564263437024, - "2044": 19.715189520368302, - "2045": 13.285583593079794, - "2046": 8.952829554408128, - "2047": 6.033092672875433, - "2048": 4.065553463103936, - "2049": 2.739676954685108, - "2050": 1.846201232907211 - }, - "approximatedHistoricalEmission": { - "2021": 59245.4924784036, - "2022": 56778.17843033979, - "2023": 54823.97018944053, - "2024": 52869.76194854127 - }, - "totalApproximatedHistoricalEmission": 167659.77583325276, - "trend": { - "2024": 52869.76194854127, - "2025": 50915.553707642015, - "2026": 48961.34546674229, - "2027": 47007.137225843035, - "2028": 45052.92898494378, - "2029": 43098.72074404452, - "2030": 41144.5125031448, - "2031": 39190.30426224554, - "2032": 37236.09602134628, - "2033": 35281.887780447025, - "2034": 33327.6795395473, - "2035": 31373.471298648044, - "2036": 29419.263057748787, - "2037": 27465.05481684953, - "2038": 25510.846575949807, - "2039": 23556.63833505055, - "2040": 21602.430094151292, - "2041": 19648.221853252035, - "2042": 17694.01361235231, - "2043": 15739.805371453054, - "2044": 13785.597130553797, - "2045": 11831.38888965454, - "2046": 9877.180648754817, - "2047": 7922.972407855559, - "2048": 5968.764166956302, - "2049": 4014.5559260570444, - "2050": 2060.347685157787 - }, - "trendEmission": 714091.4252380836, - "historicalEmissionChangePercent": -2.8525365752099567, - "neededEmissionChangePercent": 32.61244798405774, - "hitNetZero": "2051-01-13", - "budgetRunsOut": "2026-08-31", - "electricCarChangePercent": 0.08181108702724145, - "electricCarChangeYearly": { - "2015": 0.013043478260869565, - "2016": 0.014344262295081968, - "2017": 0.024844720496894408, - "2018": 0.06976744186046512, - "2019": 0.10978043912175649, - "2020": 0.3087557603686636, - "2021": 0.45, - "2022": 0.5562015503875969 - }, - "climatePlanLink": "https://staffanstorp.se/wp-content/uploads/2021/11/6-17-miljoplan.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljöplan", - "bicycleMetrePerCapita": 4.478156915, - "totalConsumptionEmission": 5848.9, - "electricVehiclePerChargePoints": 39.0 - }, - { - "kommun": "Stenungsund", - "län": "Västra Götalands län", - "emissions": { - "1990": 780521.849217751, - "2000": 1113076.35589691, - "2005": 1058830.50410254, - "2010": 1143575.59931725, - "2015": 963030.393684002, - "2016": 1081848.44510307, - "2017": 1033823.80035977, - "2018": 1052944.03642716, - "2019": 1053158.16416174, - "2020": 631828.660555302, - "2021": 1054375.11108919 - }, - "budget": 2035414.3806632855, - "emissionBudget": { - "2024": 851571.7188233212, - "2025": 560431.0135975723, - "2026": 368827.32723439153, - "2027": 242730.31651411485, - "2028": 159744.14639184176, - "2029": 105129.811030318, - "2030": 69187.36878257732, - "2031": 45533.15517399608, - "2032": 29965.993165811713, - "2033": 19721.0305980794, - "2034": 12978.680389412313, - "2035": 8541.44735554137, - "2036": 5621.2435115515045, - "2037": 3699.4173587758546, - "2038": 2434.637241081693, - "2039": 1602.2681197623215, - "2040": 1054.4745986330452, - "2041": 693.9641783094718, - "2042": 456.70733216432063, - "2043": 300.56535160181477, - "2044": 197.80617524883291, - "2045": 130.17895362206406, - "2046": 85.67255266331969, - "2047": 56.382280511780635, - "2048": 37.10595116970498, - "2049": 24.419934768705307, - "2050": 16.071093593059476 - }, - "approximatedHistoricalEmission": { - "2021": 1054375.11108919, - "2022": 894905.3654717505, - "2023": 873238.5421475321, - "2024": 851571.7188233212 - }, - "totalApproximatedHistoricalEmission": 2721117.3225755384, - "trend": { - "2024": 851571.7188233212, - "2025": 829904.8954991028, - "2026": 808238.0721748918, - "2027": 786571.2488506809, - "2028": 764904.4255264625, - "2029": 743237.6022022516, - "2030": 721570.7788780406, - "2031": 699903.9555538222, - "2032": 678237.1322296113, - "2033": 656570.3089054003, - "2034": 634903.485581182, - "2035": 613236.662256971, - "2036": 591569.8389327526, - "2037": 569903.0156085417, - "2038": 548236.1922843307, - "2039": 526569.3689601123, - "2040": 504902.5456359014, - "2041": 483235.72231169045, - "2042": 461568.89898747206, - "2043": 439902.0756632611, - "2044": 418235.2523390427, - "2045": 396568.4290148318, - "2046": 374901.60569062084, - "2047": 353234.78236640245, - "2048": 331567.9590421915, - "2049": 309901.13571798056, - "2050": 288234.3123937622 - }, - "trendEmission": 14817478.40582209, - "historicalEmissionChangePercent": 6.106510925101933, - "neededEmissionChangePercent": 34.188630128304304, - "hitNetZero": "2063-04-11", - "budgetRunsOut": "2026-06-20", - "electricCarChangePercent": 0.08220843541623976, - "electricCarChangeYearly": { - "2015": 0.023376623376623377, - "2016": 0.012716763005780347, - "2017": 0.01797175866495507, - "2018": 0.06735751295336788, - "2019": 0.10340314136125654, - "2020": 0.26644736842105265, - "2021": 0.42391304347826086, - "2022": 0.6045272969374168 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.347065342, - "totalConsumptionEmission": 6323.3, - "electricVehiclePerChargePoints": 41.19444444444444 - }, - { - "kommun": "Stockholm", - "län": "Stockholms län", - "emissions": { - "1990": 2077052.10424792, - "2000": 2091721.57819248, - "2005": 2337205.12315979, - "2010": 2284948.94427555, - "2015": 1888969.22376053, - "2016": 1768737.31098062, - "2017": 1650089.99560539, - "2018": 1601080.53631855, - "2019": 1388008.49167374, - "2020": 996569.234833702, - "2021": 1052156.51907693 - }, - "budget": 3064703.776797525, - "emissionBudget": { - "2024": 552903.9509764314, - "2025": 461634.7790530849, - "2026": 385431.6266958176, - "2027": 321807.51017526997, - "2028": 268685.9780890166, - "2029": 224333.34381268045, - "2030": 187302.10450172916, - "2031": 156383.70005339195, - "2032": 130569.07025923717, - "2033": 109015.72288250664, - "2034": 91020.23788635129, - "2035": 75995.31045459305, - "2036": 63450.58357572148, - "2037": 52976.64463789673, - "2038": 44231.66374412784, - "2039": 36930.23767258483, - "2040": 30834.075390950376, - "2041": 25744.221135099644, - "2042": 21494.561242703217, - "2043": 17946.402829270573, - "2044": 14983.947375049825, - "2045": 12510.511497717687, - "2046": 10445.371571121517, - "2047": 8721.129210320298, - "2048": 7281.511642283836, - "2049": 6079.5351746391325, - "2050": 5075.971825004423 - }, - "approximatedHistoricalEmission": { - "2021": 1052156.51907693, - "2022": 861250.791710496, - "2023": 707077.3713434935, - "2024": 552903.9509764314 - }, - "totalApproximatedHistoricalEmission": 2370858.3980806703, - "trend": { - "2024": 552903.9509764314, - "2025": 398730.5306094289, - "2026": 244557.1102424264, - "2027": 90383.68987542391, - "2028": 0, - "2029": 0, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 1010123.3062154949, - "historicalEmissionChangePercent": -8.662455617140123, - "neededEmissionChangePercent": 16.507238149078976, - "hitNetZero": "2027-08-01", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.09141670840433368, - "electricCarChangeYearly": { - "2015": 0.039811313828420396, - "2016": 0.06210059781488353, - "2017": 0.07784613510385575, - "2018": 0.12369662866687207, - "2019": 0.15769794273853854, - "2020": 0.44371911913877166, - "2021": 0.5427802207664004, - "2022": 0.6318091888327105 - }, - "climatePlanLink": "https://start.stockholm/globalassets/start/om-stockholms-stad/politik-och-demokrati/styrdokument/klimathandlingsplan-2020-2023.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Klimathandlingsplan 2020–2023", - "bicycleMetrePerCapita": 1.218575773, - "totalConsumptionEmission": 6981.8, - "electricVehiclePerChargePoints": 17.190896840844438 - }, - { - "kommun": "Storfors", - "län": "Värmlands län", - "emissions": { - "1990": 33726.0008882249, - "2000": 19217.1311355889, - "2005": 17047.9871714679, - "2010": 17513.2640623166, - "2015": 12041.2202946075, - "2016": 11782.8556742392, - "2017": 12914.4783347831, - "2018": 11539.2978493834, - "2019": 11536.2927648921, - "2020": 10885.2916539786, - "2021": 11281.0686929347 - }, - "budget": 24285.27000732933, - "emissionBudget": { - "2024": 10542.836091667472, - "2025": 6829.980809081085, - "2026": 4424.676381840429, - "2027": 2866.444523238789, - "2028": 1856.9729163758684, - "2029": 1203.0054599686505, - "2030": 779.3447733954204, - "2031": 504.8840558334517, - "2032": 327.079770772392, - "2033": 211.89256268336354, - "2034": 137.27066646309677, - "2035": 88.92825511474265, - "2036": 57.610520597849415, - "2037": 37.32190718543636, - "2038": 24.1783053078386, - "2039": 15.663466624427294, - "2040": 10.147286320146154, - "2041": 6.573731226422561, - "2042": 4.258669842738866, - "2043": 2.7589002660401265, - "2044": 1.7873023641252954, - "2045": 1.1578706849714764, - "2046": 0.7501050465920669, - "2047": 0.48594164117450445, - "2048": 0.314808278787373, - "2049": 0.20394270421760266, - "2050": 0.1321204981133325 - }, - "approximatedHistoricalEmission": { - "2021": 11281.0686929347, - "2022": 10932.390978483949, - "2023": 10737.61353507574, - "2024": 10542.836091667472 - }, - "totalApproximatedHistoricalEmission": 32581.956905860774, - "trend": { - "2024": 10542.836091667472, - "2025": 10348.058648259263, - "2026": 10153.281204850995, - "2027": 9958.503761442786, - "2028": 9763.726318034518, - "2029": 9568.948874626309, - "2030": 9374.1714312181, - "2031": 9179.393987809832, - "2032": 8984.616544401622, - "2033": 8789.839100993355, - "2034": 8595.061657585145, - "2035": 8400.284214176878, - "2036": 8205.506770768669, - "2037": 8010.729327360401, - "2038": 7815.951883952192, - "2039": 7621.174440543924, - "2040": 7426.396997135715, - "2041": 7231.619553727447, - "2042": 7036.842110319238, - "2043": 6842.06466691097, - "2044": 6647.287223502761, - "2045": 6452.509780094493, - "2046": 6257.732336686284, - "2047": 6062.954893278016, - "2048": 5868.177449869807, - "2049": 5673.4000064615975, - "2050": 5478.62256305333 - }, - "trendEmission": 208278.96251137072, - "historicalEmissionChangePercent": -0.8705464509657984, - "neededEmissionChangePercent": 35.216854841562416, - "hitNetZero": "2078-02-02", - "budgetRunsOut": "2026-05-10", - "electricCarChangePercent": 0.062111168637293435, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.010309278350515464, - "2017": 0.0125, - "2018": 0.0, - "2019": 0.029850746268656716, - "2020": 0.07575757575757576, - "2021": 0.2857142857142857, - "2022": 0.5172413793103449 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.950304305, - "totalConsumptionEmission": 6219.8, - "electricVehiclePerChargePoints": 6.933333333333334 - }, - { - "kommun": "Storuman", - "län": "Västerbottens län", - "emissions": { - "1990": 59212.253504431, - "2000": 57571.5872661453, - "2005": 52314.6456948685, - "2010": 41346.8178718481, - "2015": 31882.5761340415, - "2016": 30722.8480911588, - "2017": 33850.8719145132, - "2018": 32589.7091334306, - "2019": 31916.3697016088, - "2020": 28910.2275773557, - "2021": 29140.3773059041 - }, - "budget": 64878.70907578002, - "emissionBudget": { - "2024": 28333.352895804215, - "2025": 18307.796537001297, - "2026": 11829.712327829426, - "2027": 7643.852359641809, - "2028": 4939.129310739747, - "2029": 3191.453366761735, - "2030": 2062.1801842821824, - "2031": 1332.4923236340617, - "2032": 860.9993472329585, - "2033": 556.3408229728511, - "2034": 359.4835609351102, - "2035": 232.2828475754211, - "2036": 150.09120622204392, - "2037": 96.98249535137789, - "2038": 62.66592588153002, - "2039": 40.49203160179996, - "2040": 26.16421285055042, - "2041": 16.90619134206339, - "2042": 10.924055209574023, - "2043": 7.0586556018037285, - "2044": 4.561000283228888, - "2045": 2.9471226189726862, - "2046": 1.904304142053599, - "2047": 1.2304796013905195, - "2048": 0.7950831046375776, - "2049": 0.513748576218371, - "2050": 0.3319622791968569 - }, - "approximatedHistoricalEmission": { - "2021": 29140.3773059041, - "2022": 29318.091447584447, - "2023": 28825.722171694273, - "2024": 28333.352895804215 - }, - "totalApproximatedHistoricalEmission": 86880.67872013288, - "trend": { - "2024": 28333.352895804215, - "2025": 27840.983619914157, - "2026": 27348.6143440241, - "2027": 26856.245068133925, - "2028": 26363.875792243867, - "2029": 25871.50651635381, - "2030": 25379.13724046375, - "2031": 24886.767964573577, - "2032": 24394.39868868352, - "2033": 23902.02941279346, - "2034": 23409.660136903403, - "2035": 22917.29086101323, - "2036": 22424.92158512317, - "2037": 21932.552309233113, - "2038": 21440.183033343055, - "2039": 20947.81375745288, - "2040": 20455.444481562823, - "2041": 19963.075205672765, - "2042": 19470.705929782707, - "2043": 18978.336653892533, - "2044": 18485.967378002475, - "2045": 17993.598102112417, - "2046": 17501.22882622236, - "2047": 17008.859550332185, - "2048": 16516.490274442127, - "2049": 16024.120998552069, - "2050": 15531.751722661895 - }, - "trendEmission": 570246.3600400605, - "historicalEmissionChangePercent": -1.311758704299844, - "neededEmissionChangePercent": 35.38429212974496, - "hitNetZero": "2081-07-03", - "budgetRunsOut": "2026-05-04", - "electricCarChangePercent": 0.05899824729406899, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.047619047619047616, - "2017": 0.0, - "2018": 0.06896551724137931, - "2019": 0.11428571428571428, - "2020": 0.21739130434782608, - "2021": 0.3333333333333333, - "2022": 0.40425531914893614 - }, - "climatePlanLink": "https://www.storuman.se/kommun/Trafik--infrastruktur/strategi-for-co2-effektiva-resor-i-storumans-kommun/", - "climatePlanYear": 2020, - "climatePlanComment": "Strategi för koldioxideffektiva resor i Storumans kommun", - "bicycleMetrePerCapita": 3.261116272, - "totalConsumptionEmission": 6942.8, - "electricVehiclePerChargePoints": 1.9428571428571428 - }, - { - "kommun": "Strängnäs", - "län": "Södermanlands län", - "emissions": { - "1990": 150907.139732357, - "2000": 155847.446536176, - "2005": 158594.984069139, - "2010": 130197.217695462, - "2015": 110566.934191911, - "2016": 105127.84769721, - "2017": 106556.771837188, - "2018": 106162.420185408, - "2019": 104255.246866558, - "2020": 95521.5227426158, - "2021": 97788.2316329065 - }, - "budget": 215058.3894829964, - "emissionBudget": { - "2024": 90886.22161693685, - "2025": 59560.73645396197, - "2026": 39032.11360122416, - "2027": 25579.030463407325, - "2028": 16762.78169643879, - "2029": 10985.203313489203, - "2030": 7198.965781695476, - "2031": 4717.719540282343, - "2032": 3091.6771013627445, - "2033": 2026.0779000268196, - "2034": 1327.755623369496, - "2035": 870.1220201681194, - "2036": 570.2196373004974, - "2037": 373.68372162364915, - "2038": 244.8872586492717, - "2039": 160.48269158792297, - "2040": 105.16959698662951, - "2041": 68.92110308525278, - "2042": 45.166270353702465, - "2043": 29.59894555286427, - "2044": 19.397164542934327, - "2045": 12.711601216796002, - "2046": 8.330331226360054, - "2047": 5.459140603716993, - "2048": 3.5775547599892548, - "2049": 2.3444895432822017, - "2050": 1.5364212674067066 - }, - "approximatedHistoricalEmission": { - "2021": 97788.2316329065, - "2022": 95161.2417995669, - "2023": 93023.73170825187, - "2024": 90886.22161693685 - }, - "totalApproximatedHistoricalEmission": 282522.2001327404, - "trend": { - "2024": 90886.22161693685, - "2025": 88748.71152562089, - "2026": 86611.20143430587, - "2027": 84473.69134299085, - "2028": 82336.18125167489, - "2029": 80198.67116035987, - "2030": 78061.16106904484, - "2031": 75923.65097772889, - "2032": 73786.14088641386, - "2033": 71648.63079509791, - "2034": 69511.12070378289, - "2035": 67373.61061246786, - "2036": 65236.10052115191, - "2037": 63098.590429836884, - "2038": 60961.08033852186, - "2039": 58823.570247205906, - "2040": 56686.06015589088, - "2041": 54548.55006457586, - "2042": 52411.0399732599, - "2043": 50273.52988194488, - "2044": 48136.019790628925, - "2045": 45998.5096993139, - "2046": 43860.99960799888, - "2047": 41723.48951668292, - "2048": 39585.9794253679, - "2049": 37448.469334052876, - "2050": 35310.95924273692 - }, - "trendEmission": 1640563.351175759, - "historicalEmissionChangePercent": -1.955144619666009, - "neededEmissionChangePercent": 34.46670419967959, - "hitNetZero": "2066-06-28", - "budgetRunsOut": "2026-06-09", - "electricCarChangePercent": 0.06106344520813337, - "electricCarChangeYearly": { - "2015": 0.009823182711198428, - "2016": 0.014349775784753363, - "2017": 0.0343980343980344, - "2018": 0.04862385321100918, - "2019": 0.07553956834532374, - "2020": 0.21895424836601307, - "2021": 0.3390909090909091, - "2022": 0.42768595041322316 - }, - "climatePlanLink": "https://www.strangnas.se/download/18.269b989517934ecd2754df9c/1620303852652/Klimat%20och%20energiplan%20f%C3%B6r%20Str%C3%A4ngn%C3%A4s%20kommun.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Klimat– och energiplan 2021–2040", - "bicycleMetrePerCapita": 2.468682063, - "totalConsumptionEmission": 6398.4, - "electricVehiclePerChargePoints": 21.7 - }, - { - "kommun": "Strömstad", - "län": "Västra Götalands län", - "emissions": { - "1990": 84583.3409593481, - "2000": 73698.7217361907, - "2005": 63504.0356072859, - "2010": 55581.2012925234, - "2015": 49517.6727306613, - "2016": 48452.1122742838, - "2017": 54509.8845101564, - "2018": 55395.1975826076, - "2019": 55630.1130746084, - "2020": 49484.8103891686, - "2021": 53167.1119846155 - }, - "budget": 108467.48522292271, - "emissionBudget": { - "2024": 55336.83091146138, - "2025": 33223.88174060127, - "2026": 19947.40753549068, - "2027": 11976.296764284998, - "2028": 7190.492495379554, - "2029": 4317.126015138157, - "2030": 2591.9750340548635, - "2031": 1556.2053443901402, - "2032": 934.335802656182, - "2033": 560.969280353734, - "2034": 336.8023922512418, - "2035": 202.21401670093124, - "2036": 121.4080110209601, - "2037": 72.89259854753526, - "2038": 43.76425310266253, - "2039": 26.275779541387603, - "2040": 15.775811114336136, - "2041": 9.47169677395111, - "2042": 5.686746572171488, - "2043": 3.4142865157003914, - "2044": 2.0499159340666995, - "2045": 1.230756504299563, - "2046": 0.7389383865467302, - "2047": 0.443653913024036, - "2048": 0.26636699097657646, - "2049": 0.15992504923104697, - "2050": 0.09601798360143608 - }, - "approximatedHistoricalEmission": { - "2021": 53167.1119846155, - "2022": 54327.26358602673, - "2023": 54832.04724874406, - "2024": 55336.83091146138 - }, - "totalApproximatedHistoricalEmission": 163411.28228280923, - "trend": { - "2024": 55336.83091146138, - "2025": 55841.614574178704, - "2026": 56346.39823689603, - "2027": 56851.18189961335, - "2028": 57355.965562330675, - "2029": 57860.749225048, - "2030": 58365.53288776532, - "2031": 58870.31655048265, - "2032": 59375.10021319997, - "2033": 59879.883875917294, - "2034": 60384.66753863462, - "2035": 60889.45120135194, - "2036": 61394.234864069265, - "2037": 61899.01852678659, - "2038": 62403.80218950403, - "2039": 62908.58585222135, - "2040": 63413.36951493868, - "2041": 63918.153177656, - "2042": 64422.936840373324, - "2043": 64927.72050309065, - "2044": 65432.50416580797, - "2045": 65937.2878285253, - "2046": 66442.07149124262, - "2047": 66946.85515395994, - "2048": 67451.63881667727, - "2049": 67956.42247939459, - "2050": 68461.20614211191 - }, - "trendEmission": 1609374.4816964527, - "historicalEmissionChangePercent": 1.4655799219174028, - "neededEmissionChangePercent": 39.96063527064046, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-12-11", - "electricCarChangePercent": 0.07956377478869936, - "electricCarChangeYearly": { - "2015": 0.03415559772296015, - "2016": 0.018867924528301886, - "2017": 0.05008944543828265, - "2018": 0.06108597285067873, - "2019": 0.09382151029748284, - "2020": 0.2514124293785311, - "2021": 0.4421364985163205, - "2022": 0.5956284153005464 - }, - "climatePlanLink": "https://www.stromstad.se/download/18.52a121a217ce4d028c542f2/1636710420332/Strategi%20Agenda%202030%20antagen%20september%202021.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Strategi Agenda 2030. Gäller 2021–2025. ", - "bicycleMetrePerCapita": 4.20120415, - "totalConsumptionEmission": 6236.3, - "electricVehiclePerChargePoints": 2.1517857142857144 - }, - { - "kommun": "Strömsund", - "län": "Jämtlands län", - "emissions": { - "1990": 115515.873891828, - "2000": 101308.288350358, - "2005": 102870.587877141, - "2010": 80312.1296937297, - "2015": 69823.1971354768, - "2016": 66532.7472601122, - "2017": 58379.1068225176, - "2018": 44786.919796671, - "2019": 44907.7582471524, - "2020": 43357.7783332669, - "2021": 45590.2016067924 - }, - "budget": 110606.5210673896, - "emissionBudget": { - "2024": 24942.471382761374, - "2025": 19906.88579564216, - "2026": 15887.924496312167, - "2027": 12680.343243631563, - "2028": 10120.334145195286, - "2029": 8077.160155884934, - "2030": 6446.478470751741, - "2031": 5145.011844736996, - "2032": 4106.295708980646, - "2033": 3277.283893299725, - "2034": 2615.6396125568044, - "2035": 2087.57337036429, - "2036": 1666.1173640791374, - "2037": 1329.7482667167767, - "2038": 1061.288052665829, - "2039": 847.0267334976156, - "2040": 676.0222028858999, - "2041": 539.5414344333577, - "2042": 430.61449494956645, - "2043": 343.67859709498134, - "2044": 274.2940135236463, - "2045": 218.9173445506041, - "2046": 174.72056035578188, - "2047": 139.44657639487244, - "2048": 111.29398640122601, - "2049": 88.82506641110872, - "2050": 70.89235167203033 - }, - "approximatedHistoricalEmission": { - "2021": 45590.2016067924, - "2022": 34408.2051695548, - "2023": 29675.338276157156, - "2024": 24942.471382761374 - }, - "totalApproximatedHistoricalEmission": 99349.87994048884, - "trend": { - "2024": 24942.471382761374, - "2025": 20209.60448936373, - "2026": 15476.737595967948, - "2027": 10743.870702570304, - "2028": 6011.003809174523, - "2029": 1278.1369157768786, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 66190.58920423407, - "historicalEmissionChangePercent": -6.380512028296803, - "neededEmissionChangePercent": 20.18879969768947, - "hitNetZero": "2029-04-07", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.024459543701216134, - "electricCarChangeYearly": { - "2015": 0.02356020942408377, - "2016": 0.018617021276595744, - "2017": 0.03951367781155015, - "2018": 0.05019305019305019, - "2019": 0.05504587155963303, - "2020": 0.1411764705882353, - "2021": 0.08029197080291971, - "2022": 0.22875816993464052 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.501032709, - "totalConsumptionEmission": 6304.1, - "electricVehiclePerChargePoints": 3.4482758620689653 - }, - { - "kommun": "Sundbyberg", - "län": "Stockholms län", - "emissions": { - "1990": 45302.3997962639, - "2000": 64553.8466753027, - "2005": 39084.3462444404, - "2010": 30690.0107017824, - "2015": 21870.9869602274, - "2016": 24298.63491638, - "2017": 16967.4555040747, - "2018": 20365.4965119684, - "2019": 19895.804846443, - "2020": 17519.1526328395, - "2021": 17518.5543303956 - }, - "budget": 41009.23395359452, - "emissionBudget": { - "2024": 14700.602290145354, - "2025": 10271.96072921016, - "2026": 7177.473081709527, - "2027": 5015.217756057959, - "2028": 3504.354367385275, - "2029": 2448.6473229160288, - "2030": 1710.9781384630826, - "2031": 1195.5360671590631, - "2032": 835.3739044042139, - "2033": 583.712678629455, - "2034": 407.86585431558865, - "2035": 284.9939040337137, - "2036": 199.1378402408062, - "2037": 139.1464127986461, - "2038": 97.22775024233563, - "2039": 67.93732750312029, - "2040": 47.470814214690286, - "2041": 33.16995656183475, - "2042": 23.177315083285915, - "2043": 16.195014710631245, - "2044": 11.31617275491507, - "2045": 7.907110188360603, - "2046": 5.525047459506133, - "2047": 3.860594920598195, - "2048": 2.697568346730695, - "2049": 1.8849102625239502, - "2050": 1.3170701317258604 - }, - "approximatedHistoricalEmission": { - "2021": 17518.5543303956, - "2022": 16392.596084017307, - "2023": 15546.599187081447, - "2024": 14700.602290145354 - }, - "totalApproximatedHistoricalEmission": 48048.77358136923, - "trend": { - "2024": 14700.602290145354, - "2025": 13854.605393209262, - "2026": 13008.608496273402, - "2027": 12162.61159933731, - "2028": 11316.61470240145, - "2029": 10470.617805465357, - "2030": 9624.620908529265, - "2031": 8778.624011593405, - "2032": 7932.627114657313, - "2033": 7086.63021772122, - "2034": 6240.63332078536, - "2035": 5394.636423849268, - "2036": 4548.639526913408, - "2037": 3702.6426299773157, - "2038": 2856.645733041223, - "2039": 2010.6488361053634, - "2040": 1164.651939169271, - "2041": 318.6550422331784, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 127823.01484633505, - "historicalEmissionChangePercent": -2.216617784703468, - "neededEmissionChangePercent": 30.125579030894293, - "hitNetZero": "2041-05-13", - "budgetRunsOut": "2027-01-22", - "electricCarChangePercent": 0.11283712498598085, - "electricCarChangeYearly": { - "2015": 0.007127882599580713, - "2016": 0.01021021021021021, - "2017": 0.01494345718901454, - "2018": 0.23180873180873182, - "2019": 0.2512846865364851, - "2020": 0.4610318331503842, - "2021": 0.6775294847920547, - "2022": 0.6905537459283387 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 0.7312642807, - "totalConsumptionEmission": 6735.9, - "electricVehiclePerChargePoints": 111.1923076923077 - }, - { - "kommun": "Sundsvall", - "län": "Västernorrlands län", - "emissions": { - "1990": 618552.082352451, - "2000": 665540.962905154, - "2005": 756615.042010583, - "2010": 678961.798157491, - "2015": 556956.660935583, - "2016": 584362.917283945, - "2017": 579844.672650631, - "2018": 547232.688916581, - "2019": 543403.79480495, - "2020": 506020.197761347, - "2021": 498927.295715117 - }, - "budget": 1130643.937472883, - "emissionBudget": { - "2024": 466560.9441771023, - "2025": 308813.647758661, - "2026": 204401.74050618842, - "2027": 135292.1796856934, - "2028": 89549.01185663723, - "2029": 59271.90723905629, - "2030": 39231.68904844707, - "2031": 25967.199256579017, - "2032": 17187.519925491677, - "2033": 11376.307404978548, - "2034": 7529.90371697664, - "2035": 4983.99418796696, - "2036": 3298.8732657609767, - "2037": 2183.502711505296, - "2038": 1445.246211982376, - "2039": 956.5990471380918, - "2040": 633.1666738848121, - "2041": 419.0888942632234, - "2042": 277.3922073585374, - "2043": 183.60409392025787, - "2044": 121.52635297612053, - "2045": 80.43750088759398, - "2046": 53.24105752036401, - "2047": 35.23990893063531, - "2048": 23.32506601628783, - "2049": 15.438709156005133, - "2050": 10.218780955958476 - }, - "approximatedHistoricalEmission": { - "2021": 498927.295715117, - "2022": 492790.54507369176, - "2023": 479675.744625397, - "2024": 466560.9441771023 - }, - "totalApproximatedHistoricalEmission": 1455210.4096451984, - "trend": { - "2024": 466560.9441771023, - "2025": 453446.14372880384, - "2026": 440331.3432805091, - "2027": 427216.5428322144, - "2028": 414101.74238391966, - "2029": 400986.9419356212, - "2030": 387872.1414873265, - "2031": 374757.34103903174, - "2032": 361642.540590737, - "2033": 348527.74014243856, - "2034": 335412.93969414383, - "2035": 322298.1392458491, - "2036": 309183.33879755065, - "2037": 296068.5383492559, - "2038": 282953.7379009612, - "2039": 269838.93745266646, - "2040": 256724.137004368, - "2041": 243609.33655607328, - "2042": 230494.53610777855, - "2043": 217379.7356594801, - "2044": 204264.93521118537, - "2045": 191150.13476289064, - "2046": 178035.3343145959, - "2047": 164920.53386629745, - "2048": 151805.73341800272, - "2049": 138690.932969708, - "2050": 125576.13252140954 - }, - "trendEmission": 7697781.997080665, - "historicalEmissionChangePercent": -1.7429413731647372, - "neededEmissionChangePercent": 33.810651831706245, - "hitNetZero": "2059-07-20", - "budgetRunsOut": "2026-07-06", - "electricCarChangePercent": 0.06560283314932576, - "electricCarChangeYearly": { - "2015": 0.021411764705882352, - "2016": 0.02212689094603748, - "2017": 0.038834951456310676, - "2018": 0.03553038105046344, - "2019": 0.054164239953407106, - "2020": 0.1923743500866551, - "2021": 0.3104026845637584, - "2022": 0.534269902085994 - }, - "climatePlanLink": "https://sundsvall.se/download/18.75ef5e4f1817ff175a69ca1b/1659440126510/Klimatplan%202022-2024.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatplan 2022–2024.", - "bicycleMetrePerCapita": 2.684605556, - "totalConsumptionEmission": 6210.2, - "electricVehiclePerChargePoints": 16.15891472868217 - }, - { - "kommun": "Sunne", - "län": "Värmlands län", - "emissions": { - "1990": 95757.6568745329, - "2000": 98306.909780816, - "2005": 106760.846981131, - "2010": 73105.018767258, - "2015": 65214.6301302222, - "2016": 62293.1641656749, - "2017": 63612.3841641081, - "2018": 54287.4850595508, - "2019": 55955.8348548961, - "2020": 49630.413571995, - "2021": 50616.0916247363 - }, - "budget": 118969.8373151673, - "emissionBudget": { - "2024": 40920.50065023359, - "2025": 29010.975979840652, - "2026": 20567.60581931167, - "2027": 14581.598682944646, - "2028": 10337.7623053634, - "2029": 7329.054365430588, - "2030": 5196.002413749532, - "2031": 3683.7550572739947, - "2032": 2611.632990408741, - "2033": 1851.5419105087337, - "2034": 1312.6681501422574, - "2035": 930.6285008285084, - "2036": 659.7778779506906, - "2037": 467.755767038702, - "2038": 331.6198752791719, - "2039": 235.1050471838958, - "2040": 166.67994692661142, - "2041": 118.16932490491011, - "2042": 83.77726058810482, - "2043": 59.39468129563288, - "2044": 42.10842108521612, - "2045": 29.853163408088626, - "2046": 21.164682562342335, - "2047": 15.004901887327243, - "2048": 10.637867115895888, - "2049": 7.541816509379167, - "2050": 5.346842148098584 - }, - "approximatedHistoricalEmission": { - "2021": 50616.0916247363, - "2022": 46404.61965116393, - "2023": 43662.56015069876, - "2024": 40920.50065023359 - }, - "totalApproximatedHistoricalEmission": 135835.47593934764, - "trend": { - "2024": 40920.50065023359, - "2025": 38178.44114976842, - "2026": 35436.38164930325, - "2027": 32694.32214883808, - "2028": 29952.26264837198, - "2029": 27210.20314790681, - "2030": 24468.14364744164, - "2031": 21726.08414697647, - "2032": 18984.0246465113, - "2033": 16241.965146046132, - "2034": 13499.905645580031, - "2035": 10757.846145114861, - "2036": 8015.786644649692, - "2037": 5273.727144184522, - "2038": 2531.667643719353, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 305431.01187952934, - "historicalEmissionChangePercent": -3.8776742363974517, - "neededEmissionChangePercent": 29.104054156592905, - "hitNetZero": "2038-11-29", - "budgetRunsOut": "2027-04-07", - "electricCarChangePercent": 0.05265839985775768, - "electricCarChangeYearly": { - "2015": 0.0024509803921568627, - "2016": 0.012315270935960592, - "2017": 0.03225806451612903, - "2018": 0.041379310344827586, - "2019": 0.055865921787709494, - "2020": 0.1801470588235294, - "2021": 0.29045643153526973, - "2022": 0.3702290076335878 - }, - "climatePlanLink": "https://sunne.se/globalassets/dokument/7.-kommun-och-politik/kommunfakta/forfattningssamling/bygga-bo-och-miljo/miljostrategi-2018-2030-kf-2018-05-07.pdf", - "climatePlanYear": 2018, - "climatePlanComment": "Miljöstrategi. ", - "bicycleMetrePerCapita": 2.987040734, - "totalConsumptionEmission": 6363.6, - "electricVehiclePerChargePoints": 17.181818181818183 - }, - { - "kommun": "Surahammar", - "län": "Västmanlands län", - "emissions": { - "1990": 62711.2060610526, - "2000": 59123.2413393237, - "2005": 61486.5756211616, - "2010": 52180.6478444162, - "2015": 41026.4362734628, - "2016": 31860.0674104941, - "2017": 26044.1543452283, - "2018": 27647.1164246562, - "2019": 27467.6687078426, - "2020": 25029.4070872459, - "2021": 25547.0441284823 - }, - "budget": 60615.60536025655, - "emissionBudget": { - "2024": 16658.274328453466, - "2025": 12655.46077604812, - "2026": 9614.482526592034, - "2027": 7304.220359095366, - "2028": 5549.090645977216, - "2029": 4215.700715946842, - "2030": 3202.7107971859373, - "2031": 2433.132032264674, - "2032": 1848.4752015805323, - "2033": 1404.305448922924, - "2034": 1066.8651611817138, - "2035": 810.5083356446868, - "2036": 615.7514426864203, - "2037": 467.7926462888603, - "2038": 355.38684077980605, - "2039": 269.9910047783469, - "2040": 205.1149178772953, - "2041": 155.82789348981953, - "2042": 118.38403876601907, - "2043": 89.93756073247508, - "2044": 68.32648146507941, - "2045": 51.908324301618656, - "2046": 39.43528298291077, - "2047": 29.95938637714332, - "2048": 22.760451154462878, - "2049": 17.29134669960773, - "2050": 13.136412308216 - }, - "approximatedHistoricalEmission": { - "2021": 25547.0441284823, - "2022": 20849.415951226838, - "2023": 18753.845139840618, - "2024": 16658.274328453466 - }, - "totalApproximatedHistoricalEmission": 60705.92031953534, - "trend": { - "2024": 16658.274328453466, - "2025": 14562.703517067246, - "2026": 12467.132705681026, - "2027": 10371.561894293875, - "2028": 8275.991082907654, - "2029": 6180.420271521434, - "2030": 4084.849460135214, - "2031": 1989.2786487480626, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 66261.07474458124, - "historicalEmissionChangePercent": -6.9833582918008, - "neededEmissionChangePercent": 24.02898087449711, - "hitNetZero": "2031-12-11", - "budgetRunsOut": "2029-08-21", - "electricCarChangePercent": 0.08341704594444087, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.005025125628140704, - "2017": 0.005291005291005291, - "2018": 0.011049723756906077, - "2019": 0.03977272727272727, - "2020": 0.2037037037037037, - "2021": 0.44516129032258067, - "2022": 0.5974842767295597 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 0.6599069754, - "totalConsumptionEmission": 6040.2, - "electricVehiclePerChargePoints": 49.833333333333336 - }, - { - "kommun": "Svalöv", - "län": "Skåne län", - "emissions": { - "1990": 68460.7965704761, - "2000": 57621.6286108437, - "2005": 53527.2253447011, - "2010": 51931.1329674847, - "2015": 42771.6711887478, - "2016": 42259.9030075629, - "2017": 38969.7037504134, - "2018": 37685.0129478558, - "2019": 37442.1209784772, - "2020": 34013.5525984376, - "2021": 34907.3224756623 - }, - "budget": 79404.84494156172, - "emissionBudget": { - "2024": 29375.613193284255, - "2025": 20291.812537624384, - "2026": 14016.989308540618, - "2027": 9682.52534914971, - "2028": 6688.4046975625215, - "2029": 4620.153914939648, - "2030": 3191.466898752595, - "2031": 2204.571785562811, - "2032": 1522.8535691845068, - "2033": 1051.9426077958021, - "2034": 726.6511189836936, - "2035": 501.94929343783235, - "2036": 346.7318587978299, - "2037": 239.51220467309645, - "2038": 165.4480104201095, - "2039": 114.2866359955784, - "2040": 78.94585818239776, - "2041": 54.53348477591365, - "2042": 37.67013280080962, - "2043": 26.02142355401786, - "2044": 17.974836652634313, - "2045": 12.416490282254303, - "2046": 8.576947535527182, - "2047": 5.92470395054582, - "2048": 4.09261182445319, - "2049": 2.8270562859281827, - "2050": 1.952847615806777 - }, - "approximatedHistoricalEmission": { - "2021": 34907.3224756623, - "2022": 32347.9938882445, - "2023": 30861.803540764377, - "2024": 29375.613193284255 - }, - "totalApproximatedHistoricalEmission": 95351.26526348216, - "trend": { - "2024": 29375.613193284255, - "2025": 27889.422845804133, - "2026": 26403.23249832401, - "2027": 24917.04215084389, - "2028": 23430.851803363767, - "2029": 21944.661455883645, - "2030": 20458.471108403523, - "2031": 18972.2807609234, - "2032": 17486.09041344328, - "2033": 15999.900065963622, - "2034": 14513.7097184835, - "2035": 13027.519371003378, - "2036": 11541.329023523256, - "2037": 10055.138676043134, - "2038": 8568.948328563012, - "2039": 7082.75798108289, - "2040": 5596.567633602768, - "2041": 4110.377286122646, - "2042": 2624.186938642524, - "2043": 1137.9965911624022, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 290448.2912478249, - "historicalEmissionChangePercent": -3.2421012741001323, - "neededEmissionChangePercent": 30.922931194289337, - "hitNetZero": "2043-10-02", - "budgetRunsOut": "2026-12-02", - "electricCarChangePercent": 0.06736436245177074, - "electricCarChangeYearly": { - "2015": 0.022935779816513763, - "2016": 0.004132231404958678, - "2017": 0.019230769230769232, - "2018": 0.07692307692307693, - "2019": 0.10975609756097561, - "2020": 0.18222222222222223, - "2021": 0.33191489361702126, - "2022": 0.522633744855967 - }, - "climatePlanLink": "https://svalov.se/download/18.37f8c5ee180940ed9988850/1652432039176/Energi-%20och%20klimatplan%202022-2030.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimatplan 2022–2030", - "bicycleMetrePerCapita": 2.955402172, - "totalConsumptionEmission": 6000.6, - "electricVehiclePerChargePoints": 21.35 - }, - { - "kommun": "Svedala", - "län": "Skåne län", - "emissions": { - "1990": 113965.474496974, - "2000": 100147.85656133, - "2005": 93492.1565213109, - "2010": 93336.8796312977, - "2015": 82567.4172559422, - "2016": 79188.7082417533, - "2017": 77995.3810889029, - "2018": 75676.578625795, - "2019": 75444.7431179016, - "2020": 68466.052668362, - "2021": 71581.5772144457 - }, - "budget": 157275.7649940149, - "emissionBudget": { - "2024": 63641.46490709949, - "2025": 42462.28730072924, - "2026": 28331.306412284255, - "2027": 18902.960110039912, - "2028": 12612.263470025786, - "2029": 8415.041290430521, - "2030": 5614.60836018404, - "2031": 3746.128622576934, - "2032": 2499.458333800893, - "2033": 1667.6661673483247, - "2034": 1112.6852598855103, - "2035": 742.3958774285607, - "2036": 495.33471745606994, - "2037": 330.4927866344392, - "2038": 220.50843231493025, - "2039": 147.12565807305072, - "2040": 98.16386174526635, - "2041": 65.49601122571859, - "2042": 43.69966105868197, - "2043": 29.156895830838156, - "2044": 19.45380247569338, - "2045": 12.979791571742698, - "2046": 8.66026009343853, - "2047": 5.77822105011924, - "2048": 3.855292813819469, - "2049": 2.5722938861920692, - "2050": 1.7162628512218987 - }, - "approximatedHistoricalEmission": { - "2021": 71581.5772144457, - "2022": 67709.56985297613, - "2023": 65675.51738003781, - "2024": 63641.46490709949 - }, - "totalApproximatedHistoricalEmission": 200996.60829378653, - "trend": { - "2024": 63641.46490709949, - "2025": 61607.412434161175, - "2026": 59573.35996122286, - "2027": 57539.30748828454, - "2028": 55505.25501534622, - "2029": 53471.202542407904, - "2030": 51437.150069469586, - "2031": 49403.09759653127, - "2032": 47369.04512359295, - "2033": 45334.99265065463, - "2034": 43300.940177716315, - "2035": 41266.887704778, - "2036": 39232.83523183968, - "2037": 37198.78275890136, - "2038": 35164.73028596304, - "2039": 33130.677813024726, - "2040": 31096.625340086874, - "2041": 29062.572867148556, - "2042": 27028.520394210238, - "2043": 24994.46792127192, - "2044": 22960.415448333602, - "2045": 20926.362975395285, - "2046": 18892.310502456967, - "2047": 16858.25802951865, - "2048": 14824.205556580331, - "2049": 12790.153083642013, - "2050": 10756.100610703696 - }, - "trendEmission": 967168.3517314403, - "historicalEmissionChangePercent": -2.2629924169060507, - "neededEmissionChangePercent": 33.278897079579366, - "hitNetZero": "2055-04-08", - "budgetRunsOut": "2026-07-30", - "electricCarChangePercent": 0.07491986404593716, - "electricCarChangeYearly": { - "2015": 0.019455252918287938, - "2016": 0.024761904761904763, - "2017": 0.03951890034364261, - "2018": 0.04230769230769231, - "2019": 0.05921052631578947, - "2020": 0.23192019950124687, - "2021": 0.3937007874015748, - "2022": 0.5700934579439252 - }, - "climatePlanLink": "https://www.svedala.se/contentassets/ff83c3d46b1e464cb1c0a32030db2256/hallbarhetsstrategi-svedala-kommun-2021-tillganglighetsanpassad-webb.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Hållbarhetsstrategi.", - "bicycleMetrePerCapita": 3.437934295, - "totalConsumptionEmission": 5950.1, - "electricVehiclePerChargePoints": 73.84615384615384 - }, - { - "kommun": "Svenljunga", - "län": "Västra Götalands län", - "emissions": { - "1990": 54174.7924972031, - "2000": 48835.0896053109, - "2005": 45425.7537240334, - "2010": 47569.6589799112, - "2015": 34529.2895304157, - "2016": 33053.380464053, - "2017": 31629.602691937, - "2018": 31273.6736132212, - "2019": 30717.3383448397, - "2020": 27975.5897151681, - "2021": 30903.7259124321 - }, - "budget": 65195.56514389947, - "emissionBudget": { - "2024": 26737.97074626293, - "2025": 17742.541112379007, - "2026": 11773.435168727512, - "2027": 7812.509763639137, - "2028": 5184.154661086363, - "2029": 3440.0545232143995, - "2030": 2282.720307616745, - "2031": 1514.7469226554256, - "2032": 1005.1420807175411, - "2033": 666.9831027998156, - "2034": 442.5906227136493, - "2035": 293.6902876426362, - "2036": 194.88434826469327, - "2037": 129.31959549431352, - "2038": 85.81272907611246, - "2039": 56.94283564174986, - "2040": 37.785612528968585, - "2041": 25.073435456778252, - "2042": 16.638003820190686, - "2043": 11.040496289304656, - "2044": 7.326152802431133, - "2045": 4.861422301872795, - "2046": 3.225898699424292, - "2047": 2.1406127204662706, - "2048": 1.4204484535859017, - "2049": 0.9425683543799044, - "2050": 0.6254609946848814 - }, - "approximatedHistoricalEmission": { - "2021": 30903.7259124321, - "2022": 28305.437653321307, - "2023": 27521.70419979212, - "2024": 26737.97074626293 - }, - "totalApproximatedHistoricalEmission": 84647.99018246094, - "trend": { - "2024": 26737.97074626293, - "2025": 25954.237292733742, - "2026": 25170.503839204554, - "2027": 24386.770385675365, - "2028": 23603.036932146177, - "2029": 22819.30347861699, - "2030": 22035.5700250878, - "2031": 21251.83657155861, - "2032": 20468.103118029423, - "2033": 19684.369664500235, - "2034": 18900.636210971046, - "2035": 18116.902757441858, - "2036": 17333.16930391267, - "2037": 16549.43585038348, - "2038": 15765.702396854293, - "2039": 14981.968943325104, - "2040": 14198.235489795916, - "2041": 13414.502036266727, - "2042": 12630.768582737539, - "2043": 11847.03512920835, - "2044": 11063.301675679162, - "2045": 10279.568222149974, - "2046": 9495.834768620785, - "2047": 8712.101315091597, - "2048": 7928.3678615624085, - "2049": 7144.63440803322, - "2050": 6360.900954504032 - }, - "trendEmission": 430285.3321099705, - "historicalEmissionChangePercent": -1.657514977219367, - "neededEmissionChangePercent": 33.642903267598115, - "hitNetZero": "2058-02-03", - "budgetRunsOut": "2026-07-14", - "electricCarChangePercent": 0.07129087547601946, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.013043478260869565, - "2017": 0.024896265560165973, - "2018": 0.021739130434782608, - "2019": 0.06878306878306878, - "2020": 0.211340206185567, - "2021": 0.3655913978494624, - "2022": 0.5170454545454546 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 4.050901246, - "totalConsumptionEmission": 6070.4, - "electricVehiclePerChargePoints": 10000000000.0 - }, - { - "kommun": "Säffle", - "län": "Värmlands län", - "emissions": { - "1990": 162646.801798649, - "2000": 119975.64868208, - "2005": 85986.3030297037, - "2010": 82738.8114136594, - "2015": 64920.5231642597, - "2016": 64753.1771578997, - "2017": 61542.4025889801, - "2018": 61829.2117161505, - "2019": 60000.4093972222, - "2020": 56771.8956203948, - "2021": 62848.4238097407 - }, - "budget": 128169.63806648056, - "emissionBudget": { - "2024": 56726.39456559415, - "2025": 36439.42229757188, - "2026": 23407.64837161251, - "2027": 15036.40748787513, - "2028": 9658.960462496565, - "2029": 6204.641453838114, - "2030": 3985.6851801146936, - "2031": 2560.2907876585227, - "2032": 1644.6579750135875, - "2033": 1056.481501169452, - "2034": 678.653664938473, - "2035": 435.9478101837097, - "2036": 280.04047281053414, - "2037": 179.89003403618437, - "2038": 115.55624092748015, - "2039": 74.23004219680055, - "2040": 47.68326764797384, - "2041": 30.63037479569571, - "2042": 19.676081493644425, - "2043": 12.639355069169445, - "2044": 8.119162172414317, - "2045": 5.2155188315550145, - "2046": 3.35030094296248, - "2047": 2.152138027094167, - "2048": 1.3824722514536936, - "2049": 0.8880608501769771, - "2050": 0.5704650294338802 - }, - "approximatedHistoricalEmission": { - "2021": 62848.4238097407, - "2022": 58420.74130347464, - "2023": 57573.56793453451, - "2024": 56726.39456559415 - }, - "totalApproximatedHistoricalEmission": 175781.71842567658, - "trend": { - "2024": 56726.39456559415, - "2025": 55879.22119665402, - "2026": 55032.04782771389, - "2027": 54184.87445877376, - "2028": 53337.70108983363, - "2029": 52490.5277208935, - "2030": 51643.35435195337, - "2031": 50796.18098301324, - "2032": 49949.00761407311, - "2033": 49101.83424513298, - "2034": 48254.66087619262, - "2035": 47407.48750725249, - "2036": 46560.31413831236, - "2037": 45713.14076937223, - "2038": 44865.9674004321, - "2039": 44018.79403149197, - "2040": 43171.62066255184, - "2041": 42324.44729361171, - "2042": 41477.27392467158, - "2043": 40630.10055573145, - "2044": 39782.92718679109, - "2045": 38935.75381785096, - "2046": 38088.58044891083, - "2047": 37241.4070799707, - "2048": 36394.23371103057, - "2049": 35547.06034209044, - "2050": 34699.88697315031 - }, - "trendEmission": 1188541.6600036786, - "historicalEmissionChangePercent": -0.397576167462798, - "neededEmissionChangePercent": 35.76284448073628, - "hitNetZero": "2090-11-30", - "budgetRunsOut": "2026-04-20", - "electricCarChangePercent": 0.06686873815265758, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.014598540145985401, - "2018": 0.03153153153153153, - "2019": 0.0502092050209205, - "2020": 0.17964071856287425, - "2021": 0.28205128205128205, - "2022": 0.5275590551181102 - }, - "climatePlanLink": "https://saffle.se/download/18.1112efe616fe8dd058623460/1580994326995/Huvuddokument.pdf", - "climatePlanYear": 2018, - "climatePlanComment": "Energi- och klimatplan till 2030. ", - "bicycleMetrePerCapita": 3.257070608, - "totalConsumptionEmission": 5995.4, - "electricVehiclePerChargePoints": 24.0 - }, - { - "kommun": "Säter", - "län": "Dalarnas län", - "emissions": { - "1990": 56436.7280419218, - "2000": 54063.2637171183, - "2005": 49330.1547045155, - "2010": 44733.5732993207, - "2015": 38721.3594994793, - "2016": 36416.6475050616, - "2017": 35400.9468275324, - "2018": 33527.6072188683, - "2019": 33026.0284440184, - "2020": 30536.1454124993, - "2021": 30700.30201637 - }, - "budget": 70600.74823380954, - "emissionBudget": { - "2024": 25861.484913840424, - "2025": 17929.523120607355, - "2026": 12430.36895999549, - "2027": 8617.857343011436, - "2028": 5974.679064113883, - "2029": 4142.1885392554905, - "2030": 2871.7401739275233, - "2031": 1990.9503269572472, - "2032": 1380.3070488058752, - "2033": 956.9538341496237, - "2034": 663.4470507746115, - "2035": 459.9615712629126, - "2036": 318.8870110909892, - "2037": 221.0813515645192, - "2038": 153.27361199935578, - "2039": 106.26314688723552, - "2040": 73.67123563595314, - "2041": 51.07557153269365, - "2042": 35.41021112069142, - "2043": 24.5495647720618, - "2044": 17.01998128289865, - "2045": 11.799792198348275, - "2046": 8.180684432602837, - "2047": 5.671591216258739, - "2048": 3.932060598273043, - "2049": 2.726060457983829, - "2050": 1.8899519564492138 - }, - "approximatedHistoricalEmission": { - "2021": 30700.30201637, - "2022": 28589.991700837854, - "2023": 27225.73830733914, - "2024": 25861.484913840424 - }, - "totalApproximatedHistoricalEmission": 84096.6234732822, - "trend": { - "2024": 25861.484913840424, - "2025": 24497.231520341244, - "2026": 23132.97812684253, - "2027": 21768.724733343814, - "2028": 20404.4713398451, - "2029": 19040.217946346384, - "2030": 17675.96455284767, - "2031": 16311.711159348954, - "2032": 14947.457765849773, - "2033": 13583.204372351058, - "2034": 12218.950978852343, - "2035": 10854.697585353628, - "2036": 9490.444191854913, - "2037": 8126.190798356198, - "2038": 6761.937404857017, - "2039": 5397.684011358302, - "2040": 4033.430617859587, - "2041": 2669.177224360872, - "2042": 1304.923830862157, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 245150.14061775175, - "historicalEmissionChangePercent": -3.755086965429687, - "neededEmissionChangePercent": 30.670944919284516, - "hitNetZero": "2042-12-11", - "budgetRunsOut": "2026-12-17", - "electricCarChangePercent": 0.0856519990705167, - "electricCarChangeYearly": { - "2015": 0.021164021164021163, - "2016": 0.016483516483516484, - "2017": 0.022099447513812154, - "2018": 0.045454545454545456, - "2019": 0.06896551724137931, - "2020": 0.27450980392156865, - "2021": 0.4666666666666667, - "2022": 0.6158940397350994 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Kretsloppsplan och Plan för klimatneutralitet kommer under 2023.", - "bicycleMetrePerCapita": 2.146936866, - "totalConsumptionEmission": 6320.1, - "electricVehiclePerChargePoints": 42.875 - }, - { - "kommun": "Sävsjö", - "län": "Jönköpings län", - "emissions": { - "1990": 56041.8371978068, - "2000": 55379.7868019927, - "2005": 49132.6334808975, - "2010": 45054.4341184776, - "2015": 38427.9137624255, - "2016": 37303.7558247459, - "2017": 36761.5395828403, - "2018": 35588.60538361, - "2019": 34730.4778545937, - "2020": 30991.4370075893, - "2021": 31268.2196793714 - }, - "budget": 72598.21631708005, - "emissionBudget": { - "2024": 27267.11095394194, - "2025": 18729.353153810483, - "2026": 12864.900507893299, - "2027": 8836.699469480673, - "2028": 6069.7910151741435, - "2029": 4169.24476102546, - "2030": 2863.789187120725, - "2031": 1967.0921182023408, - "2032": 1351.1648898235237, - "2033": 928.0940849685328, - "2034": 637.4933489176742, - "2035": 437.88423662677496, - "2036": 300.7758512488812, - "2037": 206.59824019104124, - "2038": 141.90910830376677, - "2039": 97.47515274548539, - "2040": 66.95416183165108, - "2041": 45.989769293144796, - "2042": 31.589655097987336, - "2043": 21.69844129569364, - "2044": 14.90432083548329, - "2045": 10.237545478029688, - "2046": 7.032010285581565, - "2047": 4.830178167476321, - "2048": 3.317774033607717, - "2049": 2.2789272271985204, - "2050": 1.56535956163939 - }, - "approximatedHistoricalEmission": { - "2021": 31268.2196793714, - "2022": 29848.16678335052, - "2023": 28557.63886864623, - "2024": 27267.11095394194 - }, - "totalApproximatedHistoricalEmission": 87673.47096865342, - "trend": { - "2024": 27267.11095394194, - "2025": 25976.583039237652, - "2026": 24686.055124533363, - "2027": 23395.527209829073, - "2028": 22104.99929512432, - "2029": 20814.47138042003, - "2030": 19523.94346571574, - "2031": 18233.41555101145, - "2032": 16942.88763630716, - "2033": 15652.359721602872, - "2034": 14361.831806898583, - "2035": 13071.303892194293, - "2036": 11780.775977489538, - "2037": 10490.24806278525, - "2038": 9199.72014808096, - "2039": 7909.192233376671, - "2040": 6618.664318672381, - "2041": 5328.136403968092, - "2042": 4037.6084892638028, - "2043": 2747.0805745595135, - "2044": 1456.5526598547585, - "2045": 166.02474515046924, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 288130.93721304694, - "historicalEmissionChangePercent": -3.3089277795908583, - "neededEmissionChangePercent": 31.311559976240094, - "hitNetZero": "2045-02-10", - "budgetRunsOut": "2026-11-09", - "electricCarChangePercent": 0.06408601095112333, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.014423076923076924, - "2017": 0.010416666666666666, - "2018": 0.03592814371257485, - "2019": 0.06179775280898876, - "2020": 0.2153846153846154, - "2021": 0.27044025157232704, - "2022": 0.4946236559139785 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 4.341989408, - "totalConsumptionEmission": 5823.0, - "electricVehiclePerChargePoints": 25.666666666666668 - }, - { - "kommun": "Söderhamn", - "län": "Gävleborgs län", - "emissions": { - "1990": 183090.800019136, - "2000": 207984.544102055, - "2005": 191534.390753741, - "2010": 156016.205566023, - "2015": 137111.69429857, - "2016": 139994.321066449, - "2017": 124301.267816654, - "2018": 107917.600493115, - "2019": 113335.588794732, - "2020": 100166.783278193, - "2021": 96823.3419136609 - }, - "budget": 242806.94552412827, - "emissionBudget": { - "2024": 71774.55429023318, - "2025": 53406.18878416939, - "2026": 39738.60971559471, - "2027": 29568.803505343014, - "2028": 22001.628818797763, - "2029": 16371.02666642164, - "2030": 12181.394219490943, - "2031": 9063.962093165508, - "2032": 6744.335446831507, - "2033": 5018.341885353402, - "2034": 3734.0603053965374, - "2035": 2778.448874723521, - "2036": 2067.3951457869134, - "2037": 1538.3125195163454, - "2038": 1144.631403688433, - "2039": 851.7001803519613, - "2040": 633.7351874796321, - "2041": 471.5512537332993, - "2042": 350.8730291303147, - "2043": 261.0784757677955, - "2044": 194.26392127711784, - "2045": 144.54838147410902, - "2046": 107.55591902718201, - "2047": 80.03047560829175, - "2048": 59.54927524231104, - "2049": 44.309572758769384, - "2050": 32.96997704969014 - }, - "approximatedHistoricalEmission": { - "2021": 96823.3419136609, - "2022": 86880.68370117247, - "2023": 79327.6189957019, - "2024": 71774.55429023318 - }, - "totalApproximatedHistoricalEmission": 250507.2507988214, - "trend": { - "2024": 71774.55429023318, - "2025": 64221.4895847626, - "2026": 56668.424879292026, - "2027": 49115.36017382145, - "2028": 41562.295468352735, - "2029": 34009.23076288216, - "2030": 26456.16605741158, - "2031": 18903.101351941004, - "2032": 11350.03664647229, - "2033": 3796.9719410017133, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 341970.35401105415, - "historicalEmissionChangePercent": -5.37078135285147, - "neededEmissionChangePercent": 25.591751405084363, - "hitNetZero": "2033-06-30", - "budgetRunsOut": "2028-05-27", - "electricCarChangePercent": 0.06065326724571211, - "electricCarChangeYearly": { - "2015": 0.040380047505938245, - "2016": 0.015765765765765764, - "2017": 0.03824091778202677, - "2018": 0.06444444444444444, - "2019": 0.04805491990846682, - "2020": 0.16573033707865167, - "2021": 0.30294906166219837, - "2022": 0.5107913669064749 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete med ny energi– och klimatplan pågår 2023.", - "bicycleMetrePerCapita": 2.8062868, - "totalConsumptionEmission": 6077.3, - "electricVehiclePerChargePoints": 17.511627906976745 - }, - { - "kommun": "Söderköping", - "län": "Östergötlands län", - "emissions": { - "1990": 72832.0075837128, - "2000": 63556.371344405, - "2005": 56165.2213184089, - "2010": 51399.3301714707, - "2015": 45384.788251437, - "2016": 44328.5724276244, - "2017": 41846.093522104, - "2018": 39784.0126356058, - "2019": 39083.7911488804, - "2020": 33910.7478004584, - "2021": 34326.3895574425 - }, - "budget": 82549.382447531, - "emissionBudget": { - "2024": 27643.52482560603, - "2025": 19776.985936343495, - "2026": 14149.034003219002, - "2027": 10122.632633133228, - "2028": 7242.027363992597, - "2029": 5181.158127693884, - "2030": 3706.7520177621677, - "2031": 2651.9187761790117, - "2032": 1897.2602326110116, - "2033": 1357.3554448879572, - "2034": 971.0917733364668, - "2035": 694.7474486460728, - "2036": 497.04263866005294, - "2037": 355.5988368544615, - "2038": 254.40580533118066, - "2039": 182.00935177045028, - "2040": 130.21481207464922, - "2041": 93.15948394245669, - "2042": 66.64901872645298, - "2043": 47.68265676463918, - "2044": 34.11356685484083, - "2045": 24.40584318327465, - "2046": 17.460653822016564, - "2047": 12.491862280801353, - "2048": 8.937043528447061, - "2049": 6.393822252756518, - "2050": 4.574327390229033 - }, - "approximatedHistoricalEmission": { - "2021": 34326.3895574425, - "2022": 31698.749662001617, - "2023": 29671.13724380359, - "2024": 27643.52482560603 - }, - "totalApproximatedHistoricalEmission": 92354.84409732948, - "trend": { - "2024": 27643.52482560603, - "2025": 25615.912407408003, - "2026": 23588.29998921044, - "2027": 21560.687571012415, - "2028": 19533.075152814854, - "2029": 17505.462734616827, - "2030": 15477.850316419266, - "2031": 13450.23789822124, - "2032": 11422.625480023678, - "2033": 9395.013061825652, - "2034": 7367.400643627625, - "2035": 5339.788225430064, - "2036": 3312.175807232037, - "2037": 1284.5633890344761, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 188674.8550896796, - "historicalEmissionChangePercent": -4.437556516985292, - "neededEmissionChangePercent": 28.457076074378946, - "hitNetZero": "2037-08-16", - "budgetRunsOut": "2027-05-31", - "electricCarChangePercent": 0.07926457547430098, - "electricCarChangeYearly": { - "2015": 0.015015015015015015, - "2016": 0.022151898734177215, - "2017": 0.0339943342776204, - "2018": 0.07003891050583658, - "2019": 0.10546875, - "2020": 0.2882882882882883, - "2021": 0.42700729927007297, - "2022": 0.562962962962963 - }, - "climatePlanLink": "/data/climatePlans/Söderköping Mål och strategier för Miljö och klimat.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Mål och strategier för miljö och klimat 2022–2025", - "bicycleMetrePerCapita": 2.754640529, - "totalConsumptionEmission": 6070.9, - "electricVehiclePerChargePoints": 12.326530612244898 - }, - { - "kommun": "Södertälje", - "län": "Stockholms län", - "emissions": { - "1990": 643575.540993731, - "2000": 370430.77645954, - "2005": 367872.007968134, - "2010": 469345.863573777, - "2015": 311341.738513186, - "2016": 292214.239640774, - "2017": 253970.413427884, - "2018": 354904.100055642, - "2019": 457095.326327766, - "2020": 267642.807331948, - "2021": 263087.387205743 - }, - "budget": 651786.8019510063, - "emissionBudget": { - "2024": 316297.7862918363, - "2025": 194689.53195305297, - "2026": 119836.4816158599, - "2027": 73762.47804392103, - "2028": 45402.72789901275, - "2029": 27946.5624710215, - "2030": 17201.837644730815, - "2031": 10588.179446488548, - "2032": 6517.300436525364, - "2033": 4011.5682960039107, - "2034": 2469.224850110389, - "2035": 1519.8722570612144, - "2036": 935.5209905979525, - "2037": 575.8375546255688, - "2038": 354.4430244213065, - "2039": 218.1689203001222, - "2040": 134.28865714774048, - "2041": 82.65816878836748, - "2042": 50.87825742370387, - "2043": 31.31689361641131, - "2044": 19.276364314409495, - "2045": 11.8651046854506, - "2046": 7.30328120492436, - "2047": 4.495359946010953, - "2048": 2.767011221007598, - "2049": 1.703167530327791, - "2050": 1.0483440089941385 - }, - "approximatedHistoricalEmission": { - "2021": 263087.387205743, - "2022": 315639.2866946977, - "2023": 315968.53649326693, - "2024": 316297.7862918363 - }, - "totalApproximatedHistoricalEmission": 921300.4099367543, - "trend": { - "2024": 316297.7862918363, - "2025": 316627.03609040554, - "2026": 316956.2858889749, - "2027": 317285.53568754415, - "2028": 317614.7854861135, - "2029": 317944.03528468276, - "2030": 318273.285083252, - "2031": 318602.53488182137, - "2032": 318931.7846803906, - "2033": 319261.03447896, - "2034": 319590.2842775292, - "2035": 319919.5340760986, - "2036": 320248.78387466783, - "2037": 320578.0336732371, - "2038": 320907.28347180644, - "2039": 321236.5332703757, - "2040": 321565.78306894505, - "2041": 321895.0328675143, - "2042": 322224.28266608354, - "2043": 322553.5324646529, - "2044": 322882.78226322215, - "2045": 323212.0320617915, - "2046": 323541.28186036076, - "2047": 323870.5316589301, - "2048": 324199.78145749937, - "2049": 324529.0312560686, - "2050": 324858.281054638 - }, - "trendEmission": 8335028.875504165, - "historicalEmissionChangePercent": 1.0260119439827597, - "neededEmissionChangePercent": 38.4473934403638, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2026-01-22", - "electricCarChangePercent": 0.07725999060272203, - "electricCarChangeYearly": { - "2015": 0.03426318981200728, - "2016": 0.08409986859395532, - "2017": 0.09640190088255261, - "2018": 0.08956619296933432, - "2019": 0.08756756756756756, - "2020": 0.3804869684499314, - "2021": 0.47784200385356457, - "2022": 0.5586734693877551 - }, - "climatePlanLink": "https://www.sodertalje.se/globalassets/styrande-dokument/miljo--och-klimatstrategi-2022-2030_antagen-av-kf.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljö– och klimatstrategi, gäller till 2030", - "bicycleMetrePerCapita": 2.64348271, - "totalConsumptionEmission": 5805.2, - "electricVehiclePerChargePoints": 144.68539325842696 - }, - { - "kommun": "Sölvesborg", - "län": "Blekinge län", - "emissions": { - "1990": 85629.7454763797, - "2000": 75183.8794608898, - "2005": 66873.2680394814, - "2010": 61280.2561379788, - "2015": 50947.1857846873, - "2016": 45678.0371662731, - "2017": 45132.3917235743, - "2018": 45057.2863372865, - "2019": 46129.3196636425, - "2020": 37484.1667197043, - "2021": 39524.008095575 - }, - "budget": 91817.89731102697, - "emissionBudget": { - "2024": 33637.41092287609, - "2025": 23319.494695981597, - "2026": 16166.488976298939, - "2027": 11207.591297672143, - "2028": 7769.782472855329, - "2029": 5386.4847559197515, - "2030": 3734.2381369260374, - "2031": 2588.800506294534, - "2032": 1794.7136244791607, - "2033": 1244.2044051132714, - "2034": 862.5580040116556, - "2035": 597.9775567639447, - "2036": 414.55433342491466, - "2037": 287.3942231066312, - "2038": 199.23911732555558, - "2039": 138.1246478915414, - "2040": 95.75638866131027, - "2041": 66.38414004614033, - "2042": 46.0215147132646, - "2043": 31.904907030973437, - "2044": 22.118417852980123, - "2045": 15.333829615741818, - "2046": 10.63034129509046, - "2047": 7.369597737938528, - "2048": 5.109052410585507, - "2049": 3.5419051978556317, - "2050": 2.4554636403033245 - }, - "approximatedHistoricalEmission": { - "2021": 39524.008095575, - "2022": 37184.578495761845, - "2023": 35410.99470931897, - "2024": 33637.41092287609 - }, - "totalApproximatedHistoricalEmission": 109176.28271430636, - "trend": { - "2024": 33637.41092287609, - "2025": 31863.827136432752, - "2026": 30090.243349989876, - "2027": 28316.659563547, - "2028": 26543.075777104124, - "2029": 24769.491990660783, - "2030": 22995.908204217907, - "2031": 21222.32441777503, - "2032": 19448.74063133169, - "2033": 17675.156844888814, - "2034": 15901.573058445938, - "2035": 14127.989272003062, - "2036": 12354.40548555972, - "2037": 10580.821699116845, - "2038": 8807.237912673969, - "2039": 7033.654126231093, - "2040": 5260.070339787751, - "2041": 3486.4865533448756, - "2042": 1712.9027669019997, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 319009.2745914513, - "historicalEmissionChangePercent": -3.770552319960782, - "neededEmissionChangePercent": 30.673931030397757, - "hitNetZero": "2042-12-14", - "budgetRunsOut": "2026-12-17", - "electricCarChangePercent": 0.06815959442215519, - "electricCarChangeYearly": { - "2015": 0.039119804400977995, - "2016": 0.02278481012658228, - "2017": 0.0475, - "2018": 0.05235602094240838, - "2019": 0.09495548961424333, - "2020": 0.2226027397260274, - "2021": 0.4223433242506812, - "2022": 0.49050632911392406 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 4.856791173, - "totalConsumptionEmission": 6169.9, - "electricVehiclePerChargePoints": 18.366666666666667 - }, - { - "kommun": "Tanum", - "län": "Västra Götalands län", - "emissions": { - "1990": 118396.202733909, - "2000": 110598.89201265, - "2005": 101922.536757279, - "2010": 92089.782974437, - "2015": 79125.4331871693, - "2016": 77101.2750117468, - "2017": 79599.3632064484, - "2018": 77169.762581666, - "2019": 78382.6081644549, - "2020": 72780.0800490424, - "2021": 75194.2350471489 - }, - "budget": 159773.68395872088, - "emissionBudget": { - "2024": 72410.5211666401, - "2025": 46023.16246963701, - "2026": 29251.70886192211, - "2027": 18591.99640848586, - "2028": 11816.825201043583, - "2029": 7510.616652673441, - "2030": 4773.647874425181, - "2031": 3034.0669858170236, - "2032": 1928.4125508593959, - "2033": 1225.6733235277068, - "2034": 779.0216337982068, - "2035": 495.1357709074827, - "2036": 314.70169889486255, - "2037": 200.02020679256893, - "2038": 127.13017840653036, - "2039": 80.8022475371057, - "2040": 51.35683194095419, - "2041": 32.641718113103465, - "2042": 20.746641120704442, - "2043": 13.1862886720573, - "2044": 8.381029388381448, - "2045": 5.326870612029034, - "2046": 3.3856879868045113, - "2047": 2.1518981741563477, - "2048": 1.3677178080157177, - "2049": 0.8693032155653518, - "2050": 0.5525175413842204 - }, - "approximatedHistoricalEmission": { - "2021": 75194.2350471489, - "2022": 73957.14540860173, - "2023": 73183.83328762092, - "2024": 72410.5211666401 - }, - "totalApproximatedHistoricalEmission": 220943.35680311715, - "trend": { - "2024": 72410.5211666401, - "2025": 71637.20904565929, - "2026": 70863.89692467847, - "2027": 70090.58480369765, - "2028": 69317.27268271684, - "2029": 68543.96056173602, - "2030": 67770.6484407552, - "2031": 66997.33631977439, - "2032": 66224.02419879357, - "2033": 65450.71207781276, - "2034": 64677.39995683194, - "2035": 63904.087835851125, - "2036": 63130.77571487031, - "2037": 62357.463593889726, - "2038": 61584.15147290891, - "2039": 60810.839351928094, - "2040": 60037.52723094728, - "2041": 59264.21510996646, - "2042": 58490.90298898565, - "2043": 57717.59086800483, - "2044": 56944.278747024015, - "2045": 56170.9666260432, - "2046": 55397.65450506238, - "2047": 54624.34238408157, - "2048": 53851.03026310075, - "2049": 53077.718142119935, - "2050": 52304.40602113912 - }, - "trendEmission": 1621294.05344113, - "historicalEmissionChangePercent": -0.7715658424359474, - "neededEmissionChangePercent": 36.44133238079756, - "hitNetZero": "2117-07-29", - "budgetRunsOut": "2026-03-27", - "electricCarChangePercent": 0.07740142887033657, - "electricCarChangeYearly": { - "2015": 0.016611295681063124, - "2016": 0.011834319526627219, - "2017": 0.015337423312883436, - "2018": 0.05309734513274336, - "2019": 0.07692307692307693, - "2020": 0.3197969543147208, - "2021": 0.4304932735426009, - "2022": 0.5125 - }, - "climatePlanLink": "https://www.tanum.se/download/18.29bde0b1171537ea620dbcc5/1587128543377/Klimat-%20och%20milj%C3%B6strategi.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Klimat– och miljöstrategi 2020–2024.", - "bicycleMetrePerCapita": 0.9730676817, - "totalConsumptionEmission": 6397.7, - "electricVehiclePerChargePoints": 4.440677966101695 - }, - { - "kommun": "Tibro", - "län": "Västra Götalands län", - "emissions": { - "1990": 41581.795150041, - "2000": 33768.2136261123, - "2005": 29682.5564056569, - "2010": 27055.9094786649, - "2015": 23405.8984206941, - "2016": 22908.0498009054, - "2017": 21929.4843009661, - "2018": 20638.2485864096, - "2019": 20390.2207240302, - "2020": 18323.6568298605, - "2021": 18164.1222101262 - }, - "budget": 43178.71907166517, - "emissionBudget": { - "2024": 15158.516235271003, - "2025": 10670.660681266889, - "2026": 7511.487114404869, - "2027": 5287.62373345111, - "2028": 3722.1610475691573, - "2029": 2620.171850805773, - "2030": 1844.4394103362324, - "2031": 1298.3716077078209, - "2032": 913.9735478730009, - "2033": 643.3810176166016, - "2034": 452.90056237698855, - "2035": 318.814067846225, - "2036": 224.42544412663278, - "2037": 157.98167349293382, - "2038": 111.20935621517664, - "2039": 78.28452906182964, - "2040": 55.10748105199536, - "2041": 38.7922684633833, - "2042": 27.307364876927444, - "2043": 19.222700967475564, - "2044": 13.531596115200218, - "2045": 9.525409240601006, - "2046": 6.705300721989841, - "2047": 4.720118226592929, - "2048": 3.3226721659104332, - "2049": 2.3389563125593407, - "2050": 1.6464810125383456 - }, - "approximatedHistoricalEmission": { - "2021": 18164.1222101262, - "2022": 17046.61467460892, - "2023": 16102.565454939846, - "2024": 15158.516235271003 - }, - "totalApproximatedHistoricalEmission": 49810.49935224737, - "trend": { - "2024": 15158.516235271003, - "2025": 14214.46701560216, - "2026": 13270.417795933317, - "2027": 12326.368576264242, - "2028": 11382.319356595399, - "2029": 10438.270136926556, - "2030": 9494.220917257713, - "2031": 8550.171697588637, - "2032": 7606.122477919795, - "2033": 6662.073258250952, - "2034": 5718.024038582109, - "2035": 4773.974818913033, - "2036": 3829.9255992441904, - "2037": 2885.8763795753475, - "2038": 1941.8271599065047, - "2039": 997.777940237429, - "2040": 53.72872056858614, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 121724.82400700147, - "historicalEmissionChangePercent": -4.0823946458968585, - "neededEmissionChangePercent": 29.606166489842334, - "hitNetZero": "2040-01-17", - "budgetRunsOut": "2027-02-28", - "electricCarChangePercent": 0.07900324612193288, - "electricCarChangeYearly": { - "2015": 0.009523809523809525, - "2016": 0.0070921985815602835, - "2017": 0.012448132780082987, - "2018": 0.01694915254237288, - "2019": 0.059574468085106386, - "2020": 0.21965317919075145, - "2021": 0.4039408866995074, - "2022": 0.5792079207920792 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Med i Klimat 2023 (VGR)", - "bicycleMetrePerCapita": 4.240325727, - "totalConsumptionEmission": 5766.0, - "electricVehiclePerChargePoints": 8.195121951219512 - }, - { - "kommun": "Tidaholm", - "län": "Västra Götalands län", - "emissions": { - "1990": 56629.7993723764, - "2000": 46278.4985289073, - "2005": 43303.1658481645, - "2010": 36740.2571134386, - "2015": 31120.8048386295, - "2016": 29884.6548265342, - "2017": 29727.4458404301, - "2018": 29200.3246726414, - "2019": 28998.9270102039, - "2020": 29135.0472258753, - "2021": 32974.0144768152 - }, - "budget": 62517.21634175409, - "emissionBudget": { - "2024": 30862.72303080713, - "2025": 18838.101588788424, - "2026": 11498.469241203316, - "2027": 7018.4776458359775, - "2028": 4283.964015713134, - "2029": 2614.8616001952146, - "2030": 1596.0687725424948, - "2031": 974.214285947342, - "2032": 594.6444735160186, - "2033": 362.96126528189257, - "2034": 221.54562257355883, - "2035": 135.22782615215445, - "2036": 82.54085435502432, - "2037": 50.38158810592396, - "2038": 30.75209773280554, - "2039": 18.77057771541006, - "2040": 11.457253772785304, - "2041": 6.99332039771134, - "2042": 4.268608442732964, - "2043": 2.605488809483725, - "2044": 1.590347774320229, - "2045": 0.9707222821603558, - "2046": 0.5925130114923328, - "2047": 0.36166025570815014, - "2048": 0.22075150759887965, - "2049": 0.13474311135394124, - "2050": 0.08224499236639768 - }, - "approximatedHistoricalEmission": { - "2021": 32974.0144768152, - "2022": 30624.730539163313, - "2023": 30743.72678498522, - "2024": 30862.72303080713 - }, - "totalApproximatedHistoricalEmission": 93286.8260779597, - "trend": { - "2024": 30862.72303080713, - "2025": 30981.71927662904, - "2026": 31100.715522450948, - "2027": 31219.711768272857, - "2028": 31338.708014094736, - "2029": 31457.704259916645, - "2030": 31576.700505738554, - "2031": 31695.696751560463, - "2032": 31814.69299738237, - "2033": 31933.68924320428, - "2034": 32052.68548902619, - "2035": 32171.681734848098, - "2036": 32290.677980669978, - "2037": 32409.674226491887, - "2038": 32528.670472313795, - "2039": 32647.666718135704, - "2040": 32766.662963957613, - "2041": 32885.65920977952, - "2042": 33004.65545560143, - "2043": 33123.65170142334, - "2044": 33242.64794724522, - "2045": 33361.64419306713, - "2046": 33480.64043888904, - "2047": 33599.636684710946, - "2048": 33718.632930532855, - "2049": 33837.62917635476, - "2050": 33956.62542217667 - }, - "trendEmission": 842651.5298887892, - "historicalEmissionChangePercent": 1.1141351108547743, - "neededEmissionChangePercent": 38.96163481756209, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2026-01-07", - "electricCarChangePercent": 0.06286312320785492, - "electricCarChangeYearly": { - "2015": 0.014925373134328358, - "2016": 0.0, - "2017": 0.04054054054054054, - "2018": 0.010416666666666666, - "2019": 0.06310679611650485, - "2020": 0.16129032258064516, - "2021": 0.3263157894736842, - "2022": 0.47692307692307695 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Med i Klimat 2023 (VGR). Har koldioxidbudget. ", - "bicycleMetrePerCapita": 1.823552052, - "totalConsumptionEmission": 5926.7, - "electricVehiclePerChargePoints": 69.8 - }, - { - "kommun": "Tierp", - "län": "Uppsala län", - "emissions": { - "1990": 153824.706803152, - "2000": 134026.413233932, - "2005": 140748.22889119, - "2010": 139941.633823202, - "2015": 122627.191045483, - "2016": 118469.310089773, - "2017": 117783.98655663, - "2018": 110176.660264911, - "2019": 107844.895080936, - "2020": 97162.4743411099, - "2021": 95883.4634120662 - }, - "budget": 228083.42720875546, - "emissionBudget": { - "2024": 81538.86599728651, - "2025": 57030.37357153201, - "2026": 39888.505560240854, - "2027": 27899.043547973444, - "2028": 19513.306401419843, - "2029": 13648.106827065449, - "2030": 9545.835858418994, - "2031": 6676.602358883409, - "2032": 4669.78688087671, - "2033": 3266.1686799115, - "2034": 2284.4421207573487, - "2035": 1597.79739337643, - "2036": 1117.540465167989, - "2037": 781.6364555763511, - "2038": 546.6965785387664, - "2039": 382.3736045750476, - "2040": 267.44190327020164, - "2041": 187.05572447731495, - "2042": 130.83156989195606, - "2043": 91.50695456246055, - "2044": 64.00231030026836, - "2045": 44.764856871898154, - "2046": 31.30968868717738, - "2047": 21.898799062247406, - "2048": 15.316581559148078, - "2049": 10.712809866476713, - "2050": 7.492813901855008 - }, - "approximatedHistoricalEmission": { - "2021": 95883.4634120662, - "2022": 91023.43355966173, - "2023": 86281.14977847412, - "2024": 81538.86599728651 - }, - "totalApproximatedHistoricalEmission": 266015.7480428122, - "trend": { - "2024": 81538.86599728651, - "2025": 76796.58221609704, - "2026": 72054.29843490943, - "2027": 67312.01465372182, - "2028": 62569.73087253235, - "2029": 57827.447091344744, - "2030": 53085.163310157135, - "2031": 48342.879528967664, - "2032": 43600.595747780055, - "2033": 38858.311966592446, - "2034": 34116.028185402974, - "2035": 29373.744404215366, - "2036": 24631.460623027757, - "2037": 19889.176841840148, - "2038": 15146.893060650676, - "2039": 10404.609279463068, - "2040": 5662.325498275459, - "2041": 920.0417170859873, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 701360.7364307074, - "historicalEmissionChangePercent": -3.960994453303025, - "neededEmissionChangePercent": 30.057435955229128, - "hitNetZero": "2041-03-07", - "budgetRunsOut": "2027-01-27", - "electricCarChangePercent": 0.08058750519372183, - "electricCarChangeYearly": { - "2015": 0.014354066985645933, - "2016": 0.006920415224913495, - "2017": 0.01948051948051948, - "2018": 0.02926829268292683, - "2019": 0.08333333333333333, - "2020": 0.2072072072072072, - "2021": 0.411214953271028, - "2022": 0.6044444444444445 - }, - "climatePlanLink": "https://www.tierp.se/download/18.219c09301768e745e724cb0e/1610000652093/Klimat-%20och%20energiplan%20f%C3%B6r%20Tierps%20kommun.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Klimat– och energiplan från år 2020. En ny plan kommer att antas under 2023. ", - "bicycleMetrePerCapita": 2.626499349, - "totalConsumptionEmission": 6128.0, - "electricVehiclePerChargePoints": 40.30769230769231 - }, - { - "kommun": "Timrå", - "län": "Västernorrlands län", - "emissions": { - "1990": 130458.689394424, - "2000": 211021.254458182, - "2005": 138522.661084289, - "2010": 150154.115053192, - "2015": 73541.0766683582, - "2016": 86905.2280318996, - "2017": 91903.9230162513, - "2018": 124066.122796644, - "2019": 103815.58114421, - "2020": 96297.6688666327, - "2021": 80120.958481875 - }, - "budget": 194521.07637551776, - "emissionBudget": { - "2024": 104614.9766946896, - "2025": 61097.97943231194, - "2026": 35682.87456207696, - "2027": 20839.765060046255, - "2028": 12170.987149658773, - "2029": 7108.186093765407, - "2030": 4151.373173129716, - "2031": 2424.5143550331263, - "2032": 1415.9820407882232, - "2033": 826.971857548514, - "2034": 482.97395975202363, - "2035": 282.06987174876747, - "2036": 164.73644373956924, - "2037": 96.2105443155285, - "2038": 56.189563325306224, - "2039": 32.81622663243793, - "2040": 19.165565038419196, - "2041": 11.193208998587046, - "2042": 6.537137174661861, - "2043": 3.8178651399916337, - "2044": 2.229736632062837, - "2045": 1.302226575864287, - "2046": 0.7605355854598675, - "2047": 0.4441733777141594, - "2048": 0.25940928109328565, - "2049": 0.15150204513301693, - "2050": 0.08848129713305326 - }, - "approximatedHistoricalEmission": { - "2021": 80120.958481875, - "2022": 101012.39203483472, - "2023": 102813.68436476216, - "2024": 104614.9766946896 - }, - "totalApproximatedHistoricalEmission": 296194.0439878792, - "trend": { - "2024": 104614.9766946896, - "2025": 106416.2690246175, - "2026": 108217.56135454495, - "2027": 110018.85368447285, - "2028": 111820.14601440029, - "2029": 113621.4383443282, - "2030": 115422.73067425564, - "2031": 117224.02300418355, - "2032": 119025.31533411099, - "2033": 120826.60766403843, - "2034": 122627.89999396633, - "2035": 124429.19232389377, - "2036": 126230.48465382168, - "2037": 128031.77698374912, - "2038": 129833.06931367703, - "2039": 131634.36164360447, - "2040": 133435.6539735319, - "2041": 135236.94630345982, - "2042": 137038.23863338726, - "2043": 138839.53096331516, - "2044": 140640.8232932426, - "2045": 142442.1156231705, - "2046": 144243.40795309795, - "2047": 146044.70028302586, - "2048": 147845.9926129533, - "2049": 149647.28494288074, - "2050": 151448.57727280864 - }, - "trendEmission": 3328826.2015774795, - "historicalEmissionChangePercent": 3.0928468216052565, - "neededEmissionChangePercent": 41.597291934001476, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-10-31", - "electricCarChangePercent": 0.07530256376717442, - "electricCarChangeYearly": { - "2015": 0.008, - "2016": 0.0175, - "2017": 0.022792022792022793, - "2018": 0.0625, - "2019": 0.07508532423208192, - "2020": 0.24043715846994534, - "2021": 0.34285714285714286, - "2022": 0.5841584158415841 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.304277754, - "totalConsumptionEmission": 5798.3, - "electricVehiclePerChargePoints": 30.61111111111111 - }, - { - "kommun": "Tingsryd", - "län": "Kronobergs län", - "emissions": { - "1990": 82279.5565976345, - "2000": 78614.1522429792, - "2005": 79929.1407180178, - "2010": 62565.0455180219, - "2015": 49307.6295761283, - "2016": 49166.9539134727, - "2017": 46264.8235639537, - "2018": 44483.8018797048, - "2019": 42949.3711593047, - "2020": 39076.6990008119, - "2021": 39625.5755394863 - }, - "budget": 92091.15946359282, - "emissionBudget": { - "2024": 33151.66687471559, - "2025": 23129.42211172152, - "2026": 16137.051848521323, - "2027": 11258.57970441457, - "2028": 7854.942659322904, - "2029": 5480.276002936472, - "2030": 3823.506595903048, - "2031": 2667.60336177973, - "2032": 1861.1469647792812, - "2033": 1298.4943991809039, - "2034": 905.9401200507209, - "2035": 632.0608711406327, - "2036": 440.97941573079754, - "2037": 307.6647423963189, - "2038": 214.6530888679355, - "2039": 149.76024942498287, - "2040": 104.48548598167123, - "2041": 72.8979607255169, - "2042": 50.85981682538374, - "2043": 35.484133462270385, - "2044": 24.756749161939556, - "2045": 17.272413590679236, - "2046": 12.050704609720556, - "2047": 8.407596357529645, - "2048": 5.865854221845786, - "2049": 4.092518751941609, - "2050": 2.8552891192927476 - }, - "approximatedHistoricalEmission": { - "2021": 39625.5755394863, - "2022": 36904.67575613689, - "2023": 35028.17131542647, - "2024": 33151.66687471559 - }, - "totalApproximatedHistoricalEmission": 108321.46827866431, - "trend": { - "2024": 33151.66687471559, - "2025": 31275.16243400518, - "2026": 29398.6579932943, - "2027": 27522.153552583884, - "2028": 25645.64911187347, - "2029": 23769.14467116259, - "2030": 21892.640230452176, - "2031": 20016.135789741296, - "2032": 18139.631349030882, - "2033": 16263.126908320468, - "2034": 14386.622467609588, - "2035": 12510.118026899174, - "2036": 10633.61358618876, - "2037": 8757.10914547788, - "2038": 6880.604704767466, - "2039": 5004.100264056586, - "2040": 3127.5958233461715, - "2041": 1251.0913826357573, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 293048.9908788034, - "historicalEmissionChangePercent": -3.5165269015770164, - "neededEmissionChangePercent": 30.23149575214249, - "hitNetZero": "2041-08-27", - "budgetRunsOut": "2027-01-15", - "electricCarChangePercent": 0.059692201954626496, - "electricCarChangeYearly": { - "2015": 0.004975124378109453, - "2016": 0.012345679012345678, - "2017": 0.015384615384615385, - "2018": 0.04318936877076412, - "2019": 0.07719298245614035, - "2020": 0.22083333333333333, - "2021": 0.27956989247311825, - "2022": 0.4375 - }, - "climatePlanLink": "https://tingsryd.se/wp-content/blogs.dir/1/files_mf/1647330611Milj%C3%B6program20222027TingsrydD%C3%A4rlivet%C3%A4rh%C3%A5llbart.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljöprogram 2022–2027", - "bicycleMetrePerCapita": 7.862331476, - "totalConsumptionEmission": 6139.2, - "electricVehiclePerChargePoints": 9.022222222222222 - }, - { - "kommun": "Tjörn", - "län": "Västra Götalands län", - "emissions": { - "1990": 88404.4663648523, - "2000": 85002.4068871503, - "2005": 68161.6581495554, - "2010": 56593.827984737, - "2015": 43462.5876253554, - "2016": 42574.0600877548, - "2017": 41402.1890874834, - "2018": 40611.1897927767, - "2019": 40255.8923480338, - "2020": 35826.0831793715, - "2021": 36571.9935715315 - }, - "budget": 83153.5778598006, - "emissionBudget": { - "2024": 32533.278087968007, - "2025": 21999.511138568305, - "2026": 14876.413284494187, - "2027": 10059.663181473652, - "2028": 6802.501475955561, - "2029": 4599.957821211947, - "2030": 3110.5633760934443, - "2031": 2103.411573053211, - "2032": 1422.3597820439563, - "2033": 961.8219161167233, - "2034": 650.3990129649603, - "2035": 439.80997831043254, - "2036": 297.4063815681776, - "2037": 201.11084368132526, - "2038": 135.994295861949, - "2039": 91.96146845414819, - "2040": 62.18578232743012, - "2041": 42.05099797425087, - "2042": 28.43554208773635, - "2043": 19.228558007554163, - "2044": 13.002651467275362, - "2045": 8.792596153753054, - "2046": 5.945690947539703, - "2047": 4.020569149939424, - "2048": 2.718771700727837, - "2049": 1.838475918462913, - "2050": 1.243206151462883 - }, - "approximatedHistoricalEmission": { - "2021": 36571.9935715315, - "2022": 35055.708996374626, - "2023": 33794.49354217108, - "2024": 32533.278087968007 - }, - "totalApproximatedHistoricalEmission": 103402.83836829546, - "trend": { - "2024": 32533.278087968007, - "2025": 31272.06263376493, - "2026": 30010.847179561853, - "2027": 28749.631725358777, - "2028": 27488.4162711557, - "2029": 26227.200816952623, - "2030": 24965.985362749547, - "2031": 23704.76990854647, - "2032": 22443.554454343393, - "2033": 21182.33900013985, - "2034": 19921.123545936774, - "2035": 18659.908091733698, - "2036": 17398.69263753062, - "2037": 16137.477183327544, - "2038": 14876.261729124468, - "2039": 13615.046274921391, - "2040": 12353.830820718314, - "2041": 11092.615366515238, - "2042": 9831.399912312161, - "2043": 8570.184458108619, - "2044": 7308.969003905542, - "2045": 6047.7535497024655, - "2046": 4786.538095499389, - "2047": 3525.322641296312, - "2048": 2264.1071870932356, - "2049": 1002.8917328901589, - "2050": 0 - }, - "trendEmission": 419703.5686271731, - "historicalEmissionChangePercent": -2.75073212755053, - "neededEmissionChangePercent": 32.37843699893087, - "hitNetZero": "2049-10-11", - "budgetRunsOut": "2026-09-12", - "electricCarChangePercent": 0.0817404698595658, - "electricCarChangeYearly": { - "2015": 0.0079155672823219, - "2016": 0.0297029702970297, - "2017": 0.04271356783919598, - "2018": 0.04696132596685083, - "2019": 0.08900523560209424, - "2020": 0.267741935483871, - "2021": 0.4627659574468085, - "2022": 0.577023498694517 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.30836914, - "totalConsumptionEmission": 6612.2, - "electricVehiclePerChargePoints": 38.05 - }, - { - "kommun": "Tomelilla", - "län": "Skåne län", - "emissions": { - "1990": 55883.3495189365, - "2000": 48054.3558061117, - "2005": 46395.7029662568, - "2010": 48254.1016902828, - "2015": 46015.2427628333, - "2016": 43519.6200240206, - "2017": 42420.1733752056, - "2018": 39993.7884944779, - "2019": 40211.5195080253, - "2020": 37646.0213588706, - "2021": 35500.9478648096 - }, - "budget": 84517.22904509396, - "emissionBudget": { - "2024": 31008.458507273812, - "2025": 21485.339586550832, - "2026": 14886.899877371321, - "2027": 10314.930656139384, - "2028": 7147.075302272499, - "2029": 4952.111369352796, - "2030": 3431.2506832935865, - "2031": 2377.466977916816, - "2032": 1647.3145662616955, - "2033": 1141.4018808352528, - "2034": 790.861854958725, - "2035": 547.9774338299283, - "2036": 379.68611850992, - "2037": 263.079352705373, - "2038": 182.28410902009261, - "2039": 126.30218243869966, - "2040": 87.5130661390796, - "2041": 60.636614484313945, - "2042": 42.01428630412726, - "2043": 29.111128130377608, - "2044": 20.170705147501526, - "2045": 13.976007536543635, - "2046": 9.68378572950975, - "2047": 6.7097635580016535, - "2048": 4.649104003519308, - "2049": 3.2213009964804984, - "2050": 2.2319956925186384 - }, - "approximatedHistoricalEmission": { - "2021": 35500.9478648096, - "2022": 34258.368213813286, - "2023": 32633.41336054355, - "2024": 31008.458507273812 - }, - "totalApproximatedHistoricalEmission": 100146.48476039854, - "trend": { - "2024": 31008.458507273812, - "2025": 29383.503654004075, - "2026": 27758.548800734337, - "2027": 26133.5939474646, - "2028": 24508.639094194863, - "2029": 22883.68424092559, - "2030": 21258.729387655854, - "2031": 19633.774534386117, - "2032": 18008.81968111638, - "2033": 16383.864827846643, - "2034": 14758.909974576905, - "2035": 13133.955121307168, - "2036": 11509.000268037431, - "2037": 9884.04541476816, - "2038": 8259.090561498422, - "2039": 6634.135708228685, - "2040": 5009.180854958948, - "2041": 3384.2260016892105, - "2042": 1759.2711484194733, - "2043": 134.3162951497361, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 295923.5187705995, - "historicalEmissionChangePercent": -4.200547094832707, - "neededEmissionChangePercent": 30.711358703913312, - "hitNetZero": "2043-01-26", - "budgetRunsOut": "2026-12-15", - "electricCarChangePercent": 0.029232803167803408, - "electricCarChangeYearly": { - "2015": 0.004076086956521739, - "2016": 0.007132667617689016, - "2017": 0.02582496413199426, - "2018": 0.020481927710843374, - "2019": 0.0341047503045067, - "2020": 0.09298780487804878, - "2021": 0.15014577259475217, - "2022": 0.2219873150105708 - }, - "climatePlanLink": "https://www.tomelilla.se/fileadmin/tomelilla/kommun_och_politik/pdf/Energi-_och_klimatplan_2020-2025.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Energi– och klimatplan 2020–2025.", - "bicycleMetrePerCapita": 2.16884948, - "totalConsumptionEmission": 5948.3, - "electricVehiclePerChargePoints": 31.375 - }, - { - "kommun": "Torsby", - "län": "Värmlands län", - "emissions": { - "1990": 99875.4206678308, - "2000": 85818.0098318199, - "2005": 77312.6166128527, - "2010": 60438.453358315, - "2015": 49767.2770786609, - "2016": 47077.5186696339, - "2017": 43497.9784327877, - "2018": 40053.3936979292, - "2019": 40453.5014805288, - "2020": 37260.8969548224, - "2021": 38584.8137626988 - }, - "budget": 87890.74172967754, - "emissionBudget": { - "2024": 30336.816368916072, - "2025": 21481.603976991777, - "2026": 15211.197635660037, - "2027": 10771.10134601371, - "2028": 7627.053897065756, - "2029": 5400.7430883820325, - "2030": 3824.2847500956664, - "2031": 2707.989180465851, - "2032": 1917.5364494855337, - "2033": 1357.8141528885453, - "2034": 961.4728701918981, - "2035": 680.8222451861036, - "2036": 482.0925726669067, - "2037": 341.37140826981386, - "2038": 241.72626792288972, - "2039": 171.16720143634706, - "2040": 121.20408385611239, - "2041": 85.82502851086535, - "2042": 60.77299777815519, - "2043": 43.03356868068009, - "2044": 30.472217943813067, - "2045": 21.577482297723503, - "2046": 15.279089404225722, - "2047": 10.819175740765292, - "2048": 7.661095541282099, - "2049": 5.424848093695981, - "2050": 3.841353587237991 - }, - "approximatedHistoricalEmission": { - "2021": 38584.8137626988, - "2022": 34352.89567818493, - "2023": 32344.8560235505, - "2024": 30336.816368916072 - }, - "totalApproximatedHistoricalEmission": 101158.56676754286, - "trend": { - "2024": 30336.816368916072, - "2025": 28328.77671428118, - "2026": 26320.73705964675, - "2027": 24312.697405012324, - "2028": 22304.657750377897, - "2029": 20296.618095743004, - "2030": 18288.578441108577, - "2031": 16280.53878647415, - "2032": 14272.499131839257, - "2033": 12264.45947720483, - "2034": 10256.419822570402, - "2035": 8248.380167935975, - "2036": 6240.340513301082, - "2037": 4232.300858666655, - "2038": 2224.2612040322274, - "2039": 216.22154939780012, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 229255.89516205015, - "historicalEmissionChangePercent": -4.044521328253161, - "neededEmissionChangePercent": 29.18965617301092, - "hitNetZero": "2039-02-05", - "budgetRunsOut": "2027-03-31", - "electricCarChangePercent": 0.048920385143545006, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.00625, - "2017": 0.005865102639296188, - "2018": 0.015748031496062992, - "2019": 0.02247191011235955, - "2020": 0.13333333333333333, - "2021": 0.25206611570247933, - "2022": 0.35587188612099646 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.423811628, - "totalConsumptionEmission": 6675.2, - "electricVehiclePerChargePoints": 4.2 - }, - { - "kommun": "Torsås", - "län": "Kalmar län", - "emissions": { - "1990": 39035.5073103979, - "2000": 35153.9363866007, - "2005": 31817.4056224462, - "2010": 24382.2735374754, - "2015": 21287.680905891, - "2016": 20558.273285399, - "2017": 20787.6003083017, - "2018": 20054.2067533587, - "2019": 19601.5695964028, - "2020": 17539.7453589237, - "2021": 18501.3328867235 - }, - "budget": 40977.929133818965, - "emissionBudget": { - "2024": 16422.459023067495, - "2025": 10999.90166293226, - "2026": 7367.826975498771, - "2027": 4935.0326943210675, - "2028": 3305.5265514523226, - "2029": 2214.0695835571337, - "2030": 1483.0024943163935, - "2031": 993.3275875707775, - "2032": 665.3392020652069, - "2033": 445.64981315715664, - "2034": 298.5000062382382, - "2035": 199.93782358617676, - "2036": 133.92004175863335, - "2037": 89.70077428548164, - "2038": 60.08233571131044, - "2039": 40.24365556798635, - "2040": 26.95554016502458, - "2041": 18.055048313410705, - "2042": 12.093423749028306, - "2043": 8.100277298340513, - "2044": 5.425634102607438, - "2045": 3.6341355155097737, - "2046": 2.4341746412170573, - "2047": 1.6304307196736545, - "2048": 1.0920762572427576, - "2049": 0.7314818944726847, - "2050": 0.489952746791022 - }, - "approximatedHistoricalEmission": { - "2021": 18501.3328867235, - "2022": 17535.46835323563, - "2023": 16978.963688151445, - "2024": 16422.459023067495 - }, - "totalApproximatedHistoricalEmission": 51976.32799628257, - "trend": { - "2024": 16422.459023067495, - "2025": 15865.954357983544, - "2026": 15309.449692899594, - "2027": 14752.945027815644, - "2028": 14196.440362731693, - "2029": 13639.93569764751, - "2030": 13083.43103256356, - "2031": 12526.92636747961, - "2032": 11970.421702395659, - "2033": 11413.917037311709, - "2034": 10857.412372227525, - "2035": 10300.907707143575, - "2036": 9744.403042059625, - "2037": 9187.898376975674, - "2038": 8631.393711891724, - "2039": 8074.889046807773, - "2040": 7518.38438172359, - "2041": 6961.87971663964, - "2042": 6405.375051555689, - "2043": 5848.870386471739, - "2044": 5292.365721387789, - "2045": 4735.861056303838, - "2046": 4179.356391219655, - "2047": 3622.8517261357047, - "2048": 3066.3470610517543, - "2049": 2509.842395967804, - "2050": 1953.3377308838535 - }, - "trendEmission": 238885.3578013673, - "historicalEmissionChangePercent": -2.1887282889119573, - "neededEmissionChangePercent": 33.01915597730245, - "hitNetZero": "2053-06-28", - "budgetRunsOut": "2026-08-11", - "electricCarChangePercent": 0.06160773789915487, - "electricCarChangeYearly": { - "2015": 0.009009009009009009, - "2016": 0.008130081300813009, - "2017": 0.029197080291970802, - "2018": 0.05555555555555555, - "2019": 0.06666666666666667, - "2020": 0.19318181818181818, - "2021": 0.32989690721649484, - "2022": 0.44660194174757284 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Arbete med klimatplan pågår under 2023.", - "bicycleMetrePerCapita": 4.048930845, - "totalConsumptionEmission": 6200.0, - "electricVehiclePerChargePoints": 27.833333333333332 - }, - { - "kommun": "Tranemo", - "län": "Västra Götalands län", - "emissions": { - "1990": 96955.8743703525, - "2000": 123489.387897036, - "2005": 125165.329861724, - "2010": 109087.186119231, - "2015": 103171.064931112, - "2016": 96327.173899201, - "2017": 101610.010852022, - "2018": 97624.6436338377, - "2019": 97549.9603753173, - "2020": 94373.4077769331, - "2021": 95076.8950230667 - }, - "budget": 203136.27983359923, - "emissionBudget": { - "2024": 91051.14540334698, - "2025": 58159.80520848428, - "2026": 37150.141570481486, - "2027": 23730.014462040952, - "2028": 15157.777670923002, - "2029": 9682.177998191202, - "2030": 6184.5854203605995, - "2031": 3950.4641237624896, - "2032": 2523.3974037704547, - "2033": 1611.8446485955994, - "2034": 1029.5814552730692, - "2035": 657.6551741297293, - "2036": 420.08364257580087, - "2037": 268.33251482173006, - "2038": 171.40000517292629, - "2039": 109.48342131700585, - "2040": 69.93360082564547, - "2041": 44.67076809994664, - "2042": 28.533887846190332, - "2043": 18.22629854488532, - "2044": 11.64222556834793, - "2045": 7.436584880385931, - "2046": 4.7501909629322006, - "2047": 3.034230704988844, - "2048": 1.9381443910234026, - "2049": 1.2380085911988292, - "2050": 0.7907900355519002 - }, - "approximatedHistoricalEmission": { - "2021": 95076.8950230667, - "2022": 93354.7234351593, - "2023": 92202.93441925291, - "2024": 91051.14540334698 - }, - "totalApproximatedHistoricalEmission": 278621.67806761904, - "trend": { - "2024": 91051.14540334698, - "2025": 89899.35638744058, - "2026": 88747.56737153418, - "2027": 87595.77835562779, - "2028": 86443.98933972185, - "2029": 85292.20032381546, - "2030": 84140.41130790906, - "2031": 82988.62229200313, - "2032": 81836.83327609673, - "2033": 80685.04426019033, - "2034": 79533.2552442844, - "2035": 78381.466228378, - "2036": 77229.67721247161, - "2037": 76077.88819656568, - "2038": 74926.09918065928, - "2039": 73774.31016475288, - "2040": 72622.52114884695, - "2041": 71470.73213294055, - "2042": 70318.94311703416, - "2043": 69167.15410112776, - "2044": 68015.36508522183, - "2045": 66863.57606931543, - "2046": 65711.78705340903, - "2047": 64559.9980375031, - "2048": 63408.209021596704, - "2049": 62256.42000569031, - "2050": 61104.630989784375 - }, - "trendEmission": 1978025.0931107025, - "historicalEmissionChangePercent": -1.2764828064213616, - "neededEmissionChangePercent": 36.12402683036828, - "hitNetZero": "2102-12-31", - "budgetRunsOut": "2026-04-07", - "electricCarChangePercent": 0.0701876136565409, - "electricCarChangeYearly": { - "2015": 0.01592356687898089, - "2016": 0.012232415902140673, - "2017": 0.019830028328611898, - "2018": 0.04316546762589928, - "2019": 0.07883817427385892, - "2020": 0.24890829694323144, - "2021": 0.3076923076923077, - "2022": 0.543859649122807 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Med i Klimat 2023 (VGR)", - "bicycleMetrePerCapita": 5.111060036, - "totalConsumptionEmission": 5934.1, - "electricVehiclePerChargePoints": 18.869565217391305 - }, - { - "kommun": "Tranås", - "län": "Jönköpings län", - "emissions": { - "1990": 46967.6876149699, - "2000": 43081.9562064885, - "2005": 38341.4428367893, - "2010": 42705.6067697939, - "2015": 31997.5901410912, - "2016": 31090.394616631, - "2017": 32376.4193406499, - "2018": 32777.5736150731, - "2019": 32254.2313819519, - "2020": 29901.8915037892, - "2021": 29775.6551819717 - }, - "budget": 65222.56834598737, - "emissionBudget": { - "2024": 29489.465312649845, - "2025": 18763.193929638797, - "2026": 11938.414030525508, - "2027": 7596.027099581975, - "2028": 4833.10660444936, - "2029": 3075.149567496609, - "2030": 1956.6183071089058, - "2031": 1244.933007544825, - "2032": 792.1106470503537, - "2033": 503.99441043652985, - "2034": 320.6753585463649, - "2035": 204.03536914183667, - "2036": 129.82111269652296, - "2037": 82.60097929417066, - "2038": 52.55633416350122, - "2039": 33.43989725434813, - "2040": 21.276726129767525, - "2041": 13.537693353476687, - "2042": 8.61359685766512, - "2043": 5.480553362314434, - "2044": 3.4870990195515152, - "2045": 2.218728432747535, - "2046": 1.411705211317877, - "2047": 0.8982224116514134, - "2048": 0.5715098976221115, - "2049": 0.3636332815160194, - "2050": 0.23136810749258455 - }, - "approximatedHistoricalEmission": { - "2021": 29775.6551819717, - "2022": 30144.108102774015, - "2023": 29816.78670771187, - "2024": 29489.465312649845 - }, - "totalApproximatedHistoricalEmission": 89593.45505779666, - "trend": { - "2024": 29489.465312649845, - "2025": 29162.143917587702, - "2026": 28834.82252252556, - "2027": 28507.501127463416, - "2028": 28180.179732401273, - "2029": 27852.85833733913, - "2030": 27525.536942276987, - "2031": 27198.215547214844, - "2032": 26870.8941521527, - "2033": 26543.57275709056, - "2034": 26216.25136202853, - "2035": 25888.92996696639, - "2036": 25561.608571904246, - "2037": 25234.287176842103, - "2038": 24906.96578177996, - "2039": 24579.644386717817, - "2040": 24252.322991655674, - "2041": 23925.00159659353, - "2042": 23597.680201531388, - "2043": 23270.358806469245, - "2044": 22943.03741140722, - "2045": 22615.716016345075, - "2046": 22288.394621282932, - "2047": 21961.07322622079, - "2048": 21633.751831158646, - "2049": 21306.430436096503, - "2050": 20979.10904103436 - }, - "trendEmission": 656091.4665978943, - "historicalEmissionChangePercent": -1.1286163109844218, - "neededEmissionChangePercent": 36.37323114980281, - "hitNetZero": "2114-01-13", - "budgetRunsOut": "2026-03-29", - "electricCarChangePercent": 0.07134073785204356, - "electricCarChangeYearly": { - "2015": 0.012121212121212121, - "2016": 0.0225140712945591, - "2017": 0.025540275049115914, - "2018": 0.0398406374501992, - "2019": 0.08016032064128256, - "2020": 0.2558139534883721, - "2021": 0.3697674418604651, - "2022": 0.5157232704402516 - }, - "climatePlanLink": "https://tranas.se/download/18.671539701847d6e7ad0319/1669301841956/Strategi%20f%C3%B6r%20ekologisk%20h%C3%A5llbarhet%202022%20-2035_tillg%C3%A4nglig.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Ekologisk hållbarhetsstrategi 2022–2035. Arbete pågår med plan.", - "bicycleMetrePerCapita": 3.802454138, - "totalConsumptionEmission": 5902.1, - "electricVehiclePerChargePoints": 33.333333333333336 - }, - { - "kommun": "Trelleborg", - "län": "Skåne län", - "emissions": { - "1990": 187464.704782199, - "2000": 215155.645098935, - "2005": 137085.624770871, - "2010": 104349.698738363, - "2015": 87525.0504391401, - "2016": 85227.0895859313, - "2017": 83390.6746690136, - "2018": 78320.633971901, - "2019": 77704.2320253845, - "2020": 70135.9739873899, - "2021": 73048.6159903349 - }, - "budget": 164513.25591146637, - "emissionBudget": { - "2024": 62343.614984058775, - "2025": 42678.840445978145, - "2026": 29216.8399647504, - "2027": 20001.09957547541, - "2028": 13692.239979091803, - "2029": 9373.356446608446, - "2030": 6416.75950825716, - "2031": 4392.749045802787, - "2032": 3007.163374998029, - "2033": 2058.62694855515, - "2034": 1409.283229688266, - "2035": 964.7591676940408, - "2036": 660.4493916070961, - "2037": 452.126720823777, - "2038": 309.5143614038957, - "2039": 211.88559645560161, - "2040": 145.05144698846607, - "2041": 99.29850176416531, - "2042": 67.97720848239437, - "2043": 46.53545412028056, - "2044": 31.85697880991388, - "2045": 21.808470940719037, - "2046": 14.929520078161865, - "2047": 10.220366680915477, - "2048": 6.996600998926961, - "2049": 4.789693664278668, - "2050": 3.278901483899054 - }, - "approximatedHistoricalEmission": { - "2021": 73048.6159903349, - "2022": 68007.75621171016, - "2023": 65175.68559788447, - "2024": 62343.614984058775 - }, - "totalApproximatedHistoricalEmission": 200879.55729679146, - "trend": { - "2024": 62343.614984058775, - "2025": 59511.54437023308, - "2026": 56679.473756406456, - "2027": 53847.40314258076, - "2028": 51015.33252875507, - "2029": 48183.261914928444, - "2030": 45351.19130110275, - "2031": 42519.120687277056, - "2032": 39687.05007345136, - "2033": 36854.97945962474, - "2034": 34022.908845799044, - "2035": 31190.83823197335, - "2036": 28358.767618146725, - "2037": 25526.69700432103, - "2038": 22694.626390495338, - "2039": 19862.555776669644, - "2040": 17030.48516284302, - "2041": 14198.414549017325, - "2042": 11366.343935191631, - "2043": 8534.273321365006, - "2044": 5702.2027075393125, - "2045": 2870.132093713619, - "2046": 38.06147988792509, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 686217.4718433521, - "historicalEmissionChangePercent": -2.8723478058865606, - "neededEmissionChangePercent": 31.54256381043815, - "hitNetZero": "2045-12-30", - "budgetRunsOut": "2026-10-27", - "electricCarChangePercent": 0.07304337752578609, - "electricCarChangeYearly": { - "2015": 0.01090909090909091, - "2016": 0.012079378774805867, - "2017": 0.03568320278503046, - "2018": 0.03747323340471092, - "2019": 0.06875, - "2020": 0.2297142857142857, - "2021": 0.3947100712105799, - "2022": 0.5264976958525346 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.093715921, - "totalConsumptionEmission": 6045.5, - "electricVehiclePerChargePoints": 20.20253164556962 - }, - { - "kommun": "Trollhättan", - "län": "Västra Götalands län", - "emissions": { - "1990": 207127.141214481, - "2000": 149204.10568104, - "2005": 166300.853300719, - "2010": 152093.711623393, - "2015": 96196.6851032912, - "2016": 94543.3808063236, - "2017": 86232.2227975597, - "2018": 85435.4396557122, - "2019": 84827.578021321, - "2020": 77182.9538869702, - "2021": 77221.628535876 - }, - "budget": 178225.14144870866, - "emissionBudget": { - "2024": 66009.12661875226, - "2025": 45577.93338383048, - "2026": 31470.61804860699, - "2027": 21729.80929215778, - "2028": 15003.982798947522, - "2029": 10359.939049826731, - "2030": 7153.323124554199, - "2031": 4939.22130991086, - "2032": 3410.429911174736, - "2033": 2354.831146297679, - "2034": 1625.9620845465681, - "2035": 1122.6931088199638, - "2036": 775.1963151978013, - "2037": 535.256983743199, - "2038": 369.583849960333, - "2039": 255.18998593213124, - "2040": 176.20339451258704, - "2041": 121.66479074149731, - "2042": 84.0070155692428, - "2043": 58.00510255958502, - "2044": 40.051320715883676, - "2045": 27.654606582908333, - "2046": 19.094932491255864, - "2047": 13.184654995995023, - "2048": 9.103730921437966, - "2049": 6.285937456468964, - "2050": 4.340309489331686 - }, - "approximatedHistoricalEmission": { - "2021": 77221.628535876, - "2022": 72655.6029271232, - "2023": 69332.36477293819, - "2024": 66009.12661875226 - }, - "totalApproximatedHistoricalEmission": 213603.3452773755, - "trend": { - "2024": 66009.12661875226, - "2025": 62685.88846456725, - "2026": 59362.65031038225, - "2027": 56039.41215619631, - "2028": 52716.17400201131, - "2029": 49392.93584782537, - "2030": 46069.697693640366, - "2031": 42746.45953945536, - "2032": 39423.221385269426, - "2033": 36099.98323108442, - "2034": 32776.745076898485, - "2035": 29453.50692271348, - "2036": 26130.268768528476, - "2037": 22807.03061434254, - "2038": 19483.792460157536, - "2039": 16160.5543059716, - "2040": 12837.316151786596, - "2041": 9514.077997601591, - "2042": 6190.839843415655, - "2043": 2867.6016892306507, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 655762.7197704548, - "historicalEmissionChangePercent": -3.5178072274690373, - "neededEmissionChangePercent": 30.9520732684828, - "hitNetZero": "2043-11-06", - "budgetRunsOut": "2026-11-30", - "electricCarChangePercent": 0.07693129067052229, - "electricCarChangeYearly": { - "2015": 0.018949648077964266, - "2016": 0.017991004497751123, - "2017": 0.027281746031746032, - "2018": 0.06274957216200798, - "2019": 0.08112874779541446, - "2020": 0.22916666666666666, - "2021": 0.3987473903966597, - "2022": 0.5810085836909872 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.937878473, - "totalConsumptionEmission": 6070.9, - "electricVehiclePerChargePoints": 12.09486166007905 - }, - { - "kommun": "Trosa", - "län": "Södermanlands län", - "emissions": { - "1990": 57716.580107857, - "2000": 55910.1346472616, - "2005": 53715.9810099334, - "2010": 54951.4558238297, - "2015": 47811.8710074762, - "2016": 45920.3564664502, - "2017": 43806.0055498222, - "2018": 44292.9910579863, - "2019": 44046.0290853854, - "2020": 39372.3097780245, - "2021": 39717.4925609034 - }, - "budget": 90341.0788013635, - "emissionBudget": { - "2024": 35608.32110493397, - "2025": 24008.911861341403, - "2026": 16188.009737021519, - "2027": 10914.76618179656, - "2028": 7359.281513825513, - "2029": 4961.995841015754, - "2030": 3345.6258848099033, - "2031": 2255.7883802697256, - "2032": 1520.9654013210281, - "2033": 1025.5109797750752, - "2034": 691.4508171755967, - "2035": 466.21073981837134, - "2036": 314.3426090807491, - "2037": 211.9455161461704, - "2038": 142.90427233467145, - "2039": 96.3532110649511, - "2040": 64.96615623068774, - "2041": 43.80343331313627, - "2042": 29.534466579877943, - "2043": 19.91361521646605, - "2044": 13.426755818222308, - "2045": 9.052990621868583, - "2046": 6.103979271628065, - "2047": 4.115608256399003, - "2048": 2.774949023642711, - "2049": 1.8710094848903653, - "2050": 1.2615282164550639 - }, - "approximatedHistoricalEmission": { - "2021": 39717.4925609034, - "2022": 38261.12147500599, - "2023": 36934.72128996998, - "2024": 35608.32110493397 - }, - "totalApproximatedHistoricalEmission": 112858.74959789465, - "trend": { - "2024": 35608.32110493397, - "2025": 34281.92091989843, - "2026": 32955.520734862424, - "2027": 31629.120549826417, - "2028": 30302.72036479041, - "2029": 28976.320179754402, - "2030": 27649.91999471886, - "2031": 26323.519809682854, - "2032": 24997.119624646846, - "2033": 23670.71943961084, - "2034": 22344.31925457483, - "2035": 21017.919069538824, - "2036": 19691.518884503283, - "2037": 18365.118699467275, - "2038": 17038.718514431268, - "2039": 15712.31832939526, - "2040": 14385.918144359253, - "2041": 13059.517959323712, - "2042": 11733.117774287704, - "2043": 10406.717589251697, - "2044": 9080.31740421569, - "2045": 7753.917219179682, - "2046": 6427.517034144141, - "2047": 5101.1168491081335, - "2048": 3774.716664072126, - "2049": 2448.316479036119, - "2050": 1121.9162940001115 - }, - "trendEmission": 477493.0861861475, - "historicalEmissionChangePercent": -2.95678335329096, - "neededEmissionChangePercent": 32.57499619094742, - "hitNetZero": "2050-10-29", - "budgetRunsOut": "2026-09-02", - "electricCarChangePercent": 0.07994518335545023, - "electricCarChangeYearly": { - "2015": 0.011627906976744186, - "2016": 0.013157894736842105, - "2017": 0.03536977491961415, - "2018": 0.06909090909090909, - "2019": 0.11864406779661017, - "2020": 0.24925816023738873, - "2021": 0.4124293785310734, - "2022": 0.5870307167235495 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.260746269, - "totalConsumptionEmission": 6537.8, - "electricVehiclePerChargePoints": 12.196428571428571 - }, - { - "kommun": "Tyresö", - "län": "Stockholms län", - "emissions": { - "1990": 56692.1656888512, - "2000": 47610.1395179054, - "2005": 36574.4132555814, - "2010": 28517.8394695302, - "2015": 25291.8308600551, - "2016": 24311.2166274205, - "2017": 22524.8826416791, - "2018": 21086.543195557, - "2019": 20333.7567194455, - "2020": 18012.7668100843, - "2021": 18138.2408672054 - }, - "budget": 44345.74288378853, - "emissionBudget": { - "2024": 13618.00634546671, - "2025": 10017.221840148366, - "2026": 7368.533311643603, - "2027": 5420.193745454404, - "2028": 3987.021432316762, - "2029": 2932.799203918591, - "2030": 2157.3275480256207, - "2031": 1586.901054546054, - "2032": 1167.303017672989, - "2033": 858.6523596824051, - "2034": 631.6130975639328, - "2035": 464.6060777866637, - "2036": 341.75796599033936, - "2037": 251.39255145836717, - "2038": 184.92097103168692, - "2039": 136.02537278422545, - "2040": 100.0584300301828, - "2041": 73.60163192484939, - "2042": 54.1403679866544, - "2043": 39.824924652801485, - "2044": 29.294677568358402, - "2045": 21.548769804733638, - "2046": 15.850984500984941, - "2047": 11.659770461479972, - "2048": 8.576769929082529, - "2049": 6.308956309168827, - "2050": 4.640783189955393 - }, - "approximatedHistoricalEmission": { - "2021": 18138.2408672054, - "2022": 16207.206026570406, - "2023": 14912.606186018791, - "2024": 13618.00634546671 - }, - "totalApproximatedHistoricalEmission": 46997.93581892525, - "trend": { - "2024": 13618.00634546671, - "2025": 12323.40650491463, - "2026": 11028.80666436255, - "2027": 9734.206823810935, - "2028": 8439.606983258855, - "2029": 7145.007142706774, - "2030": 5850.407302154694, - "2031": 4555.807461603079, - "2032": 3261.2076210509986, - "2033": 1966.6077804989181, - "2034": 672.0079399468377, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 71786.07539704163, - "historicalEmissionChangePercent": -5.316400082564488, - "neededEmissionChangePercent": 26.441348417472334, - "hitNetZero": "2034-07-06", - "budgetRunsOut": "2028-01-10", - "electricCarChangePercent": 0.08346914882009587, - "electricCarChangeYearly": { - "2015": 0.022485207100591716, - "2016": 0.022222222222222223, - "2017": 0.029379760609358, - "2018": 0.06628571428571428, - "2019": 0.10010537407797682, - "2020": 0.3091732729331823, - "2021": 0.47342026078234706, - "2022": 0.5770877944325482 - }, - "climatePlanLink": "https://app.climateview.global/public/board/db392fc1-257a-4768-a9db-215a92c6ac59", - "climatePlanYear": 2019, - "climatePlanComment": "Klimatplan 2030", - "bicycleMetrePerCapita": 2.17324803, - "totalConsumptionEmission": 6055.7, - "electricVehiclePerChargePoints": 101.04761904761905 - }, - { - "kommun": "Täby", - "län": "Stockholms län", - "emissions": { - "1990": 165422.769560396, - "2000": 140789.744896529, - "2005": 110901.065054359, - "2010": 104445.619330142, - "2015": 90850.3039212788, - "2016": 87090.4152469595, - "2017": 86639.833876069, - "2018": 86190.9714610304, - "2019": 84495.6896272799, - "2020": 76215.9041170034, - "2021": 76539.0082403048 - }, - "budget": 174191.12099837343, - "emissionBudget": { - "2024": 69683.0780232139, - "2025": 46708.186345210794, - "2026": 31308.242023008082, - "2027": 20985.743512427223, - "2028": 14066.62917853181, - "2029": 9428.784657029133, - "2030": 6320.06282246413, - "2031": 4236.303567513943, - "2032": 2839.571127733551, - "2033": 1903.3490072076738, - "2034": 1275.8044367530895, - "2035": 855.1647410302152, - "2036": 573.2122519987819, - "2037": 384.22103961592745, - "2038": 257.5412628895759, - "2039": 172.62850091983378, - "2040": 115.71194066329653, - "2041": 77.56108140152382, - "2042": 51.988768952364246, - "2043": 34.84778768349161, - "2044": 23.358281623217493, - "2045": 15.656928507057295, - "2046": 10.494753605138554, - "2047": 7.034575982315023, - "2048": 4.71523783338124, - "2049": 3.1605981485230767, - "2050": 2.1185316646656265 - }, - "approximatedHistoricalEmission": { - "2021": 76539.0082403048, - "2022": 74456.43899118621, - "2023": 72069.75850719959, - "2024": 69683.0780232139 - }, - "totalApproximatedHistoricalEmission": 219637.24063014513, - "trend": { - "2024": 69683.0780232139, - "2025": 67296.39753922727, - "2026": 64909.717055240646, - "2027": 62523.03657125402, - "2028": 60136.3560872674, - "2029": 57749.675603280775, - "2030": 55362.99511929415, - "2031": 52976.31463530846, - "2032": 50589.634151321836, - "2033": 48202.95366733521, - "2034": 45816.27318334859, - "2035": 43429.592699361965, - "2036": 41042.91221537534, - "2037": 38656.23173138872, - "2038": 36269.551247403026, - "2039": 33882.8707634164, - "2040": 31496.19027942978, - "2041": 29109.509795443155, - "2042": 26722.82931145653, - "2043": 24336.148827469908, - "2044": 21949.468343483284, - "2045": 19562.787859497592, - "2046": 17176.10737551097, - "2047": 14789.426891524345, - "2048": 12402.746407537721, - "2049": 10016.065923551098, - "2050": 7629.385439564474 - }, - "trendEmission": 1005062.0250161174, - "historicalEmissionChangePercent": -2.7526707435668243, - "neededEmissionChangePercent": 32.97054655127224, - "hitNetZero": "2053-03-05", - "budgetRunsOut": "2026-08-14", - "electricCarChangePercent": 0.08723877258687399, - "electricCarChangeYearly": { - "2015": 0.03413865546218487, - "2016": 0.03736571695469407, - "2017": 0.055359838953195774, - "2018": 0.11471974855945521, - "2019": 0.16814988290398125, - "2020": 0.36947368421052634, - "2021": 0.5116168800379327, - "2022": 0.6 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.354569043, - "totalConsumptionEmission": 6863.7, - "electricVehiclePerChargePoints": 51.686868686868685 - }, - { - "kommun": "Töreboda", - "län": "Västra Götalands län", - "emissions": { - "1990": 47486.57654543, - "2000": 43547.2935546693, - "2005": 41665.7834396428, - "2010": 37667.8407222394, - "2015": 30665.0817493016, - "2016": 30028.3542822238, - "2017": 29807.9273784991, - "2018": 29098.9416290206, - "2019": 28270.5011098415, - "2020": 25328.4802044285, - "2021": 25684.0025508181 - }, - "budget": 58915.6453156833, - "emissionBudget": { - "2024": 22866.09583922685, - "2025": 15510.844603290943, - "2026": 10521.529429379601, - "2027": 7137.10854338733, - "2028": 4841.341622621491, - "2029": 3284.045431625613, - "2030": 2227.678862112857, - "2031": 1511.1097626466014, - "2032": 1025.0367562405793, - "2033": 695.3170296537437, - "2034": 471.65701013460466, - "2035": 319.9408697351998, - "2036": 217.0266908525399, - "2037": 147.21652967120735, - "2038": 99.86194105110843, - "2039": 67.7397252385135, - "2040": 45.950142037003495, - "2041": 31.169532291228546, - "2042": 21.14334581319817, - "2043": 14.342245112939564, - "2044": 9.72882895152933, - "2045": 6.599393053373633, - "2046": 4.476591056323375, - "2047": 3.036622811140188, - "2048": 2.059843747422887, - "2049": 1.397261539441584, - "2050": 0.9478096637404049 - }, - "approximatedHistoricalEmission": { - "2021": 25684.0025508181, - "2022": 24714.69669777667, - "2023": 23790.396268501645, - "2024": 22866.09583922685 - }, - "totalApproximatedHistoricalEmission": 72780.14216130078, - "trend": { - "2024": 22866.09583922685, - "2025": 21941.795409951825, - "2026": 21017.494980676798, - "2027": 20093.194551402004, - "2028": 19168.894122126978, - "2029": 18244.59369285195, - "2030": 17320.293263577158, - "2031": 16395.99283430213, - "2032": 15471.692405027105, - "2033": 14547.39197575231, - "2034": 13623.091546477284, - "2035": 12698.791117202258, - "2036": 11774.490687927464, - "2037": 10850.190258652437, - "2038": 9925.889829377411, - "2039": 9001.589400102617, - "2040": 8077.288970827591, - "2041": 7152.988541552797, - "2042": 6228.68811227777, - "2043": 5304.387683002744, - "2044": 4380.08725372795, - "2045": 3455.7868244529236, - "2046": 2531.486395177897, - "2047": 1607.1859659031034, - "2048": 682.8855366280768, - "2049": 0, - "2050": 0 - }, - "trendEmission": 282929.219278572, - "historicalEmissionChangePercent": -2.839830316077111, - "neededEmissionChangePercent": 32.166624716572535, - "hitNetZero": "2048-09-20", - "budgetRunsOut": "2026-09-23", - "electricCarChangePercent": 0.05767007673304146, - "electricCarChangeYearly": { - "2015": 0.004807692307692308, - "2016": 0.0, - "2017": 0.008298755186721992, - "2018": 0.03225806451612903, - "2019": 0.05472636815920398, - "2020": 0.16312056737588654, - "2021": 0.22602739726027396, - "2022": 0.4658385093167702 - }, - "climatePlanLink": "https://toreboda.se/download/18.178b2aa0182e97835b4558f/1662987466375/Strategi%20fo%CC%88r%20Agenda%202030%20To%CC%88reboda%20kommun.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Strategi för Agenda 2030", - "bicycleMetrePerCapita": 5.452574406, - "totalConsumptionEmission": 5912.2, - "electricVehiclePerChargePoints": 52.2 - }, - { - "kommun": "Uddevalla", - "län": "Västra Götalands län", - "emissions": { - "1990": 269858.454370947, - "2000": 226090.590162143, - "2005": 218521.601444873, - "2010": 242509.079164329, - "2015": 203899.73951437, - "2016": 207381.384589235, - "2017": 213605.818948863, - "2018": 217112.385812681, - "2019": 218232.244148144, - "2020": 198271.788813152, - "2021": 221935.89138647 - }, - "budget": 438553.85957414407, - "emissionBudget": { - "2024": 220173.25530114863, - "2025": 133269.1729410254, - "2026": 80666.80229663789, - "2027": 48826.993138498845, - "2028": 29554.602278394508, - "2029": 17889.172764672447, - "2030": 10828.178271180675, - "2031": 6554.212775227577, - "2032": 3967.2144313775116, - "2033": 2401.324290846433, - "2034": 1453.503068601943, - "2035": 879.7941945985883, - "2036": 532.5326389533454, - "2037": 322.33789821721274, - "2038": 195.10864316467354, - "2039": 118.0977565719175, - "2040": 71.48366100597816, - "2041": 43.26850855719546, - "2042": 26.190094441407123, - "2043": 15.852662125922897, - "2044": 9.595494091894103, - "2045": 5.8080785508581725, - "2046": 3.5155851413045838, - "2047": 2.1279565655900767, - "2048": 1.288035693357597, - "2049": 0.7796380688358374, - "2050": 0.47190890866820073 - }, - "approximatedHistoricalEmission": { - "2021": 221935.89138647, - "2022": 217279.27749661868, - "2023": 218726.26639888342, - "2024": 220173.25530114863 - }, - "totalApproximatedHistoricalEmission": 657060.1172393115, - "trend": { - "2024": 220173.25530114863, - "2025": 221620.24420341337, - "2026": 223067.2331056781, - "2027": 224514.22200794285, - "2028": 225961.21091020806, - "2029": 227408.1998124728, - "2030": 228855.18871473754, - "2031": 230302.17761700274, - "2032": 231749.16651926748, - "2033": 233196.15542153222, - "2034": 234643.14432379743, - "2035": 236090.13322606217, - "2036": 237537.1221283269, - "2037": 238984.11103059212, - "2038": 240431.09993285686, - "2039": 241878.0888351216, - "2040": 243325.0777373868, - "2041": 244772.06663965154, - "2042": 246219.05554191628, - "2043": 247666.04444418103, - "2044": 249113.03334644623, - "2045": 250560.02224871097, - "2046": 252007.0111509757, - "2047": 253454.00005324092, - "2048": 254900.98895550566, - "2049": 256347.9778577704, - "2050": 257794.9667600356 - }, - "trendEmission": 6213586.88679539, - "historicalEmissionChangePercent": 1.6091883207729427, - "neededEmissionChangePercent": 39.470771434640206, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-12-24", - "electricCarChangePercent": 0.08432083248236984, - "electricCarChangeYearly": { - "2015": 0.016040329972502293, - "2016": 0.020505309410472353, - "2017": 0.029464285714285714, - "2018": 0.054177215189873416, - "2019": 0.10401002506265664, - "2020": 0.2798165137614679, - "2021": 0.4257234726688103, - "2022": 0.6240359897172236 - }, - "climatePlanLink": "https://www.uddevalla.se/download/18.579c6dca18049edc75d3329/1652779490750/Energi%20och%20klimatplan%20f%C3%B6r%20Uddevalla%20kommun%202022%20TA.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Energi– och klimatplan 2022–2030. Finns även separat åtgärdsplan.", - "bicycleMetrePerCapita": 2.291437576, - "totalConsumptionEmission": 6099.2, - "electricVehiclePerChargePoints": 15.776119402985074 - }, - { - "kommun": "Ulricehamn", - "län": "Västra Götalands län", - "emissions": { - "1990": 119761.209038391, - "2000": 110865.43209127, - "2005": 102673.359737835, - "2010": 98994.0265255083, - "2015": 85558.4693399508, - "2016": 83064.920801217, - "2017": 87283.0344599434, - "2018": 90968.9948507142, - "2019": 89910.1440876617, - "2020": 82679.0338465739, - "2021": 83502.181146889 - }, - "budget": 178618.20898542664, - "emissionBudget": { - "2024": 85213.78360597458, - "2025": 52883.479363841645, - "2026": 32819.36643674373, - "2027": 20367.623807402524, - "2028": 12640.100788034271, - "2029": 7844.417662191704, - "2030": 4868.227674035406, - "2031": 3021.2109689761937, - "2032": 1874.956622868023, - "2033": 1163.5937952482532, - "2034": 722.123650129658, - "2035": 448.1482869761491, - "2036": 278.1198027285169, - "2037": 172.60051397645037, - "2038": 107.11548452382183, - "2039": 66.47562490073813, - "2040": 41.25462089433831, - "2041": 25.602523446405044, - "2042": 15.888867540500863, - "2043": 9.860594884252704, - "2044": 6.119462650406471, - "2045": 3.79772453582123, - "2046": 2.3568591678585626, - "2047": 1.4626614133607205, - "2048": 0.907724330460617, - "2049": 0.5633316450298458, - "2050": 0.3496023315041032 - }, - "approximatedHistoricalEmission": { - "2021": 83502.181146889, - "2022": 85521.89281031396, - "2023": 85367.8382081443, - "2024": 85213.78360597458 - }, - "totalApproximatedHistoricalEmission": 255247.71339489004, - "trend": { - "2024": 85213.78360597458, - "2025": 85059.72900380485, - "2026": 84905.67440163519, - "2027": 84751.61979946546, - "2028": 84597.56519729574, - "2029": 84443.51059512602, - "2030": 84289.45599295635, - "2031": 84135.40139078663, - "2032": 83981.34678861691, - "2033": 83827.29218644724, - "2034": 83673.23758427752, - "2035": 83519.1829821078, - "2036": 83365.12837993813, - "2037": 83211.07377776841, - "2038": 83057.01917559869, - "2039": 82902.96457342897, - "2040": 82748.9099712593, - "2041": 82594.85536908958, - "2042": 82440.80076691986, - "2043": 82286.74616475019, - "2044": 82132.69156258047, - "2045": 81978.63696041075, - "2046": 81824.58235824102, - "2047": 81670.52775607136, - "2048": 81516.47315390164, - "2049": 81362.41855173191, - "2050": 81208.36394956225 - }, - "trendEmission": 2163487.9182219785, - "historicalEmissionChangePercent": -0.304053255929935, - "neededEmissionChangePercent": 37.940228533481246, - "hitNetZero": "2576-10-09", - "budgetRunsOut": "2026-02-06", - "electricCarChangePercent": 0.05423459046932939, - "electricCarChangeYearly": { - "2015": 0.001148105625717566, - "2016": 0.012235817575083427, - "2017": 0.03257328990228013, - "2018": 0.03536585365853658, - "2019": 0.05970149253731343, - "2020": 0.18811881188118812, - "2021": 0.29475100942126514, - "2022": 0.3800277392510402 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Står bakom klimatlöften inom Västra Götalands klimat 2030", - "bicycleMetrePerCapita": 6.208408392, - "totalConsumptionEmission": 5938.7, - "electricVehiclePerChargePoints": 11.71111111111111 - }, - { - "kommun": "Umeå", - "län": "Västerbottens län", - "emissions": { - "1990": 407420.60455849, - "2000": 387778.428811164, - "2005": 433383.864016815, - "2010": 388647.494019284, - "2015": 348047.940585614, - "2016": 347053.536245256, - "2017": 336968.375368934, - "2018": 340128.938919028, - "2019": 316473.081930336, - "2020": 280956.561851113, - "2021": 291976.86744178 - }, - "budget": 669960.4404726056, - "emissionBudget": { - "2024": 254321.6585506387, - "2025": 173989.1358375324, - "2026": 119031.22825641575, - "2027": 81432.86206939466, - "2028": 55710.683002681944, - "2029": 38113.36261250957, - "2030": 26074.503691916892, - "2031": 17838.35631854319, - "2032": 12203.758886730177, - "2033": 8348.960425834159, - "2034": 5711.776251818542, - "2035": 3907.5988251050685, - "2036": 2673.306499550116, - "2037": 1828.8898017428219, - "2038": 1251.1988084725024, - "2039": 855.9829339259165, - "2040": 585.6038050954735, - "2041": 400.629268354055, - "2042": 274.08259520400105, - "2043": 187.50819005907516, - "2044": 128.28002198775505, - "2045": 87.76024149128884, - "2046": 60.039434568732155, - "2047": 41.07479243537491, - "2048": 28.10050737033047, - "2049": 19.22440668963516, - "2050": 13.1519978517791 - }, - "approximatedHistoricalEmission": { - "2021": 291976.86744178, - "2022": 277243.2629548088, - "2023": 265782.4607527219, - "2024": 254321.6585506387 - }, - "totalApproximatedHistoricalEmission": 816174.98670374, - "trend": { - "2024": 254321.6585506387, - "2025": 242860.8563485518, - "2026": 231400.05414646864, - "2027": 219939.25194438174, - "2028": 208478.44974229857, - "2029": 197017.64754021168, - "2030": 185556.8453381285, - "2031": 174096.0431360416, - "2032": 162635.24093395844, - "2033": 151174.43873187155, - "2034": 139713.63652978465, - "2035": 128252.83432770148, - "2036": 116792.03212561458, - "2037": 105331.22992353141, - "2038": 93870.42772144452, - "2039": 82409.62551936135, - "2040": 70948.82331727445, - "2041": 59488.02111519128, - "2042": 48027.218913104385, - "2043": 36566.416711021215, - "2044": 25105.61450893432, - "2045": 13644.812306851149, - "2046": 2184.010104764253, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 2822654.360261811, - "historicalEmissionChangePercent": -2.751475724983871, - "neededEmissionChangePercent": 31.58697657561519, - "hitNetZero": "2046-03-05", - "budgetRunsOut": "2026-10-24", - "electricCarChangePercent": 0.07299210060480074, - "electricCarChangeYearly": { - "2015": 0.014962593516209476, - "2016": 0.030283365779796668, - "2017": 0.04685377999094613, - "2018": 0.04944524843222383, - "2019": 0.07192835152532885, - "2020": 0.28056768558951967, - "2021": 0.42645074224021595, - "2022": 0.5045161290322581 - }, - "climatePlanLink": "https://www.umea.se/byggaboochmiljo/samhallsutvecklingochhallbarhet/klimatmiljoochhallbarhet/strategisktmiljoarbete/miljomal/programochplanerformiljomalen.4.4c35eecf182e743a9224108.html", - "climatePlanYear": 2022, - "climatePlanComment": "Program och planer för att nå Umeå kommuns miljömål", - "bicycleMetrePerCapita": 2.639826356, - "totalConsumptionEmission": 6242.3, - "electricVehiclePerChargePoints": 22.933070866141733 - }, - { - "kommun": "Upplands Väsby", - "län": "Stockholms län", - "emissions": { - "1990": 106270.104063107, - "2000": 94499.9688261575, - "2005": 92533.9213794024, - "2010": 84833.5283744287, - "2015": 75169.5245434243, - "2016": 72643.9331557786, - "2017": 71106.6587740608, - "2018": 73241.8885446057, - "2019": 71561.8809658131, - "2020": 61435.7069567561, - "2021": 61795.375408763 - }, - "budget": 144251.76875368503, - "emissionBudget": { - "2024": 56261.35027625412, - "2025": 38091.29940837965, - "2026": 25789.41108761864, - "2027": 17460.515513416012, - "2028": 11821.50305636904, - "2029": 8003.654554435428, - "2030": 5418.810613276655, - "2031": 3668.7625962426373, - "2032": 2483.9065153174092, - "2033": 1681.7091362507526, - "2034": 1138.587785614732, - "2035": 770.8717979859749, - "2036": 521.9126152923669, - "2037": 353.35678216921104, - "2038": 239.2373969252195, - "2039": 161.97377544644726, - "2040": 109.66305548198547, - "2041": 74.24649888229052, - "2042": 50.26800112443996, - "2043": 34.033550067495725, - "2044": 23.042144192870797, - "2045": 15.600500328413652, - "2046": 10.562194579623137, - "2047": 7.151049773360968, - "2048": 4.841561332314582, - "2049": 3.2779405650181475, - "2050": 2.2193035697132673 - }, - "approximatedHistoricalEmission": { - "2021": 61795.375408763, - "2022": 60695.89867698774, - "2023": 58478.62447662093, - "2024": 56261.35027625412 - }, - "totalApproximatedHistoricalEmission": 178202.88599611723, - "trend": { - "2024": 56261.35027625412, - "2025": 54044.07607588731, - "2026": 51826.8018755205, - "2027": 49609.52767515369, - "2028": 47392.253474785946, - "2029": 45174.979274419136, - "2030": 42957.70507405233, - "2031": 40740.43087368552, - "2032": 38523.15667331871, - "2033": 36305.8824729519, - "2034": 34088.608272584155, - "2035": 31871.334072217345, - "2036": 29654.059871850535, - "2037": 27436.785671483725, - "2038": 25219.511471116915, - "2039": 23002.237270750105, - "2040": 20784.963070382364, - "2041": 18567.688870015554, - "2042": 16350.414669648744, - "2043": 14133.140469281934, - "2044": 11915.866268915124, - "2045": 9698.592068548314, - "2046": 7481.317868180573, - "2047": 5264.043667813763, - "2048": 3046.769467446953, - "2049": 829.4952670801431, - "2050": 0 - }, - "trendEmission": 714050.3169252183, - "historicalEmissionChangePercent": -3.055293108791476, - "neededEmissionChangePercent": 32.29579592145585, - "hitNetZero": "2049-05-10", - "budgetRunsOut": "2026-09-16", - "electricCarChangePercent": 0.0765374063331129, - "electricCarChangeYearly": { - "2015": 0.02456140350877193, - "2016": 0.012755102040816327, - "2017": 0.030211480362537766, - "2018": 0.0353356890459364, - "2019": 0.08116883116883117, - "2020": 0.33175355450236965, - "2021": 0.4268846503178928, - "2022": 0.5114235500878734 - }, - "climatePlanLink": "https://upplandsvasby.se/download/18.46d5f63317fbd916d941070/1649663540253/Klimat-%20och%20energistrategi%20f%C3%B6r%20Upplands%20V%C3%A4sby%20kommun%202022-2025.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Klimat– och energistrategi för Upplands Väsby 2022–2025", - "bicycleMetrePerCapita": 3.734221098, - "totalConsumptionEmission": 6207.6, - "electricVehiclePerChargePoints": 26.8125 - }, - { - "kommun": "Upplands-Bro", - "län": "Stockholms län", - "emissions": { - "1990": 97475.9617003082, - "2000": 101033.821362887, - "2005": 94802.3441327776, - "2010": 88967.1889355717, - "2015": 77669.9352889672, - "2016": 75438.4714357281, - "2017": 90138.7182686743, - "2018": 82445.7081035067, - "2019": 81511.2532271984, - "2020": 171312.873434626, - "2021": 175701.494107733 - }, - "budget": 223423.8339650386, - "emissionBudget": { - "2024": 210006.06814076751, - "2025": 82038.7452484043, - "2026": 32048.386894331106, - "2027": 12519.68322307698, - "2028": 4890.8067829748, - "2029": 1910.5907523523956, - "2030": 746.3711377193653, - "2031": 291.5694397319852, - "2032": 113.90142770712077, - "2033": 44.49552479040982, - "2034": 17.38215021733396, - "2035": 6.790326613769551, - "2036": 2.652637041169184, - "2037": 1.0362510778073775, - "2038": 0.4048108654109916, - "2039": 0.1581391230989459, - "2040": 0.061776954106984534, - "2041": 0.024133130271302938, - "2042": 0.00942759294482327, - "2043": 0.003682883560238747, - "2044": 0.0014387162659292236, - "2045": 0.0005620336510761522, - "2046": 0.00021955811053402704, - "2047": 8.577024491143938e-05, - "2048": 3.350609501181763e-05, - "2049": 1.3089136029635176e-05, - "2050": 5.1132631821722885e-06 - }, - "approximatedHistoricalEmission": { - "2021": 175701.494107733, - "2022": 175919.20989701152, - "2023": 192962.6390188858, - "2024": 210006.06814076751 - }, - "totalApproximatedHistoricalEmission": 561735.6300401476, - "trend": { - "2024": 210006.06814076751, - "2025": 227049.49726264924, - "2026": 244092.9263845235, - "2027": 261136.35550640523, - "2028": 278179.78462828696, - "2029": 295223.21375016123, - "2030": 312266.64287204295, - "2031": 329310.0719939172, - "2032": 346353.50111579895, - "2033": 363396.9302376807, - "2034": 380440.35935955495, - "2035": 397483.78848143667, - "2036": 414527.2176033184, - "2037": 431570.64672519267, - "2038": 448614.0758470744, - "2039": 465657.50496894866, - "2040": 482700.9340908304, - "2041": 499744.3632127121, - "2042": 516787.7923345864, - "2043": 533831.2214564681, - "2044": 550874.6505783498, - "2045": 567918.0797002241, - "2046": 584961.5088221058, - "2047": 602004.9379439801, - "2048": 619048.3670658618, - "2049": 636091.7961877435, - "2050": 653135.2253096178 - }, - "trendEmission": 11220836.814855047, - "historicalEmissionChangePercent": 19.946321209734215, - "neededEmissionChangePercent": 60.93505965103182, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-01-08", - "electricCarChangePercent": 0.08185558879772066, - "electricCarChangeYearly": { - "2015": 0.004873294346978557, - "2016": 0.024358130348913758, - "2017": 0.025995575221238937, - "2018": 0.037037037037037035, - "2019": 0.10087424344317418, - "2020": 0.22939068100358423, - "2021": 0.4666666666666667, - "2022": 0.5749167591564928 - }, - "climatePlanLink": "https://www.upplands-bro.se/download/18.600d84bf187eae331ea77/1683275082167/Milj%C3%B6-%20och%20klimatstrategi%202023-2045", - "climatePlanYear": 2023, - "climatePlanComment": "Miljö– och klimatstrategi 2023–2045", - "bicycleMetrePerCapita": 2.711961788, - "totalConsumptionEmission": 5788.8, - "electricVehiclePerChargePoints": 18.70689655172414 - }, - { - "kommun": "Uppsala", - "län": "Uppsala län", - "emissions": { - "1990": 842603.553856603, - "2000": 897854.104303953, - "2005": 898254.65242091, - "2010": 962335.032302411, - "2015": 660889.191725848, - "2016": 687279.292194363, - "2017": 613180.546841957, - "2018": 709278.688311753, - "2019": 600428.750870811, - "2020": 453861.630793152, - "2021": 466991.936441858 - }, - "budget": 1241778.9664810896, - "emissionBudget": { - "2024": 371427.38717733324, - "2025": 275405.4259304085, - "2026": 204207.20509685247, - "2027": 151415.25433854444, - "2028": 112271.15730579813, - "2029": 83246.65052967898, - "2030": 61725.602467381075, - "2031": 45768.20779837631, - "2032": 33936.14256227494, - "2033": 25162.92045081794, - "2034": 18657.764784323404, - "2035": 13834.331647931704, - "2036": 10257.859628811111, - "2037": 7605.982482003334, - "2038": 5639.672564250767, - "2039": 4181.69601458055, - "2040": 3100.637733687641, - "2041": 2299.0562494371006, - "2042": 1704.7008041760037, - "2043": 1263.9990137126129, - "2044": 937.2281063941493, - "2045": 694.9345006489681, - "2046": 515.2789986743454, - "2047": 382.06830460552186, - "2048": 283.29543753906097, - "2049": 210.0574791549671, - "2050": 155.75310683517634 - }, - "approximatedHistoricalEmission": { - "2021": 466991.936441858, - "2022": 447233.02179344, - "2023": 409330.2044853866, - "2024": 371427.38717733324 - }, - "totalApproximatedHistoricalEmission": 1275772.8880884224, - "trend": { - "2024": 371427.38717733324, - "2025": 333524.56986927986, - "2026": 295621.7525612265, - "2027": 257718.9352531731, - "2028": 219816.11794511974, - "2029": 181913.30063706636, - "2030": 144010.483329013, - "2031": 106107.66602094471, - "2032": 68204.84871289134, - "2033": 30302.031404837966, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 1822933.3993222192, - "historicalEmissionChangePercent": -4.663369930193437, - "neededEmissionChangePercent": 25.85214891573957, - "hitNetZero": "2033-10-16", - "budgetRunsOut": "2028-04-10", - "electricCarChangePercent": 0.07604799399367819, - "electricCarChangeYearly": { - "2015": 0.04129405576012625, - "2016": 0.030376670716889428, - "2017": 0.05270635033385424, - "2018": 0.0766446333018571, - "2019": 0.12393721386527141, - "2020": 0.3136797454931071, - "2021": 0.4467153284671533, - "2022": 0.5378834044281942 - }, - "climatePlanLink": "https://www.uppsala.se/contentassets/5d36faebce83404888c3a4677bad5584/miljo--och-klimatprogram.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljö– och klimatprogram. Se även tillhörande handlingsplan.", - "bicycleMetrePerCapita": 2.036415643, - "totalConsumptionEmission": 6360.6, - "electricVehiclePerChargePoints": 20.836032388663966 - }, - { - "kommun": "Uppvidinge", - "län": "Kronobergs län", - "emissions": { - "1990": 62876.9175051374, - "2000": 59431.4007572198, - "2005": 53325.3159872217, - "2010": 48223.4525156254, - "2015": 41285.2633714599, - "2016": 40040.4003227782, - "2017": 37965.2471401662, - "2018": 39013.2629232422, - "2019": 37767.8657703849, - "2020": 33282.3230952449, - "2021": 33989.8922974653 - }, - "budget": 78011.06269070183, - "emissionBudget": { - "2024": 29992.111621499527, - "2025": 20419.18044997024, - "2026": 13901.753084619946, - "2027": 9464.568830235392, - "2028": 6443.652293131796, - "2029": 4386.956830208819, - "2030": 2986.72078420948, - "2031": 2033.4143662873196, - "2032": 1384.3858478113627, - "2033": 942.515311878928, - "2034": 641.681735284019, - "2035": 436.8687109987265, - "2036": 297.4282423126995, - "2037": 202.4946101609913, - "2038": 137.86204976843618, - "2039": 93.85901556216373, - "2040": 63.900941681163445, - "2041": 43.50493475008825, - "2042": 29.618958622754633, - "2043": 20.165131034811445, - "2044": 13.72879157671404, - "2045": 9.34681345890976, - "2046": 6.36348227354812, - "2047": 4.332375608412376, - "2048": 2.9495608859300098, - "2049": 2.0081152250315517, - "2050": 1.3671617277810646 - }, - "approximatedHistoricalEmission": { - "2021": 33989.8922974653, - "2022": 32534.943696273025, - "2023": 31263.527658886276, - "2024": 29992.111621499527 - }, - "totalApproximatedHistoricalEmission": 95789.47331464171, - "trend": { - "2024": 29992.111621499527, - "2025": 28720.69558411278, - "2026": 27449.279546725564, - "2027": 26177.863509338815, - "2028": 24906.447471952066, - "2029": 23635.031434565317, - "2030": 22363.615397178568, - "2031": 21092.19935979182, - "2032": 19820.78332240507, - "2033": 18549.367285017855, - "2034": 17277.951247631107, - "2035": 16006.535210244358, - "2036": 14735.119172857609, - "2037": 13463.70313547086, - "2038": 12192.28709808411, - "2039": 10920.871060696896, - "2040": 9649.455023310147, - "2041": 8378.038985923398, - "2042": 7106.622948536649, - "2043": 5835.2069111499, - "2044": 4563.7908737631515, - "2045": 3292.374836375937, - "2046": 2020.958798989188, - "2047": 749.542761602439, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 353903.79678647337, - "historicalEmissionChangePercent": -3.063391776119758, - "neededEmissionChangePercent": 31.91816332354217, - "hitNetZero": "2047-07-29", - "budgetRunsOut": "2026-10-06", - "electricCarChangePercent": 0.06993258639548683, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.02631578947368421, - "2017": 0.04, - "2018": 0.07177033492822966, - "2019": 0.07027027027027027, - "2020": 0.24060150375939848, - "2021": 0.3935483870967742, - "2022": 0.4911242603550296 - }, - "climatePlanLink": "https://www.uppvidinge.se/download/18.57203f4c17cb7cc4b2c7a190/1635761631493/Klimat-%20och%20energistrategi%202022-2030%20f%C3%B6r%20Uppvidinge%20kommun%20f%C3%B6r%20SAMR%C3%85D.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Förslag på remiss för klimat– och energistrategi 2022–2030 ", - "bicycleMetrePerCapita": 0.2710671217, - "totalConsumptionEmission": 5849.5, - "electricVehiclePerChargePoints": 38.375 - }, - { - "kommun": "Vadstena", - "län": "Östergötlands län", - "emissions": { - "1990": 38057.8177952853, - "2000": 31998.725686032, - "2005": 27341.1576762642, - "2010": 23877.6700276439, - "2015": 20973.379318829, - "2016": 20886.7269106433, - "2017": 16301.3343214304, - "2018": 15067.3900686095, - "2019": 14062.7028052392, - "2020": 12965.957842624, - "2021": 13009.6628354071 - }, - "budget": 33553.38456944481, - "emissionBudget": { - "2024": 7187.167921290733, - "2025": 5801.382324043853, - "2026": 4682.795398452888, - "2027": 3779.8875369562325, - "2028": 3051.0728264483664, - "2029": 2462.783694296831, - "2030": 1987.9248611560442, - "2031": 1604.625393108509, - "2032": 1295.2313754511283, - "2033": 1045.4928129381635, - "2034": 843.9073069278016, - "2035": 681.1902806722184, - "2036": 549.8473525149768, - "2037": 443.8291614633419, - "2038": 358.2527471747492, - "2039": 289.1766517438612, - "2040": 233.41938498241453, - "2041": 188.41289210938265, - "2042": 152.084274901574, - "2043": 122.76031864586896, - "2044": 99.0904276184263, - "2045": 79.98441967169822, - "2046": 64.56231488730306, - "2047": 52.11380567260886, - "2048": 42.06554158448462, - "2049": 33.9547220925004, - "2050": 27.40778102341556 - }, - "approximatedHistoricalEmission": { - "2021": 13009.6628354071, - "2022": 10185.11928575486, - "2023": 8686.143603522796, - "2024": 7187.167921290733 - }, - "totalApproximatedHistoricalEmission": 28969.678267626572, - "trend": { - "2024": 7187.167921290733, - "2025": 5688.19223905867, - "2026": 4189.216556826606, - "2027": 2690.240874595009, - "2028": 1191.2651923629455, - "2029": 0, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 17352.498823488597, - "historicalEmissionChangePercent": -7.344368409280972, - "neededEmissionChangePercent": 19.281386109565258, - "hitNetZero": "2028-10-16", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.0826447951677765, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.031055900621118012, - "2017": 0.016483516483516484, - "2018": 0.062111801242236024, - "2019": 0.10493827160493827, - "2020": 0.2631578947368421, - "2021": 0.4503311258278146, - "2022": 0.5804195804195804 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.322477247, - "totalConsumptionEmission": 6092.0, - "electricVehiclePerChargePoints": 36.5 - }, - { - "kommun": "Vaggeryd", - "län": "Jönköpings län", - "emissions": { - "1990": 104214.140660256, - "2000": 102700.828969166, - "2005": 106621.679107844, - "2010": 118247.407726741, - "2015": 104066.942262449, - "2016": 97609.1681778068, - "2017": 93394.0694297333, - "2018": 96426.0097383856, - "2019": 96865.2817940091, - "2020": 89343.3551308599, - "2021": 89584.2704334941 - }, - "budget": 197672.5544742231, - "emissionBudget": { - "2024": 83218.06473457394, - "2025": 54624.08891971842, - "2026": 35855.08867366934, - "2027": 23535.173020206024, - "2028": 15448.417214424584, - "2029": 10140.294878054852, - "2030": 6656.059244560962, - "2031": 4369.017390508453, - "2032": 2867.8099543905687, - "2033": 1882.421881031815, - "2034": 1235.6160953979186, - "2035": 811.054711268836, - "2036": 532.3738879101712, - "2037": 349.44862854590735, - "2038": 229.37703513591592, - "2039": 150.56240016358026, - "2040": 98.82870937618351, - "2041": 64.87086939601487, - "2042": 42.581044746588084, - "2043": 27.95007047989896, - "2044": 18.346342709073987, - "2045": 12.04248450968518, - "2046": 7.904650832358036, - "2047": 5.188589176199162, - "2048": 3.4057744244903176, - "2049": 2.235540151014477, - "2050": 1.4674018722028952 - }, - "approximatedHistoricalEmission": { - "2021": 89584.2704334941, - "2022": 87254.38110717945, - "2023": 85236.22292087693, - "2024": 83218.06473457394 - }, - "totalApproximatedHistoricalEmission": 258891.7716120904, - "trend": { - "2024": 83218.06473457394, - "2025": 81199.90654827096, - "2026": 79181.74836196797, - "2027": 77163.59017566545, - "2028": 75145.43198936246, - "2029": 73127.27380305948, - "2030": 71109.11561675649, - "2031": 69090.95743045397, - "2032": 67072.79924415099, - "2033": 65054.641057848, - "2034": 63036.48287154501, - "2035": 61018.32468524249, - "2036": 59000.16649893951, - "2037": 56982.00831263652, - "2038": 54963.850126333535, - "2039": 52945.691940031014, - "2040": 50927.53375372803, - "2041": 48909.37556742504, - "2042": 46891.21738112206, - "2043": 44873.059194819536, - "2044": 42854.90100851655, - "2045": 40836.742822213564, - "2046": 38818.58463591058, - "2047": 36800.42644960806, - "2048": 34782.26826330507, - "2049": 32764.110077002086, - "2050": 30745.951890699565 - }, - "trendEmission": 1481532.2161285512, - "historicalEmissionChangePercent": -2.386249326864197, - "neededEmissionChangePercent": 34.360298939967805, - "hitNetZero": "2065-03-16", - "budgetRunsOut": "2026-06-13", - "electricCarChangePercent": 0.07424964946747815, - "electricCarChangeYearly": { - "2015": 0.02, - "2016": 0.017064846416382253, - "2017": 0.02631578947368421, - "2018": 0.0472972972972973, - "2019": 0.16, - "2020": 0.21649484536082475, - "2021": 0.43703703703703706, - "2022": 0.5134099616858238 - }, - "climatePlanLink": "https://www.vaggeryd.se/download/18.1a18992817d52e74471ea1f5/1639407815746/Milj%C3%B6program%202022-2025%20antaget%20KF%20211129%20%C2%A7155.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljöprogram 2022–2025", - "bicycleMetrePerCapita": 4.665683814, - "totalConsumptionEmission": 6103.4, - "electricVehiclePerChargePoints": 18.71875 - }, - { - "kommun": "Valdemarsvik", - "län": "Östergötlands län", - "emissions": { - "1990": 60726.9134074191, - "2000": 54945.5999402807, - "2005": 49152.3217216693, - "2010": 43698.9064144347, - "2015": 37647.1247323438, - "2016": 37028.6337100123, - "2017": 35287.9437388434, - "2018": 33127.2268011044, - "2019": 32480.7743244593, - "2020": 28278.5718630025, - "2021": 29546.2176247229 - }, - "budget": 69139.56955947522, - "emissionBudget": { - "2024": 23783.067306798883, - "2025": 16860.73477031226, - "2026": 11953.225937074498, - "2027": 8474.10342723186, - "2028": 6007.619137583041, - "2029": 4259.033184121003, - "2030": 3019.393082022445, - "2031": 2140.5643463298243, - "2032": 1517.5287206094106, - "2033": 1075.8347077129154, - "2034": 762.7007664506915, - "2035": 540.7080241732643, - "2036": 383.3287971715404, - "2037": 271.75658612732957, - "2038": 192.65873748204734, - "2039": 136.58321830251913, - "2040": 96.82911746274647, - "2041": 68.64590031732637, - "2042": 48.665729419554786, - "2043": 34.50101475819009, - "2044": 24.459101580147216, - "2045": 17.34000157099564, - "2046": 12.292996678429986, - "2047": 8.714980025645618, - "2048": 6.178385859378777, - "2049": 4.380096307167814, - "2050": 3.1052194046673147 - }, - "approximatedHistoricalEmission": { - "2021": 29546.2176247229, - "2022": 26969.49690903211, - "2023": 25376.282107915264, - "2024": 23783.067306798883 - }, - "totalApproximatedHistoricalEmission": 79010.42148270826, - "trend": { - "2024": 23783.067306798883, - "2025": 22189.852505682036, - "2026": 20596.637704565655, - "2027": 19003.42290344881, - "2028": 17410.208102331962, - "2029": 15816.993301215582, - "2030": 14223.778500098735, - "2031": 12630.563698982354, - "2032": 11037.348897865508, - "2033": 9444.134096749127, - "2034": 7850.91929563228, - "2035": 6257.704494515434, - "2036": 4664.489693399053, - "2037": 3071.2748922822066, - "2038": 1478.0600911658257, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 177566.921831334, - "historicalEmissionChangePercent": -3.8121864131465735, - "neededEmissionChangePercent": 29.10613861193474, - "hitNetZero": "2038-12-01", - "budgetRunsOut": "2027-04-07", - "electricCarChangePercent": 0.06314947707714712, - "electricCarChangeYearly": { - "2015": 0.014598540145985401, - "2016": 0.0070921985815602835, - "2017": 0.013986013986013986, - "2018": 0.01652892561983471, - "2019": 0.08461538461538462, - "2020": 0.24, - "2021": 0.29411764705882354, - "2022": 0.46078431372549017 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.338655645, - "totalConsumptionEmission": 5970.0, - "electricVehiclePerChargePoints": 7.2 - }, - { - "kommun": "Vallentuna", - "län": "Stockholms län", - "emissions": { - "1990": 104497.228420871, - "2000": 92593.872563724, - "2005": 76513.0011078828, - "2010": 74344.7289405394, - "2015": 64316.6234824728, - "2016": 61927.1035972555, - "2017": 73960.4873951664, - "2018": 65983.5263391527, - "2019": 65085.8301984202, - "2020": 58428.6808763079, - "2021": 58851.761582854 - }, - "budget": 132876.16726490864, - "emissionBudget": { - "2024": 57164.982995054685, - "2025": 37178.44151098799, - "2026": 24179.77651293155, - "2027": 15725.82304297293, - "2028": 10227.617705508546, - "2029": 6651.744944871053, - "2030": 4326.101354745305, - "2031": 2813.570437026426, - "2032": 1829.864340886468, - "2033": 1190.0905205652825, - "2034": 774.0002444406443, - "2035": 503.3872365520742, - "2036": 327.388410718992, - "2037": 212.9238957412852, - "2038": 138.4795059729817, - "2039": 90.06304110564339, - "2040": 58.57438121406486, - "2041": 38.095073100919414, - "2042": 24.775927026198357, - "2043": 16.113541989572695, - "2044": 10.479778826244086, - "2045": 6.815743200226473, - "2046": 4.432761047885824, - "2047": 2.8829387977823053, - "2048": 1.8749795041901751, - "2049": 1.2194321099835936, - "2050": 0.7930831603950226 - }, - "approximatedHistoricalEmission": { - "2021": 58851.761582854, - "2022": 59469.70359059004, - "2023": 58317.34329282213, - "2024": 57164.982995054685 - }, - "totalApproximatedHistoricalEmission": 175795.4191723665, - "trend": { - "2024": 57164.982995054685, - "2025": 56012.62269728677, - "2026": 54860.26239951886, - "2027": 53707.90210175142, - "2028": 52555.541803983506, - "2029": 51403.181506215595, - "2030": 50250.82120844815, - "2031": 49098.46091068024, - "2032": 47946.10061291233, - "2033": 46793.740315144416, - "2034": 45641.38001737697, - "2035": 44489.01971960906, - "2036": 43336.65942184115, - "2037": 42184.2991240737, - "2038": 41031.93882630579, - "2039": 39879.57852853788, - "2040": 38727.218230770435, - "2041": 37574.857933002524, - "2042": 36422.49763523461, - "2043": 35270.1373374667, - "2044": 34117.77703969926, - "2045": 32965.416741931345, - "2046": 31813.056444163434, - "2047": 30660.69614639599, - "2048": 29508.335848628078, - "2049": 28355.975550860167, - "2050": 27203.61525309272 - }, - "trendEmission": 1096791.777225912, - "historicalEmissionChangePercent": -0.9889667041823583, - "neededEmissionChangePercent": 34.96290987403203, - "hitNetZero": "2073-07-28", - "budgetRunsOut": "2026-05-20", - "electricCarChangePercent": 0.08854171329681397, - "electricCarChangeYearly": { - "2015": 0.021897810218978103, - "2016": 0.041294642857142856, - "2017": 0.07914438502673797, - "2018": 0.12449255751014884, - "2019": 0.17440401505646172, - "2020": 0.3379501385041551, - "2021": 0.5242346938775511, - "2022": 0.6213942307692307 - }, - "climatePlanLink": "https://dok.vallentuna.se/file/f%C3%B6rfattningssamling/2.%20bygga,%20bo%20och%20milj%C3%B6/2.5%20strategier/2.5.2%20Milj%C3%B6-%20och%20klimatstrategi.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Miljö– och klimatstrategi", - "bicycleMetrePerCapita": 2.091930929, - "totalConsumptionEmission": 6034.4, - "electricVehiclePerChargePoints": 67.0 - }, - { - "kommun": "Vansbro", - "län": "Dalarnas län", - "emissions": { - "1990": 50034.8299281915, - "2000": 47001.6644075985, - "2005": 43595.3619488552, - "2010": 40345.7364885454, - "2015": 34173.21885502, - "2016": 32431.8956228468, - "2017": 28731.7300586734, - "2018": 25868.8488524087, - "2019": 25929.5646400504, - "2020": 24481.8825011824, - "2021": 24562.7675003953 - }, - "budget": 58114.816701186624, - "emissionBudget": { - "2024": 17839.94134883443, - "2025": 13124.258819639028, - "2026": 9655.086090074312, - "2027": 7102.929673045749, - "2028": 5225.392033748867, - "2029": 3844.1492684324726, - "2030": 2828.0143389333534, - "2031": 2080.477250685393, - "2032": 1530.5387709780825, - "2033": 1125.9670965858288, - "2034": 828.3370056569946, - "2035": 609.3803247193674, - "2036": 448.3010871409158, - "2037": 329.8003834046986, - "2038": 242.62330833852462, - "2039": 178.48999792367155, - "2040": 131.30922818981963, - "2041": 96.59988575482781, - "2042": 71.06536270517238, - "2043": 52.28045289034215, - "2044": 38.46101181188159, - "2045": 28.294502970286214, - "2046": 20.815336378857737, - "2047": 15.313159203397571, - "2048": 11.265388198423512, - "2049": 8.287576036760738, - "2050": 6.096897448656275 - }, - "approximatedHistoricalEmission": { - "2021": 24562.7675003953, - "2022": 21235.194614964537, - "2023": 19537.56798189925, - "2024": 17839.94134883443 - }, - "totalApproximatedHistoricalEmission": 61974.117021478654, - "trend": { - "2024": 17839.94134883443, - "2025": 16142.314715769142, - "2026": 14444.688082703855, - "2027": 12747.061449638568, - "2028": 11049.43481657328, - "2029": 9351.80818350846, - "2030": 7654.1815504431725, - "2031": 5956.554917377885, - "2032": 4258.928284312598, - "2033": 2561.3016512473114, - "2034": 863.6750181820244, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 93949.91934417351, - "historicalEmissionChangePercent": -5.247805136896818, - "neededEmissionChangePercent": 26.433284936239414, - "hitNetZero": "2034-07-02", - "budgetRunsOut": "2028-01-12", - "electricCarChangePercent": 0.06892917836138833, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.011111111111111112, - "2017": 0.046296296296296294, - "2018": 0.056338028169014086, - "2019": 0.038461538461538464, - "2020": 0.23529411764705882, - "2021": 0.3387096774193548, - "2022": 0.5147058823529411 - }, - "climatePlanLink": "/data/climatePlans/Vansbro_Energi och klimatplan.pdf", - "climatePlanYear": 2013, - "climatePlanComment": "Energi– och klimatplan 2010–2020 (gäller fortfarande)", - "bicycleMetrePerCapita": 1.225521451, - "totalConsumptionEmission": 6068.2, - "electricVehiclePerChargePoints": 6.9411764705882355 - }, - { - "kommun": "Vara", - "län": "Västra Götalands län", - "emissions": { - "1990": 99919.7499857195, - "2000": 93594.0906300194, - "2005": 91509.0359549052, - "2010": 89480.6574648873, - "2015": 75708.7368945781, - "2016": 73460.2871561155, - "2017": 74169.287089048, - "2018": 71209.8639455728, - "2019": 70262.3855493418, - "2020": 64055.4588298243, - "2021": 64177.5873165772 - }, - "budget": 146055.41985118663, - "emissionBudget": { - "2024": 58154.085198803805, - "2025": 39053.46542806029, - "2026": 26226.414820674927, - "2027": 17612.389241439985, - "2028": 11827.627104695055, - "2029": 7942.861187655624, - "2030": 5334.040656500111, - "2031": 3582.0832132147452, - "2032": 2405.5534955022326, - "2033": 1615.4531526166695, - "2034": 1084.8600512017656, - "2035": 728.5394372391116, - "2036": 489.25178047132937, - "2037": 328.55778624898767, - "2038": 220.64348708315345, - "2039": 148.17347337287052, - "2040": 99.50612411734814, - "2041": 66.82349081431454, - "2042": 44.87541811340911, - "2043": 30.136156107874314, - "2044": 20.237982020869374, - "2045": 13.590847977125174, - "2046": 9.126954878547364, - "2047": 6.129220597216911, - "2048": 4.116087526371913, - "2049": 2.7641649139610625, - "2050": 1.8562792026699435 - }, - "approximatedHistoricalEmission": { - "2021": 64177.5873165772, - "2022": 62247.65712211002, - "2023": 60200.87116045691, - "2024": 58154.085198803805 - }, - "totalApproximatedHistoricalEmission": 183614.36454025743, - "trend": { - "2024": 58154.085198803805, - "2025": 56107.2992371507, - "2026": 54060.51327549713, - "2027": 52013.72731384402, - "2028": 49966.941352190915, - "2029": 47920.155390537344, - "2030": 45873.36942888424, - "2031": 43826.58346723113, - "2032": 41779.797505578026, - "2033": 39733.011543924455, - "2034": 37686.22558227135, - "2035": 35639.43962061824, - "2036": 33592.65365896467, - "2037": 31545.867697311565, - "2038": 29499.08173565846, - "2039": 27452.295774005353, - "2040": 25405.509812351782, - "2041": 23358.723850698676, - "2042": 21311.93788904557, - "2043": 19265.151927392, - "2044": 17218.365965738893, - "2045": 15171.580004085787, - "2046": 13124.79404243268, - "2047": 11078.00808077911, - "2048": 9031.222119126003, - "2049": 6984.436157472897, - "2050": 4937.650195819326 - }, - "trendEmission": 820192.5601301026, - "historicalEmissionChangePercent": -2.6614370146839197, - "neededEmissionChangePercent": 32.84484607649954, - "hitNetZero": "2052-05-23", - "budgetRunsOut": "2026-08-20", - "electricCarChangePercent": 0.0806316092238269, - "electricCarChangeYearly": { - "2015": 0.014957264957264958, - "2016": 0.025404157043879907, - "2017": 0.050100200400801605, - "2018": 0.043256997455470736, - "2019": 0.12054794520547946, - "2020": 0.23859649122807017, - "2021": 0.3893805309734513, - "2022": 0.6307277628032345 - }, - "climatePlanLink": "https://vara.se/innehall/2022/02/Milj%C3%B6strategi-2021-2030-antagen-av-KF-2021-10-04-%C2%A7-89.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Miljöstrategi 2021–2030", - "bicycleMetrePerCapita": 3.471290972, - "totalConsumptionEmission": 5938.1, - "electricVehiclePerChargePoints": 16.152173913043477 - }, - { - "kommun": "Varberg", - "län": "Hallands län", - "emissions": { - "1990": 281245.550956632, - "2000": 241121.959497192, - "2005": 240680.791146992, - "2010": 248901.688595458, - "2015": 206833.444833992, - "2016": 200375.643864559, - "2017": 212540.66035565, - "2018": 210956.183344547, - "2019": 210410.411202128, - "2020": 193298.492206019, - "2021": 191695.965846031 - }, - "budget": 422460.01981367305, - "emissionBudget": { - "2024": 190509.3310715994, - "2025": 121358.4840319346, - "2026": 77307.92798277228, - "2027": 49246.78959747741, - "2028": 31371.249352313054, - "2029": 19984.151128816204, - "2030": 12730.328073781988, - "2031": 8109.488955597276, - "2032": 5165.916442985807, - "2033": 3290.798327987316, - "2034": 2096.308323025247, - "2035": 1335.392858265077, - "2036": 850.6735704468674, - "2037": 541.8971046445254, - "2038": 345.19994769305083, - "2039": 219.89968735015455, - "2040": 140.080764263885, - "2041": 89.234417534702, - "2042": 56.84421636761773, - "2043": 36.21097132383872, - "2044": 23.06715666086365, - "2045": 14.694267979123047, - "2046": 9.360560324654971, - "2047": 5.9628754365982335, - "2048": 3.7984781080610315, - "2049": 2.4197111093184653, - "2050": 1.5414072915502277 - }, - "approximatedHistoricalEmission": { - "2021": 191695.965846031, - "2022": 194916.25888834894, - "2023": 192712.79497997463, - "2024": 190509.3310715994 - }, - "totalApproximatedHistoricalEmission": 578731.7023271387, - "trend": { - "2024": 190509.3310715994, - "2025": 188305.86716322508, - "2026": 186102.40325485077, - "2027": 183898.93934647646, - "2028": 181695.47543810215, - "2029": 179492.01152972784, - "2030": 177288.54762135353, - "2031": 175085.08371297922, - "2032": 172881.6198046049, - "2033": 170678.1558962306, - "2034": 168474.6919878563, - "2035": 166271.22807948198, - "2036": 164067.76417110767, - "2037": 161864.30026273336, - "2038": 159660.83635435905, - "2039": 157457.37244598474, - "2040": 155253.9085376095, - "2041": 153050.4446292352, - "2042": 150846.98072086088, - "2043": 148643.51681248657, - "2044": 146440.05290411226, - "2045": 144236.58899573795, - "2046": 142033.12508736365, - "2047": 139829.66117898934, - "2048": 137626.19727061503, - "2049": 135422.73336224072, - "2050": 133219.2694538664 - }, - "trendEmission": 4208471.806831058, - "historicalEmissionChangePercent": -1.1695009657109667, - "neededEmissionChangePercent": 36.2978792958313, - "hitNetZero": "2110-05-27", - "budgetRunsOut": "2026-04-01", - "electricCarChangePercent": 0.07092690309096124, - "electricCarChangeYearly": { - "2015": 0.02956604673342871, - "2016": 0.025728987993138937, - "2017": 0.0318499127399651, - "2018": 0.07992106561420818, - "2019": 0.08241494968854815, - "2020": 0.27150192554557123, - "2021": 0.38030382399161866, - "2022": 0.5243568691844553 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Pågår arbete med att ta fram en energi– och klimatstrategi.", - "bicycleMetrePerCapita": 2.756270158, - "totalConsumptionEmission": 6109.0, - "electricVehiclePerChargePoints": 13.933609958506224 - }, - { - "kommun": "Vaxholm", - "län": "Stockholms län", - "emissions": { - "1990": 37496.4710823795, - "2000": 32476.1292099508, - "2005": 23037.6520366552, - "2010": 19171.121205265, - "2015": 18387.6148627195, - "2016": 18704.8049991129, - "2017": 19903.0387765903, - "2018": 18398.702464195, - "2019": 17520.7344494954, - "2020": 16542.3342420484, - "2021": 18576.8750164496 - }, - "budget": 37927.83168911192, - "emissionBudget": { - "2024": 16974.986677222827, - "2025": 10850.169714953572, - "2026": 6935.273946415616, - "2027": 4432.928329733231, - "2028": 2833.4646516317766, - "2029": 1811.1102492220825, - "2030": 1157.635876257808, - "2031": 739.9443642786506, - "2032": 472.9618988637865, - "2033": 302.31050951365796, - "2034": 193.2325719724167, - "2035": 123.511507857084, - "2036": 78.94679668864585, - "2037": 50.461668030238634, - "2038": 32.254379496061695, - "2039": 20.616539985411265, - "2040": 13.177798724106902, - "2041": 8.423061257415418, - "2042": 5.38390078886115, - "2043": 3.4413127031197797, - "2044": 2.1996380663542277, - "2045": 1.4059773232953332, - "2046": 0.898680680179851, - "2047": 0.5744238911589273, - "2048": 0.3671635698990757, - "2049": 0.2346857244900622, - "2050": 0.1500077725428062 - }, - "approximatedHistoricalEmission": { - "2021": 18576.8750164496, - "2022": 17413.519918653823, - "2023": 17194.253297938325, - "2024": 16974.986677222827 - }, - "totalApproximatedHistoricalEmission": 52383.70406342836, - "trend": { - "2024": 16974.986677222827, - "2025": 16755.72005650733, - "2026": 16536.45343579183, - "2027": 16317.186815076333, - "2028": 16097.920194360835, - "2029": 15878.653573645337, - "2030": 15659.386952929839, - "2031": 15440.120332214341, - "2032": 15220.853711498901, - "2033": 15001.587090783403, - "2034": 14782.320470067905, - "2035": 14563.053849352407, - "2036": 14343.78722863691, - "2037": 14124.520607921411, - "2038": 13905.253987205913, - "2039": 13685.987366490415, - "2040": 13466.720745774917, - "2041": 13247.45412505942, - "2042": 13028.187504343921, - "2043": 12808.920883628482, - "2044": 12589.654262912984, - "2045": 12370.387642197486, - "2046": 12151.121021481988, - "2047": 11931.85440076649, - "2048": 11712.587780050992, - "2049": 11493.321159335494, - "2050": 11274.054538619996 - }, - "trendEmission": 367237.5358059567, - "historicalEmissionChangePercent": 0.4192612818547568, - "neededEmissionChangePercent": 36.08142426696326, - "hitNetZero": "2101-05-14", - "budgetRunsOut": "2026-04-08", - "electricCarChangePercent": 0.0854422793529529, - "electricCarChangeYearly": { - "2015": 0.032467532467532464, - "2016": 0.01812688821752266, - "2017": 0.038348082595870206, - "2018": 0.10247349823321555, - "2019": 0.14150943396226415, - "2020": 0.3108108108108108, - "2021": 0.48214285714285715, - "2022": 0.603988603988604 - }, - "climatePlanLink": "https://www.vaxholm.se/download/18.3d1f64e117fc1ceca46442bb/1648807192906/H%C3%A5llbarhetsstrategi%20f%C3%B6r%20Vaxholms%20stad%202021-2030,%20version%202.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Hållbara Vaxholm 2021–2030. Vaxholms stads hållbarhetsstrategi 2021–2030", - "bicycleMetrePerCapita": 1.176474976, - "totalConsumptionEmission": 6794.8, - "electricVehiclePerChargePoints": 197.75 - }, - { - "kommun": "Vellinge", - "län": "Skåne län", - "emissions": { - "1990": 93556.3245451325, - "2000": 85164.8005809655, - "2005": 77889.4015954172, - "2010": 77023.4557992659, - "2015": 65380.6451457001, - "2016": 63219.1195503426, - "2017": 62416.7682508506, - "2018": 62892.1007800803, - "2019": 62414.5490621013, - "2020": 58416.5984352334, - "2021": 58096.946436543 - }, - "budget": 128220.20023391601, - "emissionBudget": { - "2024": 55092.74162017042, - "2025": 35850.055133540794, - "2026": 23328.417052444725, - "2027": 15180.31255867258, - "2028": 9878.162279975319, - "2029": 6427.936819639488, - "2030": 4182.799450565439, - "2031": 2721.839329564504, - "2032": 1771.16054057114, - "2033": 1152.533004576055, - "2034": 749.9785006551506, - "2035": 488.02745709815406, - "2036": 317.570168576345, - "2037": 206.64987287656777, - "2038": 134.47160402799418, - "2039": 87.50362164830571, - "2040": 56.9405255251944, - "2041": 37.052448641685366, - "2042": 24.11084087619236, - "2043": 15.689452899019697, - "2044": 10.209471064678658, - "2045": 6.6435267113121235, - "2046": 4.3230885208749905, - "2047": 2.8131285040968765, - "2048": 1.8305644083736234, - "2049": 1.1911884040576612, - "2050": 0.7751324167949354 - }, - "approximatedHistoricalEmission": { - "2021": 58096.946436543, - "2022": 57339.76715920167, - "2023": 56216.254389686044, - "2024": 55092.74162017042 - }, - "totalApproximatedHistoricalEmission": 170150.86557724443, - "trend": { - "2024": 55092.74162017042, - "2025": 53969.22885065479, - "2026": 52845.716081139166, - "2027": 51722.20331162354, - "2028": 50598.690542107914, - "2029": 49475.17777259229, - "2030": 48351.66500307666, - "2031": 47228.152233561035, - "2032": 46104.63946404541, - "2033": 44981.12669452978, - "2034": 43857.61392501416, - "2035": 42734.10115549853, - "2036": 41610.588385982905, - "2037": 40487.07561646728, - "2038": 39363.56284695119, - "2039": 38240.05007743556, - "2040": 37116.537307919934, - "2041": 35993.02453840431, - "2042": 34869.51176888868, - "2043": 33745.998999373056, - "2044": 32622.48622985743, - "2045": 31498.973460341804, - "2046": 30375.460690826178, - "2047": 29251.94792131055, - "2048": 28128.435151794925, - "2049": 27004.9223822793, - "2050": 25881.409612763673 - }, - "trendEmission": 1052663.9660281434, - "historicalEmissionChangePercent": -1.9209446662674587, - "neededEmissionChangePercent": 34.92780704089073, - "hitNetZero": "2073-01-01", - "budgetRunsOut": "2026-05-21", - "electricCarChangePercent": 0.08439202799046437, - "electricCarChangeYearly": { - "2015": 0.020202020202020204, - "2016": 0.025022341376228777, - "2017": 0.02780191138140747, - "2018": 0.0625, - "2019": 0.11223628691983123, - "2020": 0.26297273526824977, - "2021": 0.46791226645004064, - "2022": 0.6086637298091042 - }, - "climatePlanLink": "https://vellinge.se/siteassets/boende-miljo-och-trafik/pdf/vellinge_program-for-hallbar-utveckling_2021_slutlig-version.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Program för hållbar utveckling. 2020–2030.", - "bicycleMetrePerCapita": 3.894732092, - "totalConsumptionEmission": 6916.6, - "electricVehiclePerChargePoints": 18.963768115942027 - }, - { - "kommun": "Vetlanda", - "län": "Jönköpings län", - "emissions": { - "1990": 142949.371840773, - "2000": 128128.780755585, - "2005": 139640.384661202, - "2010": 126864.757111999, - "2015": 113613.695652701, - "2016": 103936.061073801, - "2017": 102384.489676855, - "2018": 92082.1577165262, - "2019": 90814.1517272207, - "2020": 82438.5507667751, - "2021": 85979.9412789594 - }, - "budget": 198845.61966997272, - "emissionBudget": { - "2024": 66435.5879093539, - "2025": 47566.39415487903, - "2026": 34056.47370780246, - "2027": 24383.673011532486, - "2028": 17458.164184424095, - "2029": 12499.654852907355, - "2030": 8949.473139976913, - "2031": 6407.622484435161, - "2032": 4587.714300145376, - "2033": 3284.700768636763, - "2034": 2351.772240730215, - "2035": 1683.8162931245197, - "2036": 1205.5747830883788, - "2037": 863.1645646578329, - "2038": 618.006511194857, - "2039": 442.47883140411426, - "2040": 316.804940877102, - "2041": 226.8252477653124, - "2042": 162.40180118830332, - "2043": 116.2760551968789, - "2044": 83.25105333327672, - "2045": 59.60589107847649, - "2046": 42.67648406844922, - "2047": 30.55540751914469, - "2048": 21.876987972194286, - "2049": 15.663433794350867, - "2050": 11.214668058594018 - }, - "approximatedHistoricalEmission": { - "2021": 85979.9412789594, - "2022": 76254.63231541775, - "2023": 71345.11011238582, - "2024": 66435.5879093539 - }, - "totalApproximatedHistoricalEmission": 223807.50702196022, - "trend": { - "2024": 66435.5879093539, - "2025": 61526.06570632197, - "2026": 56616.54350328818, - "2027": 51707.02130025625, - "2028": 46797.499097224325, - "2029": 41887.976894190535, - "2030": 36978.45469115861, - "2031": 32068.93248812668, - "2032": 27159.410285094753, - "2033": 22249.888082060963, - "2034": 17340.365879029036, - "2035": 12430.843675997108, - "2036": 7521.321472963318, - "2037": 2611.799269931391, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 450113.91630032007, - "historicalEmissionChangePercent": -4.396210375727544, - "neededEmissionChangePercent": 28.40223793943148, - "hitNetZero": "2037-07-10", - "budgetRunsOut": "2027-06-05", - "electricCarChangePercent": 0.06388548378969891, - "electricCarChangeYearly": { - "2015": 0.022702702702702703, - "2016": 0.02621359223300971, - "2017": 0.036016949152542374, - "2018": 0.0467706013363029, - "2019": 0.06746463547334058, - "2020": 0.22099447513812154, - "2021": 0.3647342995169082, - "2022": 0.4652956298200514 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Har ett miljöbokslut 2021 där Jönköpings mål finns.", - "bicycleMetrePerCapita": 3.620286389, - "totalConsumptionEmission": 5926.8, - "electricVehiclePerChargePoints": 26.644444444444446 - }, - { - "kommun": "Vilhelmina", - "län": "Västerbottens län", - "emissions": { - "1990": 53715.7559490355, - "2000": 43699.9178383232, - "2005": 39240.6993654997, - "2010": 39542.2888388023, - "2015": 32374.1689083118, - "2016": 30993.4848648433, - "2017": 30383.1277426906, - "2018": 29543.6753645864, - "2019": 30293.0369620157, - "2020": 28400.7493919702, - "2021": 27988.1283048806 - }, - "budget": 62201.77420862414, - "emissionBudget": { - "2024": 26046.549462032504, - "2025": 17135.330291517264, - "2026": 11272.876840266, - "2027": 7416.125052384582, - "2028": 4878.870901538958, - "2029": 3209.6790582340327, - "2030": 2111.5622579020287, - "2031": 1389.1404991281245, - "2032": 913.8784893016727, - "2033": 601.2162871448161, - "2034": 395.5241623034625, - "2035": 260.20479869031544, - "2036": 171.18179801495998, - "2037": 112.6159399024381, - "2038": 74.08702366241769, - "2039": 48.73987714270995, - "2040": 32.064665395534355, - "2041": 21.094488275323, - "2042": 13.877501296480439, - "2043": 9.129638022985764, - "2044": 6.006145389580069, - "2045": 3.951282882185543, - "2046": 2.5994436368687506, - "2047": 1.71010464771379, - "2048": 1.1250322433053646, - "2049": 0.7401287109351995, - "2050": 0.4869109414510485 - }, - "approximatedHistoricalEmission": { - "2021": 27988.1283048806, - "2022": 27363.24114322639, - "2023": 26704.895302629564, - "2024": 26046.549462032504 - }, - "totalApproximatedHistoricalEmission": 81085.47532931251, - "trend": { - "2024": 26046.549462032504, - "2025": 25388.203621435678, - "2026": 24729.857780838618, - "2027": 24071.51194024179, - "2028": 23413.16609964473, - "2029": 22754.820259047905, - "2030": 22096.474418450845, - "2031": 21438.12857785402, - "2032": 20779.782737257192, - "2033": 20121.436896660132, - "2034": 19463.091056063306, - "2035": 18804.745215466246, - "2036": 18146.39937486942, - "2037": 17488.05353427236, - "2038": 16829.707693675533, - "2039": 16171.361853078473, - "2040": 15513.016012481647, - "2041": 14854.670171884587, - "2042": 14196.32433128776, - "2043": 13537.9784906907, - "2044": 12879.632650093874, - "2045": 12221.286809496814, - "2046": 11562.940968899988, - "2047": 10904.595128302928, - "2048": 10246.249287706101, - "2049": 9587.903447109275, - "2050": 8929.557606512215 - }, - "trendEmission": 454689.3918910823, - "historicalEmissionChangePercent": -2.3599961079638487, - "neededEmissionChangePercent": 34.21266676227089, - "hitNetZero": "2063-07-15", - "budgetRunsOut": "2026-06-19", - "electricCarChangePercent": 0.05728046158686402, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.02, - "2018": 0.024390243902439025, - "2019": 0.10810810810810811, - "2020": 0.13636363636363635, - "2021": 0.34375, - "2022": 0.38 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 0.7632882299, - "totalConsumptionEmission": 6379.0, - "electricVehiclePerChargePoints": 4.555555555555555 - }, - { - "kommun": "Vimmerby", - "län": "Kalmar län", - "emissions": { - "1990": 78157.6780744883, - "2000": 73234.8423255133, - "2005": 88366.4008893787, - "2010": 72456.8267362333, - "2015": 58853.5016562113, - "2016": 56021.4527849986, - "2017": 56557.2069294958, - "2018": 54794.0125807416, - "2019": 54224.9725346477, - "2020": 47055.6334446636, - "2021": 48351.5039526337 - }, - "budget": 111341.34730097553, - "emissionBudget": { - "2024": 42600.49780057371, - "2025": 29056.850641414065, - "2026": 19819.03059325458, - "2027": 13518.119307001594, - "2028": 9220.408068824756, - "2029": 6289.034962993365, - "2030": 4289.610662621607, - "2031": 2925.847883682116, - "2032": 1995.6556694157634, - "2033": 1361.1922797090913, - "2034": 928.4389339980979, - "2035": 633.2675162892839, - "2036": 431.9376670905751, - "2037": 294.61506149072846, - "2038": 200.95037101495626, - "2039": 137.0637719834273, - "2040": 93.4881458314237, - "2041": 63.766181862077474, - "2042": 43.493492282962954, - "2043": 29.665942286771344, - "2044": 20.234478437289898, - "2045": 13.801487027490271, - "2046": 9.41368687907205, - "2047": 6.420866134258003, - "2048": 4.379529768056745, - "2049": 2.9871797025887763, - "2050": 2.037488736951257 - }, - "approximatedHistoricalEmission": { - "2021": 48351.5039526337, - "2022": 46298.34538530558, - "2023": 44449.421592939645, - "2024": 42600.49780057371 - }, - "totalApproximatedHistoricalEmission": 136223.76785484893, - "trend": { - "2024": 42600.49780057371, - "2025": 40751.5740082073, - "2026": 38902.650215841364, - "2027": 37053.726423475426, - "2028": 35204.80263110902, - "2029": 33355.87883874308, - "2030": 31506.955046377145, - "2031": 29658.031254011206, - "2032": 27809.107461644802, - "2033": 25960.183669278864, - "2034": 24111.259876912925, - "2035": 22262.336084546987, - "2036": 20413.412292180583, - "2037": 18564.488499814644, - "2038": 16715.564707448706, - "2039": 14866.640915082302, - "2040": 13017.717122716364, - "2041": 11168.793330350425, - "2042": 9319.869537984487, - "2043": 7470.945745618083, - "2044": 5622.021953252144, - "2045": 3773.0981608862057, - "2046": 1924.1743685202673, - "2047": 75.25057615386322, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 490808.73162044305, - "historicalEmissionChangePercent": -3.0798837479495735, - "neededEmissionChangePercent": 31.79222745837785, - "hitNetZero": "2047-01-09", - "budgetRunsOut": "2026-10-13", - "electricCarChangePercent": 0.05544340720325495, - "electricCarChangeYearly": { - "2015": 0.018298261665141813, - "2016": 0.019834710743801654, - "2017": 0.026362038664323375, - "2018": 0.031180400890868598, - "2019": 0.03225806451612903, - "2020": 0.15065913370998116, - "2021": 0.30210772833723654, - "2022": 0.42857142857142855 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.100303789, - "totalConsumptionEmission": 6024.9, - "electricVehiclePerChargePoints": 14.853658536585366 - }, - { - "kommun": "Vindeln", - "län": "Västerbottens län", - "emissions": { - "1990": 42266.6936318727, - "2000": 38566.2235347388, - "2005": 33213.1107011912, - "2010": 37401.4383546039, - "2015": 30458.654495777, - "2016": 31377.9542094577, - "2017": 30142.4523236167, - "2018": 30246.7636973105, - "2019": 30095.8421533544, - "2020": 27321.7131153912, - "2021": 27235.1355432164 - }, - "budget": 61284.0893372107, - "emissionBudget": { - "2024": 25733.4345305725, - "2025": 16909.694496315387, - "2026": 11111.527597259186, - "2027": 7301.4947473803095, - "2028": 4797.884456424546, - "2029": 3152.737357711512, - "2030": 2071.6949182467406, - "2031": 1361.3312329336434, - "2032": 894.5442253287962, - "2033": 587.8138631585349, - "2034": 386.2583066749556, - "2035": 253.8141558515191, - "2036": 166.78379363587754, - "2037": 109.59528134375527, - "2038": 72.01614396084284, - "2039": 47.322520891401155, - "2040": 31.096096796500706, - "2041": 20.433552941873103, - "2042": 13.42708985506233, - "2043": 8.823073622525438, - "2044": 5.7977289933122975, - "2045": 3.809745097680902, - "2046": 2.5034212061387837, - "2047": 1.645022849208558, - "2048": 1.080960793885764, - "2049": 0.7103100351951407, - "2050": 0.4667517535814003 - }, - "approximatedHistoricalEmission": { - "2021": 27235.1355432164, - "2022": 27006.980903149582, - "2023": 26370.20771686104, - "2024": 25733.4345305725 - }, - "totalApproximatedHistoricalEmission": 79861.47365690507, - "trend": { - "2024": 25733.4345305725, - "2025": 25096.66134428419, - "2026": 24459.88815799565, - "2027": 23823.11497170711, - "2028": 23186.3417854188, - "2029": 22549.56859913026, - "2030": 21912.79541284172, - "2031": 21276.02222655341, - "2032": 20639.24904026487, - "2033": 20002.475853976328, - "2034": 19365.70266768802, - "2035": 18728.92948139948, - "2036": 18092.156295110937, - "2037": 17455.383108822396, - "2038": 16818.609922534088, - "2039": 16181.836736245546, - "2040": 15545.063549957005, - "2041": 14908.290363668697, - "2042": 14271.517177380156, - "2043": 13634.743991091615, - "2044": 12997.970804803306, - "2045": 12361.197618514765, - "2046": 11724.424432226224, - "2047": 11087.651245937916, - "2048": 10450.878059649374, - "2049": 9814.104873360833, - "2050": 9177.331687072525 - }, - "trendEmission": 453839.9608293852, - "historicalEmissionChangePercent": -1.7677886679651278, - "neededEmissionChangePercent": 34.28901036810345, - "hitNetZero": "2064-05-20", - "budgetRunsOut": "2026-06-16", - "electricCarChangePercent": 0.08172730299016158, - "electricCarChangeYearly": { - "2015": 0.025, - "2016": 0.0, - "2017": 0.058823529411764705, - "2018": 0.03571428571428571, - "2019": 0.09523809523809523, - "2020": 0.26666666666666666, - "2021": 0.3541666666666667, - "2022": 0.6551724137931034 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 3.284967346, - "totalConsumptionEmission": 6110.8, - "electricVehiclePerChargePoints": 10.916666666666666 - }, - { - "kommun": "Vingåker", - "län": "Södermanlands län", - "emissions": { - "1990": 49249.1590869809, - "2000": 43082.1378971919, - "2005": 42886.9975838736, - "2010": 36328.2441016409, - "2015": 30489.3034657347, - "2016": 29481.7718291502, - "2017": 29563.3011297318, - "2018": 26630.840278187, - "2019": 28643.6352779704, - "2020": 24646.0955581255, - "2021": 24994.5544836964 - }, - "budget": 57602.21462596914, - "emissionBudget": { - "2024": 21976.6577161015, - "2025": 15006.09346655468, - "2026": 10246.45530889766, - "2027": 6996.480904989472, - "2028": 4777.334558945004, - "2029": 3262.0578542298745, - "2030": 2227.3971632191306, - "2031": 1520.9105247116843, - "2032": 1038.5075739414515, - "2033": 709.1133657176892, - "2034": 484.1965316931028, - "2035": 330.6189005002725, - "2036": 225.75307796151674, - "2037": 154.14863497514003, - "2038": 105.25571513469927, - "2039": 71.87066930760473, - "2040": 49.07470440073255, - "2041": 33.50917189475025, - "2042": 22.880720623457467, - "2043": 15.623405373701011, - "2044": 10.667968001879542, - "2045": 7.284298049431373, - "2046": 4.973861757328207, - "2047": 3.3962504846905923, - "2048": 2.319026526575005, - "2049": 1.5834768534301653, - "2050": 1.081229091869122 - }, - "approximatedHistoricalEmission": { - "2021": 24994.5544836964, - "2022": 23910.60524038179, - "2023": 22943.631478241645, - "2024": 21976.6577161015 - }, - "totalApproximatedHistoricalEmission": 70339.84281852239, - "trend": { - "2024": 21976.6577161015, - "2025": 21009.683953961125, - "2026": 20042.71019182098, - "2027": 19075.736429680837, - "2028": 18108.762667540694, - "2029": 17141.78890540055, - "2030": 16174.815143260173, - "2031": 15207.84138112003, - "2032": 14240.867618979886, - "2033": 13273.893856839743, - "2034": 12306.920094699599, - "2035": 11339.946332559455, - "2036": 10372.972570419079, - "2037": 9405.998808278935, - "2038": 8439.025046138791, - "2039": 7472.051283998648, - "2040": 6505.077521858504, - "2041": 5538.103759718128, - "2042": 4571.129997577984, - "2043": 3604.15623543784, - "2044": 2637.1824732976966, - "2045": 1670.208711157553, - "2046": 703.2349490171764, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 249830.43679081416, - "historicalEmissionChangePercent": -2.9885655229584014, - "neededEmissionChangePercent": 31.718036198196536, - "hitNetZero": "2046-09-17", - "budgetRunsOut": "2026-10-17", - "electricCarChangePercent": 0.0636948715966573, - "electricCarChangeYearly": { - "2015": 0.0125, - "2016": 0.0, - "2017": 0.01875, - "2018": 0.13333333333333333, - "2019": 0.09523809523809523, - "2020": 0.20202020202020202, - "2021": 0.36923076923076925, - "2022": 0.44 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Med i Glokala Sverige 2021", - "bicycleMetrePerCapita": 1.591330664, - "totalConsumptionEmission": 5846.1, - "electricVehiclePerChargePoints": 142.0 - }, - { - "kommun": "Vänersborg", - "län": "Västra Götalands län", - "emissions": { - "1990": 413562.969493089, - "2000": 431114.866816563, - "2005": 385762.752769986, - "2010": 227869.783720409, - "2015": 228790.273458747, - "2016": 214940.234084315, - "2017": 254342.145363567, - "2018": 252756.877758662, - "2019": 269718.784658149, - "2020": 235506.272163404, - "2021": 244532.808764144 - }, - "budget": 503768.84059946984, - "emissionBudget": { - "2024": 265170.268329205, - "2025": 156647.6845344859, - "2026": 92538.64403663696, - "2027": 54666.62763377251, - "2028": 32293.9698107786, - "2029": 19077.46153880518, - "2030": 11269.891589578345, - "2031": 6657.618267634754, - "2032": 3932.9465279445803, - "2033": 2323.363666983967, - "2034": 1372.5126163569473, - "2035": 810.8032801013893, - "2036": 478.9769880353521, - "2037": 282.9526726121898, - "2038": 167.1525291158077, - "2039": 98.74431554885858, - "2040": 58.33258943068214, - "2041": 34.45961391068511, - "2042": 20.356802303188932, - "2043": 12.025654178401055, - "2044": 7.104080310090775, - "2045": 4.196691198958926, - "2046": 2.4791691887833256, - "2047": 1.4645537580027974, - "2048": 0.8651760112962498, - "2049": 0.511097340355232, - "2050": 0.3019275706995364 - }, - "approximatedHistoricalEmission": { - "2021": 244532.808764144, - "2022": 257760.53108856548, - "2023": 261465.39970888477, - "2024": 265170.268329205 - }, - "totalApproximatedHistoricalEmission": 774077.4693441247, - "trend": { - "2024": 265170.268329205, - "2025": 268875.1369495252, - "2026": 272580.0055698445, - "2027": 276284.87419016473, - "2028": 279989.74281048495, - "2029": 283694.61143080425, - "2030": 287399.48005112447, - "2031": 291104.3486714447, - "2032": 294809.2172917649, - "2033": 298514.0859120842, - "2034": 302218.95453240443, - "2035": 305923.82315272465, - "2036": 309628.69177304395, - "2037": 313333.56039336417, - "2038": 317038.4290136844, - "2039": 320743.2976340046, - "2040": 324448.1662543239, - "2041": 328153.03487464413, - "2042": 331857.90349496435, - "2043": 335562.77211528365, - "2044": 339267.64073560387, - "2045": 342972.5093559241, - "2046": 346677.3779762443, - "2047": 350382.2465965636, - "2048": 354087.11521688383, - "2049": 357791.98383720405, - "2050": 361496.85245752335 - }, - "trendEmission": 8146672.570227471, - "historicalEmissionChangePercent": 1.5856263415764158, - "neededEmissionChangePercent": 40.92562280021149, - "hitNetZero": "Aldrig", - "budgetRunsOut": "2025-11-16", - "electricCarChangePercent": 0.06902258111591543, - "electricCarChangeYearly": { - "2015": 0.007062146892655367, - "2016": 0.010808646917534028, - "2017": 0.012319228709159078, - "2018": 0.035545023696682464, - "2019": 0.061461794019933555, - "2020": 0.2114695340501792, - "2021": 0.3084693084693085, - "2022": 0.5336658354114713 - }, - "climatePlanLink": "https://www.vanersborg.se/download/18.2875b421183ed3f970726814/1666862824047/Miljoaktivitetsplan%202022.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljöaktivitetsplan 2022", - "bicycleMetrePerCapita": 3.86479684, - "totalConsumptionEmission": 6074.0, - "electricVehiclePerChargePoints": 19.23913043478261 - }, - { - "kommun": "Vännäs", - "län": "Västerbottens län", - "emissions": { - "1990": 31106.9636791759, - "2000": 27705.828101475, - "2005": 24311.6168855127, - "2010": 22904.035119579, - "2015": 20325.604824918, - "2016": 19210.338424124, - "2017": 20196.1134469931, - "2018": 19209.1519276513, - "2019": 20009.2082053183, - "2020": 17314.9990099283, - "2021": 17672.8918327639 - }, - "budget": 39676.847021432004, - "emissionBudget": { - "2024": 16576.38901455782, - "2025": 10915.615708635005, - "2026": 7187.974787148037, - "2027": 4733.308951120706, - "2028": 3116.9020885851905, - "2029": 2052.4919734061473, - "2030": 1351.5738323396874, - "2031": 890.0165496062143, - "2032": 586.0793096309868, - "2033": 385.9354720196047, - "2034": 254.13998773779602, - "2035": 167.35215612439552, - "2036": 110.20203632172776, - "2037": 72.56846335716294, - "2038": 47.78661129859356, - "2039": 31.467666721338556, - "2040": 20.721579161533505, - "2041": 13.645239310245072, - "2042": 8.98544239231998, - "2043": 5.916948259388999, - "2044": 3.896333110344177, - "2045": 2.5657502890403885, - "2046": 1.6895564006665016, - "2047": 1.1125793664436412, - "2048": 0.7326377776721937, - "2049": 0.4824447850297606, - "2050": 0.31769174030574454 - }, - "approximatedHistoricalEmission": { - "2021": 17672.8918327639, - "2022": 17428.940660738386, - "2023": 17002.664837648044, - "2024": 16576.38901455782 - }, - "totalApproximatedHistoricalEmission": 51556.24592204729, - "trend": { - "2024": 16576.38901455782, - "2025": 16150.113191467477, - "2026": 15723.837368377252, - "2027": 15297.56154528691, - "2028": 14871.285722196684, - "2029": 14445.009899106342, - "2030": 14018.734076016, - "2031": 13592.458252925775, - "2032": 13166.182429835433, - "2033": 12739.906606745208, - "2034": 12313.630783654866, - "2035": 11887.35496056464, - "2036": 11461.079137474298, - "2037": 11034.803314384073, - "2038": 10608.527491293731, - "2039": 10182.251668203506, - "2040": 9755.975845113164, - "2041": 9329.700022022938, - "2042": 8903.424198932596, - "2043": 8477.148375842371, - "2044": 8050.872552752029, - "2045": 7624.596729661804, - "2046": 7198.320906571462, - "2047": 6772.045083481236, - "2048": 6345.7692603908945, - "2049": 5919.493437300553, - "2050": 5493.217614210327 - }, - "trendEmission": 286904.8861739853, - "historicalEmissionChangePercent": -2.07922139459165, - "neededEmissionChangePercent": 34.14961666833092, - "hitNetZero": "2062-11-10", - "budgetRunsOut": "2026-06-22", - "electricCarChangePercent": 0.08293148872104252, - "electricCarChangeYearly": { - "2015": 0.015748031496062992, - "2016": 0.007692307692307693, - "2017": 0.028169014084507043, - "2018": 0.058823529411764705, - "2019": 0.06593406593406594, - "2020": 0.24719101123595505, - "2021": 0.3879310344827586, - "2022": 0.6444444444444445 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.657717693, - "totalConsumptionEmission": 6079.2, - "electricVehiclePerChargePoints": 9.3 - }, - { - "kommun": "Värmdö", - "län": "Stockholms län", - "emissions": { - "1990": 160657.789630604, - "2000": 141270.038747618, - "2005": 118340.98882347, - "2010": 103052.618174083, - "2015": 92444.1709963158, - "2016": 89583.9338013426, - "2017": 86757.2558334588, - "2018": 94869.2790425222, - "2019": 91465.0120522628, - "2020": 84078.6041305045, - "2021": 89825.1859719511 - }, - "budget": 186337.03313239862, - "emissionBudget": { - "2024": 86826.23636205879, - "2025": 54486.090251999696, - "2026": 34191.670114199835, - "2027": 21456.307468406765, - "2028": 13464.482098744116, - "2029": 8449.369885957483, - "2030": 5302.235239808013, - "2031": 3327.313032535807, - "2032": 2087.989596041291, - "2033": 1310.276643810115, - "2034": 822.2382365167434, - "2035": 515.9793702986444, - "2036": 323.7926658600052, - "2037": 203.1896942004627, - "2038": 127.5076806314321, - "2039": 80.01492735142008, - "2040": 50.21178777111856, - "2041": 31.509415988079446, - "2042": 19.773111852450562, - "2043": 12.408225924512031, - "2044": 7.786537179510811, - "2045": 4.886287662455553, - "2046": 3.066293343219521, - "2047": 1.9241918438234993, - "2048": 1.2074885985792025, - "2049": 0.7577356282737184, - "2050": 0.4755020320945141 - }, - "approximatedHistoricalEmission": { - "2021": 89825.1859719511, - "2022": 87837.65480462764, - "2023": 87331.94558334316, - "2024": 86826.23636205879 - }, - "totalApproximatedHistoricalEmission": 263495.31155497575, - "trend": { - "2024": 86826.23636205879, - "2025": 86320.5271407743, - "2026": 85814.81791948981, - "2027": 85309.10869820544, - "2028": 84803.39947692095, - "2029": 84297.69025563658, - "2030": 83791.9810343521, - "2031": 83286.27181306761, - "2032": 82780.56259178324, - "2033": 82274.85337049875, - "2034": 81769.14414921426, - "2035": 81263.43492792989, - "2036": 80757.7257066454, - "2037": 80252.01648536103, - "2038": 79746.30726407655, - "2039": 79240.59804279206, - "2040": 78734.88882150769, - "2041": 78229.1796002232, - "2042": 77723.47037893883, - "2043": 77217.76115765434, - "2044": 76712.05193636985, - "2045": 76206.34271508548, - "2046": 75700.633493801, - "2047": 75194.92427251663, - "2048": 74689.21505123214, - "2049": 74183.50582994765, - "2050": 73677.79660866328 - }, - "trendEmission": 2086552.4286193862, - "historicalEmissionChangePercent": -0.2880618503153985, - "neededEmissionChangePercent": 37.246974491907196, - "hitNetZero": "2195-07-30", - "budgetRunsOut": "2026-02-28", - "electricCarChangePercent": 0.09712375610874407, - "electricCarChangeYearly": { - "2015": 0.023552502453385672, - "2016": 0.02327586206896552, - "2017": 0.028215767634854772, - "2018": 0.07666941467436109, - "2019": 0.13287904599659284, - "2020": 0.4001874414245548, - "2021": 0.5347166799680766, - "2022": 0.6562763268744735 - }, - "climatePlanLink": "https://www.varmdo.se/download/18.2c63bbd2171ac475b0b666dd/1588078930801/Milj%C3%B6-%20och%20klimatplan%202020-2030,%20beslutad%20KF%201%20april%202020-RD.pdf", - "climatePlanYear": 2020, - "climatePlanComment": "Miljö– och klimatplan 2020–2030", - "bicycleMetrePerCapita": 1.391918951, - "totalConsumptionEmission": 6374.5, - "electricVehiclePerChargePoints": 23.69747899159664 - }, - { - "kommun": "Värnamo", - "län": "Jönköpings län", - "emissions": { - "1990": 177740.087064459, - "2000": 158749.196161896, - "2005": 173084.939287945, - "2010": 152394.458759857, - "2015": 128228.602337246, - "2016": 122450.533318678, - "2017": 126784.026496468, - "2018": 126800.873856671, - "2019": 122543.833931921, - "2020": 112822.435208112, - "2021": 113560.106743427 - }, - "budget": 252742.52035338798, - "emissionBudget": { - "2024": 107419.65693454538, - "2025": 70226.59075481146, - "2026": 45911.28094971366, - "2027": 30014.9230624459, - "2028": 19622.532584775672, - "2029": 12828.411528475397, - "2030": 8386.692269865418, - "2031": 5482.877367419441, - "2032": 3584.4816119195384, - "2033": 2343.387890186671, - "2034": 1532.0114310567728, - "2035": 1001.5665928450525, - "2036": 654.7833910164036, - "2037": 428.07067669165855, - "2038": 279.8551502028921, - "2039": 182.95788373165476, - "2040": 119.61040272189985, - "2041": 78.19640316936928, - "2042": 51.121619269550294, - "2043": 33.421229760150595, - "2044": 21.849436982644317, - "2045": 14.284270802858515, - "2046": 9.338473688428303, - "2047": 6.105113241903545, - "2048": 3.9912740497038435, - "2049": 2.609332195592876, - "2050": 1.7058749717932158 - }, - "approximatedHistoricalEmission": { - "2021": 113560.106743427, - "2022": 112241.21947505511, - "2023": 109830.43820479978, - "2024": 107419.65693454538 - }, - "totalApproximatedHistoricalEmission": 332561.5395188411, - "trend": { - "2024": 107419.65693454538, - "2025": 105008.87566429097, - "2026": 102598.09439403564, - "2027": 100187.31312378123, - "2028": 97776.5318535259, - "2029": 95365.7505832715, - "2030": 92954.96931301709, - "2031": 90544.18804276176, - "2032": 88133.40677250735, - "2033": 85722.62550225202, - "2034": 83311.84423199762, - "2035": 80901.06296174228, - "2036": 78490.28169148788, - "2037": 76079.50042123348, - "2038": 73668.71915097814, - "2039": 71257.93788072374, - "2040": 68847.1566104684, - "2041": 66436.375340214, - "2042": 64025.594069959596, - "2043": 61614.81279970426, - "2044": 59204.03152944986, - "2045": 56793.25025919452, - "2046": 54382.46898894012, - "2047": 51971.687718684785, - "2048": 49560.90644843038, - "2049": 47150.12517817598, - "2050": 44739.343907920644 - }, - "trendEmission": 1978067.0109520615, - "historicalEmissionChangePercent": -1.9317054754978518, - "neededEmissionChangePercent": 34.62407834945608, - "hitNetZero": "2068-07-11", - "budgetRunsOut": "2026-06-02", - "electricCarChangePercent": 0.05898399875619671, - "electricCarChangeYearly": { - "2015": 0.02631578947368421, - "2016": 0.03560975609756097, - "2017": 0.04498594189315839, - "2018": 0.06277805239742956, - "2019": 0.07275624004248539, - "2020": 0.21948051948051947, - "2021": 0.31408450704225355, - "2022": 0.45900439238653 - }, - "climatePlanLink": "https://kommun.varnamo.se/kommun-och-politik/styrdokument/planer.html", - "climatePlanYear": 2023, - "climatePlanComment": "Plan för Värnamo kommuns miljöarbete 2023–2035. Planen har en tillhörande åtgärdsplan med konkreta åtgärder", - "bicycleMetrePerCapita": 4.133826968, - "totalConsumptionEmission": 6017.5, - "electricVehiclePerChargePoints": 17.95614035087719 - }, - { - "kommun": "Västervik", - "län": "Kalmar län", - "emissions": { - "1990": 200775.866065107, - "2000": 180736.214038466, - "2005": 170768.30347426, - "2010": 152264.240308727, - "2015": 130236.495549722, - "2016": 136140.826028425, - "2017": 127754.952496057, - "2018": 120122.292568408, - "2019": 119591.366425303, - "2020": 105703.926618085, - "2021": 113249.74480656 - }, - "budget": 252626.75059570832, - "emissionBudget": { - "2024": 96114.73554445244, - "2025": 65698.83588951814, - "2026": 44908.171601237555, - "2027": 30696.797732575335, - "2028": 20982.67102481355, - "2029": 14342.619291143015, - "2030": 9803.838981576739, - "2031": 6701.3741929298485, - "2032": 4580.697026752229, - "2033": 3131.1167899017173, - "2034": 2140.262124901003, - "2035": 1462.967455592592, - "2036": 1000.0054438294835, - "2037": 683.5496468945965, - "2038": 467.2375762080344, - "2039": 319.37834159165664, - "2040": 218.30976417962796, - "2041": 149.22474986453432, - "2042": 102.00196979650636, - "2043": 69.72303087666405, - "2044": 47.65889368927414, - "2045": 32.57704260882541, - "2046": 22.26790474945644, - "2047": 15.221135567306868, - "2048": 10.40434520288623, - "2049": 7.1118477739157715, - "2050": 4.861274570678416 - }, - "approximatedHistoricalEmission": { - "2021": 113249.74480656, - "2022": 104685.99533880316, - "2023": 100400.3654416278, - "2024": 96114.73554445244 - }, - "totalApproximatedHistoricalEmission": 309768.6009559372, - "trend": { - "2024": 96114.73554445244, - "2025": 91829.10564727709, - "2026": 87543.47575010173, - "2027": 83257.84585292451, - "2028": 78972.21595574915, - "2029": 74686.5860585738, - "2030": 70400.95616139844, - "2031": 66115.32626422308, - "2032": 61829.696367045864, - "2033": 57544.06646987051, - "2034": 53258.43657269515, - "2035": 48972.806675519794, - "2036": 44687.17677834444, - "2037": 40401.54688116722, - "2038": 36115.91698399186, - "2039": 31830.287086816505, - "2040": 27544.657189641148, - "2041": 23259.02729246393, - "2042": 18973.39739528857, - "2043": 14687.767498113215, - "2044": 10402.137600937858, - "2045": 6116.5077037625015, - "2046": 1830.877806585282, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 1078317.1857647179, - "historicalEmissionChangePercent": -2.0860625954993903, - "neededEmissionChangePercent": 31.64540742128677, - "hitNetZero": "2046-05-30", - "budgetRunsOut": "2026-10-21", - "electricCarChangePercent": 0.0577145209931009, - "electricCarChangeYearly": { - "2015": 0.014814814814814815, - "2016": 0.02404274265360641, - "2017": 0.03889943074003795, - "2018": 0.023255813953488372, - "2019": 0.06172839506172839, - "2020": 0.23007246376811594, - "2021": 0.30092592592592593, - "2022": 0.4221879815100154 - }, - "climatePlanLink": "https://www.vastervik.se/Bygga-bo-och-miljo/Energi-och-uppvarmning/kommunens-energi-och-klimatstrategi/", - "climatePlanYear": 2021, - "climatePlanComment": "Energi– och klimatstrategi 2021–2030", - "bicycleMetrePerCapita": 3.089136601, - "totalConsumptionEmission": 6020.3, - "electricVehiclePerChargePoints": 10.905263157894737 - }, - { - "kommun": "Västerås", - "län": "Västmanlands län", - "emissions": { - "1990": 842512.065096116, - "2000": 803767.979408367, - "2005": 834887.449750364, - "2010": 919137.642681698, - "2015": 463533.32413355, - "2016": 470792.088702974, - "2017": 486952.480532489, - "2018": 493810.009637108, - "2019": 471050.532846199, - "2020": 377623.985794469, - "2021": 432745.081804335 - }, - "budget": 946908.6284721681, - "emissionBudget": { - "2024": 393514.74038781226, - "2025": 259703.38712581326, - "2026": 171393.45077175897, - "2027": 113112.56003457635, - "2028": 74649.59238503072, - "2029": 49265.63099224182, - "2030": 32513.2705955731, - "2031": 21457.408410894583, - "2032": 14160.998487018373, - "2033": 9345.670936081891, - "2034": 6167.754719103549, - "2035": 4070.461985576033, - "2036": 2686.3358759551534, - "2037": 1772.870122363398, - "2038": 1170.0206585862104, - "2039": 772.1650470896176, - "2040": 509.5968652958432, - "2041": 336.31276900987496, - "2042": 221.9524614489661, - "2043": 146.47940751190538, - "2044": 96.67032609130263, - "2045": 63.79840078093734, - "2046": 42.10429515217401, - "2047": 27.787086330713738, - "2048": 18.338323060864035, - "2049": 12.102531682600475, - "2050": 7.987168327344708 - }, - "approximatedHistoricalEmission": { - "2021": 432745.081804335, - "2022": 414557.803280022, - "2023": 404036.27183391526, - "2024": 393514.74038781226 - }, - "totalApproximatedHistoricalEmission": 1231723.986210011, - "trend": { - "2024": 393514.74038781226, - "2025": 382993.2089417055, - "2026": 372471.6774956025, - "2027": 361950.1460494958, - "2028": 351428.6146033928, - "2029": 340907.08315728605, - "2030": 330385.55171118304, - "2031": 319864.0202650763, - "2032": 309342.4888189696, - "2033": 298820.9573728666, - "2034": 288299.42592675984, - "2035": 277777.89448065683, - "2036": 267256.3630345501, - "2037": 256734.8315884471, - "2038": 246213.30014234036, - "2039": 235691.76869623736, - "2040": 225170.23725013062, - "2041": 214648.70580402762, - "2042": 204127.17435792089, - "2043": 193605.64291181788, - "2044": 183084.11146571115, - "2045": 172562.58001960814, - "2046": 162041.0485735014, - "2047": 151519.5171273984, - "2048": 140997.98568129167, - "2049": 130476.45423518494, - "2050": 119954.92278908193 - }, - "trendEmission": 6675105.62129961, - "historicalEmissionChangePercent": -0.5731626638565167, - "neededEmissionChangePercent": 34.00415271105901, - "hitNetZero": "2061-05-17", - "budgetRunsOut": "2026-06-28", - "electricCarChangePercent": 0.07642102938412798, - "electricCarChangeYearly": { - "2015": 0.01957223567393059, - "2016": 0.025799418604651164, - "2017": 0.045060999606454155, - "2018": 0.06633530873637927, - "2019": 0.11158449989855955, - "2020": 0.28936282253817797, - "2021": 0.41858141858141856, - "2022": 0.5449010654490106 - }, - "climatePlanLink": "https://www.vasteras.se/download/18.4651ec33169110b990c26ef/1554823302843/Klimatprogram%20med%20handlingsplan%202017-2020_190306.pdf", - "climatePlanYear": 2017, - "climatePlanComment": "Klimatprogram med handlingsplan 2017–2020. ", - "bicycleMetrePerCapita": 2.882234152, - "totalConsumptionEmission": 6397.4, - "electricVehiclePerChargePoints": 18.045023696682463 - }, - { - "kommun": "Växjö", - "län": "Kronobergs län", - "emissions": { - "1990": 342073.212688418, - "2000": 241002.481546039, - "2005": 270259.390802491, - "2010": 259366.274708217, - "2015": 176895.739389524, - "2016": 175050.309079603, - "2017": 170772.279676527, - "2018": 170920.08428412, - "2019": 165386.271815658, - "2020": 131329.763383877, - "2021": 130580.639700426 - }, - "budget": 332057.1295402119, - "emissionBudget": { - "2024": 110468.06997861527, - "2025": 79205.72767904555, - "2026": 56790.59386464862, - "2027": 40718.9182652091, - "2028": 29195.5091830952, - "2029": 20933.2121965647, - "2030": 15009.136169480875, - "2031": 10761.567142141144, - "2032": 7716.055477616309, - "2033": 5532.4202643786075, - "2034": 3966.7514146959657, - "2035": 2844.165127386575, - "2036": 2039.2695246475132, - "2037": 1462.158492174938, - "2038": 1048.3692471248116, - "2039": 751.681903295028, - "2040": 538.9567514411909, - "2041": 386.43258358453966, - "2042": 277.07258746923145, - "2043": 198.66134996895283, - "2044": 142.44040643634395, - "2045": 102.12992808576857, - "2046": 73.22727077071083, - "2047": 52.504033685638205, - "2048": 37.64544990204982, - "2049": 26.9918289861869, - "2050": 19.35317107154267 - }, - "approximatedHistoricalEmission": { - "2021": 130580.639700426, - "2022": 127023.2412871588, - "2023": 118745.65563288704, - "2024": 110468.06997861527 - }, - "totalApproximatedHistoricalEmission": 366293.2517595665, - "trend": { - "2024": 110468.06997861527, - "2025": 102190.4843243435, - "2026": 93912.89867007174, - "2027": 85635.31301579997, - "2028": 77357.72736152634, - "2029": 69080.14170725644, - "2030": 60802.55605298281, - "2031": 52524.9703987129, - "2032": 44247.384744439274, - "2033": 35969.79909016937, - "2034": 27692.21343589574, - "2035": 19414.627781625837, - "2036": 11137.042127352208, - "2037": 2859.456473082304, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 738058.6501725661, - "historicalEmissionChangePercent": -4.63345693868102, - "neededEmissionChangePercent": 28.29989000950372, - "hitNetZero": "2037-05-03", - "budgetRunsOut": "2027-06-15", - "electricCarChangePercent": 0.06986862307772726, - "electricCarChangeYearly": { - "2015": 0.01579343193782903, - "2016": 0.030791436131825837, - "2017": 0.04611837048424289, - "2018": 0.060544611819235226, - "2019": 0.08151658767772511, - "2020": 0.2487985212569316, - "2021": 0.39363005308289095, - "2022": 0.5051875498802874 - }, - "climatePlanLink": "https://vaxjo.se/download/18.58d9f57a16d9ce07d02dd012/1571219603597/H%C3%A5llbarhetsprogrammet%20H%C3%A5llbara%20V%C3%A4xj%C3%B6%202030_antaget%20av%20KF.pdf", - "climatePlanYear": 2019, - "climatePlanComment": "Hållbarhetsprogram Hållbara Växjö 2030", - "bicycleMetrePerCapita": 2.872379738, - "totalConsumptionEmission": 6123.9, - "electricVehiclePerChargePoints": 22.16826923076923 - }, - { - "kommun": "Vårgårda", - "län": "Västra Götalands län", - "emissions": { - "1990": 62857.2557619373, - "2000": 62165.1874089084, - "2005": 63338.7644803513, - "2010": 59855.7291377963, - "2015": 51065.9121251641, - "2016": 49717.9061330512, - "2017": 50238.1258503929, - "2018": 47993.5934022071, - "2019": 46781.5003167631, - "2020": 43700.7892236109, - "2021": 44254.4045734121 - }, - "budget": 98868.17645695194, - "emissionBudget": { - "2024": 39980.59408756439, - "2025": 26682.59145975693, - "2026": 17807.656520785484, - "2027": 11884.6263954739, - "2028": 7931.663798385347, - "2029": 5293.501748996972, - "2030": 3532.8225551287587, - "2031": 2357.765388174548, - "2032": 1573.5456675013409, - "2033": 1050.1663906557171, - "2034": 700.869044248388, - "2035": 467.75198821487317, - "2036": 312.17232987312076, - "2037": 208.3402443896099, - "2038": 139.04389748432914, - "2039": 92.79630771421316, - "2040": 61.931194976474686, - "2041": 41.33217156685063, - "2042": 27.58461881900569, - "2043": 18.40965926890984, - "2044": 12.286396147836076, - "2045": 8.199800338319909, - "2046": 5.47245301057245, - "2047": 3.652252581440238, - "2048": 2.4374716224820676, - "2049": 1.6267406971240934, - "2050": 1.0856681453321209 - }, - "approximatedHistoricalEmission": { - "2021": 44254.4045734121, - "2022": 42546.69280240452, - "2023": 41263.643444984686, - "2024": 39980.59408756439 - }, - "totalApproximatedHistoricalEmission": 125927.83557787744, - "trend": { - "2024": 39980.59408756439, - "2025": 38697.54473014409, - "2026": 37414.49537272379, - "2027": 36131.44601530349, - "2028": 34848.396657883655, - "2029": 33565.347300463356, - "2030": 32282.297943043057, - "2031": 30999.248585622758, - "2032": 29716.19922820246, - "2033": 28433.14987078216, - "2034": 27150.100513362326, - "2035": 25867.051155942027, - "2036": 24584.001798521727, - "2037": 23300.952441101428, - "2038": 22017.90308368113, - "2039": 20734.85372626083, - "2040": 19451.804368840996, - "2041": 18168.755011420697, - "2042": 16885.705654000398, - "2043": 15602.656296580099, - "2044": 14319.6069391598, - "2045": 13036.5575817395, - "2046": 11753.508224319667, - "2047": 10470.458866899367, - "2048": 9187.409509479068, - "2049": 7904.360152058769, - "2050": 6621.31079463847 - }, - "trendEmission": 605824.7634686381, - "historicalEmissionChangePercent": -2.3175333860117076, - "neededEmissionChangePercent": 33.26114314030087, - "hitNetZero": "2055-02-20", - "budgetRunsOut": "2026-07-31", - "electricCarChangePercent": 0.07425641056499373, - "electricCarChangeYearly": { - "2015": 0.021929824561403508, - "2016": 0.026415094339622643, - "2017": 0.028688524590163935, - "2018": 0.0430622009569378, - "2019": 0.07106598984771574, - "2020": 0.3148148148148148, - "2021": 0.37662337662337664, - "2022": 0.5362318840579711 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Förberedande arbete pågår.", - "bicycleMetrePerCapita": 2.061869332, - "totalConsumptionEmission": 5657.8, - "electricVehiclePerChargePoints": 22.57894736842105 - }, - { - "kommun": "Ydre", - "län": "Östergötlands län", - "emissions": { - "1990": 26843.9274372587, - "2000": 23699.7031770704, - "2005": 20906.4399004075, - "2010": 18944.9084871587, - "2015": 15472.4947270716, - "2016": 15354.332323527, - "2017": 14445.3657300524, - "2018": 13260.5372336672, - "2019": 13223.6533026939, - "2020": 11782.4964395034, - "2021": 11651.4229570806 - }, - "budget": 28198.43810442037, - "emissionBudget": { - "2024": 9349.629065075424, - "2025": 6711.155730409989, - "2026": 4817.261831921831, - "2027": 3457.8264146275746, - "2028": 2482.0248371108687, - "2029": 1781.5953010176613, - "2030": 1278.8275802682588, - "2031": 917.9413411792322, - "2032": 658.8975080355808, - "2033": 472.9560666020045, - "2034": 339.48745929019435, - "2035": 243.68380734250405, - "2036": 174.91602807683975, - "2037": 125.55457505296951, - "2038": 90.12296637450932, - "2039": 64.69018802950293, - "2040": 46.43456152899217, - "2041": 33.330688471741745, - "2042": 23.924739621083063, - "2043": 17.173157596846675, - "2044": 12.326877805861026, - "2045": 8.848222325085423, - "2046": 6.35124640214372, - "2047": 4.558919224529555, - "2048": 3.272388312437396, - "2049": 2.3489175262766167, - "2050": 1.6860509873719347 - }, - "approximatedHistoricalEmission": { - "2021": 11651.4229570806, - "2022": 10765.957601174014, - "2023": 10057.793333124602, - "2024": 9349.629065075424 - }, - "totalApproximatedHistoricalEmission": 31324.276945376627, - "trend": { - "2024": 9349.629065075424, - "2025": 8641.464797026245, - "2026": 7933.300528977066, - "2027": 7225.136260927655, - "2028": 6516.971992878476, - "2029": 5808.8077248292975, - "2030": 5100.643456780119, - "2031": 4392.479188730707, - "2032": 3684.3149206815287, - "2033": 2976.15065263235, - "2034": 2267.9863845831715, - "2035": 1559.82211653376, - "2036": 851.6578484845813, - "2037": 143.4935804354027, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 61777.04398603807, - "historicalEmissionChangePercent": -4.529113534213297, - "neededEmissionChangePercent": 28.220085698599316, - "hitNetZero": "2037-03-11", - "budgetRunsOut": "2027-06-22", - "electricCarChangePercent": 0.06084149828047423, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.03076923076923077, - "2017": 0.09090909090909091, - "2018": 0.06451612903225806, - "2019": 0.171875, - "2020": 0.1323529411764706, - "2021": 0.3424657534246575, - "2022": 0.47435897435897434 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.709752197, - "totalConsumptionEmission": 6152.7, - "electricVehiclePerChargePoints": 18.714285714285715 - }, - { - "kommun": "Ystad", - "län": "Skåne län", - "emissions": { - "1990": 165913.324618973, - "2000": 163578.212771628, - "2005": 151279.739102008, - "2010": 90286.4232308456, - "2015": 80269.3106338743, - "2016": 76164.4747466553, - "2017": 77153.084440652, - "2018": 69161.3197244611, - "2019": 67974.1304298135, - "2020": 63316.2090542935, - "2021": 63515.5467990261 - }, - "budget": 147391.56627196923, - "emissionBudget": { - "2024": 52835.55863980111, - "2025": 36918.53462684682, - "2026": 25796.608081417235, - "2027": 18025.22757829941, - "2028": 12595.021338620712, - "2029": 8800.696791828106, - "2030": 6149.434918716489, - "2031": 4296.8813395143125, - "2032": 3002.420464630263, - "2033": 2097.9235715756436, - "2034": 1465.9117082439363, - "2035": 1024.2971505166552, - "2036": 715.721585860988, - "2037": 500.1062320723874, - "2038": 349.44627673450896, - "2039": 244.17352252858154, - "2040": 170.6148071204445, - "2041": 119.21608906362523, - "2042": 83.30153831017148, - "2043": 58.206458032166786, - "2044": 40.671418864262534, - "2045": 28.418913783040104, - "2046": 19.857548203648353, - "2047": 13.875344556467272, - "2048": 9.695315080504956, - "2049": 6.7745441655684155, - "2050": 4.7336727347335215 - }, - "approximatedHistoricalEmission": { - "2021": 63515.5467990261, - "2022": 58916.75698980875, - "2023": 55876.157814805396, - "2024": 52835.55863980111 - }, - "totalApproximatedHistoricalEmission": 172968.46752402774, - "trend": { - "2024": 52835.55863980111, - "2025": 49794.95946479775, - "2026": 46754.36028979346, - "2027": 43713.761114790104, - "2028": 40673.161939785816, - "2029": 37632.56276478246, - "2030": 34591.96358977817, - "2031": 31551.364414774813, - "2032": 28510.765239771456, - "2033": 25470.166064767167, - "2034": 22429.56688976381, - "2035": 19388.96771475952, - "2036": 16348.368539756164, - "2037": 13307.769364751875, - "2038": 10267.170189748518, - "2039": 7226.57101474423, - "2040": 4185.971839740872, - "2041": 1145.3726647365838, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 459410.6024209433, - "historicalEmissionChangePercent": -3.7380619374059965, - "neededEmissionChangePercent": 30.125590459762787, - "hitNetZero": "2041-05-13", - "budgetRunsOut": "2027-01-22", - "electricCarChangePercent": 0.05677580065707093, - "electricCarChangeYearly": { - "2015": 0.003784295175023652, - "2016": 0.013366750208855471, - "2017": 0.020460358056265986, - "2018": 0.038, - "2019": 0.06660412757973734, - "2020": 0.20361083249749248, - "2021": 0.34465534465534464, - "2022": 0.36587982832618027 - }, - "climatePlanLink": "https://ystad.se/globalassets/dokument/lou/avd-f-strat-miljoarb/miljoprogram-2021_2025_webb.pdf?_gl=1*bzsvyx*_ga*Nzk5ODg1NzcyLjE2Nzc3NTI1Mzc.*_up*MQ..)%20och%20en%20sida%20om%20hur%20kommunen%20arbetar%20med%20h%C3%A5llbar%20utveckling%20(https://ystad.se/kommun--politik/hallbarhet/hallbar-kommun/?_gl=1*u0ebdu*_ga*Nzk5ODg1NzcyLjE2Nzc3NTI1Mzc.*_up*MQ..).", - "climatePlanYear": 2020, - "climatePlanComment": "Miljöprogram 2021–2025", - "bicycleMetrePerCapita": 4.385902002, - "totalConsumptionEmission": 6411.7, - "electricVehiclePerChargePoints": 12.394495412844037 - }, - { - "kommun": "Älmhult", - "län": "Kronobergs län", - "emissions": { - "1990": 94601.3938134482, - "2000": 81317.6855538434, - "2005": 87150.4916469906, - "2010": 64141.0901541179, - "2015": 58134.4122293024, - "2016": 57075.699772095, - "2017": 57861.7765907194, - "2018": 54606.6517624614, - "2019": 53057.36585272, - "2020": 47934.1202717576, - "2021": 49230.8804101019 - }, - "budget": 111946.43812175, - "emissionBudget": { - "2024": 43314.808442106936, - "2025": 29416.924516484818, - "2026": 19978.28177319933, - "2027": 13568.098948810266, - "2028": 9214.671770805917, - "2029": 6258.074632565448, - "2030": 4250.124050086911, - "2031": 2886.43960030917, - "2032": 1960.3036212702048, - "2033": 1331.325376478854, - "2034": 904.1595591748661, - "2035": 614.053125472196, - "2036": 417.0295354132822, - "2037": 283.2224545283138, - "2038": 192.34838767366588, - "2039": 130.63195254866412, - "2040": 88.7177024619933, - "2041": 60.25195655865791, - "2042": 40.91966054578139, - "2043": 27.790277939801985, - "2044": 18.873557054741134, - "2045": 12.817833512503077, - "2046": 8.705134674810795, - "2047": 5.9120263680031995, - "2048": 4.01510798874858, - "2049": 2.726830219933137, - "2050": 1.851906117887034 - }, - "approximatedHistoricalEmission": { - "2021": 49230.8804101019, - "2022": 46871.820241840556, - "2023": 45093.31434197351, - "2024": 43314.808442106936 - }, - "totalApproximatedHistoricalEmission": 138237.9790099185, - "trend": { - "2024": 43314.808442106936, - "2025": 41536.30254223989, - "2026": 39757.79664237285, - "2027": 37979.29074250581, - "2028": 36200.784842638765, - "2029": 34422.27894277172, - "2030": 32643.77304290468, - "2031": 30865.2671430381, - "2032": 29086.76124317106, - "2033": 27308.255343304016, - "2034": 25529.749443436973, - "2035": 23751.24354356993, - "2036": 21972.737643702887, - "2037": 20194.231743835844, - "2038": 18415.725843969267, - "2039": 16637.219944102224, - "2040": 14858.714044235181, - "2041": 13080.208144368138, - "2042": 11301.702244501095, - "2043": 9523.196344634052, - "2044": 7744.6904447670095, - "2045": 5966.184544900432, - "2046": 4187.678645033389, - "2047": 2409.1727451663464, - "2048": 630.6668452993035, - "2049": 0, - "2050": 0 - }, - "trendEmission": 527661.0368715224, - "historicalEmissionChangePercent": -2.64291854957057, - "neededEmissionChangePercent": 32.08575640868306, - "hitNetZero": "2048-05-03", - "budgetRunsOut": "2026-09-27", - "electricCarChangePercent": 0.07081995808507044, - "electricCarChangeYearly": { - "2015": 0.0013717421124828531, - "2016": 0.012658227848101266, - "2017": 0.02460456942003515, - "2018": 0.04585152838427948, - "2019": 0.08520179372197309, - "2020": 0.2613333333333333, - "2021": 0.36058700209643607, - "2022": 0.4956140350877193 - }, - "climatePlanLink": "https://www.almhult.se/stadsutvecklingplanering/strategiskplanering/miljoplan2030.1994.html", - "climatePlanYear": 2020, - "climatePlanComment": "Miljöplan 2030", - "bicycleMetrePerCapita": 3.376752163, - "totalConsumptionEmission": 5705.8, - "electricVehiclePerChargePoints": 9.392857142857142 - }, - { - "kommun": "Älvdalen", - "län": "Dalarnas län", - "emissions": { - "1990": 64013.0168644679, - "2000": 62002.6008808185, - "2005": 59678.5033470948, - "2010": 47214.3475564722, - "2015": 43291.8443610842, - "2016": 40746.3335721897, - "2017": 40879.6117416476, - "2018": 34367.0763554942, - "2019": 35856.9737326974, - "2020": 33680.9904514868, - "2021": 33344.2790431293 - }, - "budget": 77662.35417552656, - "emissionBudget": { - "2024": 26953.296993057244, - "2025": 19049.63989002715, - "2026": 13463.613747631252, - "2027": 9515.607444123025, - "2028": 6725.29580303654, - "2029": 4753.201926827629, - "2030": 3359.3955149150397, - "2031": 2374.302291248007, - "2032": 1678.0731370262922, - "2033": 1186.0029211904273, - "2034": 838.2250439720782, - "2035": 592.4279036654901, - "2036": 418.7071521728219, - "2037": 295.9274507428762, - "2038": 209.15108721866648, - "2039": 147.8206133798599, - "2040": 104.47439710008767, - "2041": 73.8388199038141, - "2042": 52.18667421037754, - "2043": 36.88370113021547, - "2044": 26.068099369178356, - "2045": 18.424013423226302, - "2046": 13.021443021679017, - "2047": 9.203096766803226, - "2048": 6.504424276029508, - "2049": 4.597097719890418, - "2050": 3.2490665659839273 - }, - "approximatedHistoricalEmission": { - "2021": 33344.2790431293, - "2022": 30453.012721930165, - "2023": 28703.154857493937, - "2024": 26953.296993057244 - }, - "totalApproximatedHistoricalEmission": 89304.95559751737, - "trend": { - "2024": 26953.296993057244, - "2025": 25203.439128621016, - "2026": 23453.581264184322, - "2027": 21703.723399748094, - "2028": 19953.8655353114, - "2029": 18204.007670875173, - "2030": 16454.14980643848, - "2031": 14704.291942002252, - "2032": 12954.434077565558, - "2033": 11204.57621312933, - "2034": 9454.718348693103, - "2035": 7704.860484256409, - "2036": 5955.002619820181, - "2037": 4205.144755383488, - "2038": 2455.28689094726, - "2039": 705.4290265105665, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 207793.15966001526, - "historicalEmissionChangePercent": -4.036128828002451, - "neededEmissionChangePercent": 29.32352619075119, - "hitNetZero": "2039-05-24", - "budgetRunsOut": "2027-03-21", - "electricCarChangePercent": 0.05055099741651649, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.01, - "2017": 0.022222222222222223, - "2018": 0.010869565217391304, - "2019": 0.07228915662650602, - "2020": 0.14583333333333334, - "2021": 0.2786885245901639, - "2022": 0.35294117647058826 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Beslut om utveckling av klimatplan väntas före sommaren 2023", - "bicycleMetrePerCapita": 0.7569722078, - "totalConsumptionEmission": 5794.9, - "electricVehiclePerChargePoints": 0.9108910891089109 - }, - { - "kommun": "Älvkarleby", - "län": "Uppsala län", - "emissions": { - "1990": 96817.8823540046, - "2000": 95435.1637003813, - "2005": 79010.9524517158, - "2010": 60754.3507829771, - "2015": 34331.4404897965, - "2016": 25714.1247504803, - "2017": 25711.7802384645, - "2018": 23312.9555671608, - "2019": 23357.5595731839, - "2020": 21400.8317123672, - "2021": 21794.3737869597 - }, - "budget": 52025.21704914435, - "emissionBudget": { - "2024": 14676.436549054924, - "2025": 11068.916790852545, - "2026": 8348.138086060613, - "2027": 6296.136362821825, - "2028": 4748.523885276735, - "2029": 3581.320001610925, - "2030": 2701.0189405819974, - "2031": 2037.0989786171249, - "2032": 1536.3728800023769, - "2033": 1158.727018757416, - "2034": 873.9078393497625, - "2035": 659.0982166757061, - "2036": 497.08955528802954, - "2037": 374.90319306694425, - "2038": 282.75066872074973, - "2039": 213.24955919421924, - "2040": 160.83206700190428, - "2041": 121.29897887641788, - "2042": 91.48326295083584, - "2043": 68.99635493764953, - "2044": 52.03680805788986, - "2045": 39.245977491139605, - "2046": 29.599178095657663, - "2047": 22.323595943973036, - "2048": 16.836377491943892, - "2049": 12.697936647960368, - "2050": 9.576739128875339 - }, - "approximatedHistoricalEmission": { - "2021": 21794.3737869597, - "2022": 18147.294181198813, - "2023": 16411.8653651271, - "2024": 14676.436549054924 - }, - "totalApproximatedHistoricalEmission": 52794.564714333224, - "trend": { - "2024": 14676.436549054924, - "2025": 12941.007732983213, - "2026": 11205.578916911036, - "2027": 9470.150100839324, - "2028": 7734.721284767147, - "2029": 5999.292468695436, - "2030": 4263.8636526232585, - "2031": 2528.4348365510814, - "2032": 793.0060204793699, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 62274.27328837733, - "historicalEmissionChangePercent": -6.7976987227356, - "neededEmissionChangePercent": 24.58035195494837, - "hitNetZero": "2032-06-13", - "budgetRunsOut": "2029-01-20", - "electricCarChangePercent": 0.08039150618547321, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.006666666666666667, - "2017": 0.0, - "2018": 0.025, - "2019": 0.06611570247933884, - "2020": 0.16304347826086957, - "2021": 0.40860215053763443, - "2022": 0.6018518518518519 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 0.9894422704, - "totalConsumptionEmission": 6136.6, - "electricVehiclePerChargePoints": 37.333333333333336 - }, - { - "kommun": "Älvsbyn", - "län": "Norrbottens län", - "emissions": { - "1990": 42380.2056350666, - "2000": 39373.1061541358, - "2005": 36316.1383488962, - "2010": 29687.3929194504, - "2015": 26459.3056683377, - "2016": 25652.7623505093, - "2017": 25076.6480812621, - "2018": 23863.0892384879, - "2019": 24421.6975466247, - "2020": 25021.6162165658, - "2021": 23006.9546629168 - }, - "budget": 51396.91069964202, - "emissionBudget": { - "2024": 22155.804290931672, - "2025": 14397.1003539923, - "2026": 9355.403933034517, - "2027": 6079.250723981202, - "2028": 3950.3681112610716, - "2029": 2566.9953293600374, - "2030": 1668.0635412613983, - "2031": 1083.9271680245674, - "2032": 704.3485314074395, - "2033": 457.69390078113844, - "2034": 297.41484147579797, - "2035": 193.2636370707766, - "2036": 125.58496821640381, - "2037": 81.60657887308265, - "2038": 53.028907917490606, - "2039": 34.45880361306553, - "2040": 22.391732982533714, - "2041": 14.550409572866874, - "2042": 9.455026053736892, - "2043": 6.143986341356947, - "2044": 3.992434071385922, - "2045": 2.594330281476956, - "2046": 1.6858261123525309, - "2047": 1.0954694941430827, - "2048": 0.7118488697054629, - "2049": 0.46256770819284776, - "2050": 0.3005818984461077 - }, - "approximatedHistoricalEmission": { - "2021": 23006.9546629168, - "2022": 23032.539706559386, - "2023": 22594.17199874553, - "2024": 22155.804290931672 - }, - "totalApproximatedHistoricalEmission": 68208.09118222915, - "trend": { - "2024": 22155.804290931672, - "2025": 21717.43658311793, - "2026": 21279.068875304074, - "2027": 20840.701167490217, - "2028": 20402.333459676476, - "2029": 19963.96575186262, - "2030": 19525.598044048762, - "2031": 19087.230336234905, - "2032": 18648.862628421164, - "2033": 18210.494920607307, - "2034": 17772.12721279345, - "2035": 17333.759504979593, - "2036": 16895.391797165852, - "2037": 16457.024089351995, - "2038": 16018.656381538138, - "2039": 15580.288673724397, - "2040": 15141.92096591054, - "2041": 14703.553258096683, - "2042": 14265.185550282826, - "2043": 13826.817842469085, - "2044": 13388.450134655228, - "2045": 12950.08242684137, - "2046": 12511.714719027514, - "2047": 12073.347011213773, - "2048": 11634.979303399916, - "2049": 11196.611595586059, - "2050": 10758.243887772318 - }, - "trendEmission": 427882.62632315187, - "historicalEmissionChangePercent": -2.2312922825770767, - "neededEmissionChangePercent": 35.01883224395061, - "hitNetZero": "2074-07-04", - "budgetRunsOut": "2026-05-18", - "electricCarChangePercent": 0.05512807341840541, - "electricCarChangeYearly": { - "2015": 0.02857142857142857, - "2016": 0.049019607843137254, - "2017": 0.05319148936170213, - "2018": 0.11538461538461539, - "2019": 0.09433962264150944, - "2020": 0.20408163265306123, - "2021": 0.35384615384615387, - "2022": 0.4107142857142857 - }, - "climatePlanLink": "http://www3.alvsbyn.se/styrdoc/Styrdok.nsf/Formnytt.xsp?documentId=D921B3CF75BFCEFFC125868C00428F58&action=openDocument", - "climatePlanYear": 2021, - "climatePlanComment": "Energi– och klimatstrategi", - "bicycleMetrePerCapita": 2.224133783, - "totalConsumptionEmission": 6267.0, - "electricVehiclePerChargePoints": 11.25 - }, - { - "kommun": "Ängelholm", - "län": "Skåne län", - "emissions": { - "1990": 210875.346268431, - "2000": 208985.254846749, - "2005": 190582.645187491, - "2010": 164439.756276008, - "2015": 150335.064273191, - "2016": 144503.997924601, - "2017": 162461.558243596, - "2018": 156440.030394744, - "2019": 133162.475163606, - "2020": 123224.247930529, - "2021": 120399.758867021 - }, - "budget": 293426.0869930383, - "emissionBudget": { - "2024": 106861.4834096171, - "2025": 74243.34129134753, - "2026": 51581.482403485395, - "2027": 35836.87480470589, - "2028": 24898.113352426342, - "2029": 17298.27313035865, - "2030": 12018.189854667355, - "2031": 8349.786495701765, - "2032": 5801.117752914153, - "2033": 4030.398525818517, - "2034": 2800.16937576555, - "2035": 1945.4524119008404, - "2036": 1351.627197885507, - "2037": 939.0597636252767, - "2038": 652.4234204812577, - "2039": 453.2792651547558, - "2040": 314.92139271713614, - "2041": 218.79554441353235, - "2042": 152.01091879525762, - "2043": 105.61147163629916, - "2044": 73.37488010455202, - "2045": 50.97810822008205, - "2046": 35.41767310550157, - "2047": 24.606867771409675, - "2048": 17.09592664983925, - "2049": 11.877607127074862, - "2050": 8.252114901678398 - }, - "approximatedHistoricalEmission": { - "2021": 120399.758867021, - "2022": 118408.94764437713, - "2023": 112635.21552699618, - "2024": 106861.4834096171 - }, - "totalApproximatedHistoricalEmission": 344674.78430969233, - "trend": { - "2024": 106861.4834096171, - "2025": 101087.75129223615, - "2026": 95314.01917485707, - "2027": 89540.28705747612, - "2028": 83766.55494009703, - "2029": 77992.82282271609, - "2030": 72219.09070533514, - "2031": 66445.35858795606, - "2032": 60671.62647057511, - "2033": 54897.894353196025, - "2034": 49124.16223581508, - "2035": 43350.43011843413, - "2036": 37576.69800105505, - "2037": 31802.9658836741, - "2038": 26029.233766295016, - "2039": 20255.50164891407, - "2040": 14481.769531534985, - "2041": 8708.037414154038, - "2042": 2934.305296773091, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 989629.2510059029, - "historicalEmissionChangePercent": -3.2988398223161908, - "neededEmissionChangePercent": 30.523759429053598, - "hitNetZero": "2042-06-30", - "budgetRunsOut": "2026-12-27", - "electricCarChangePercent": 0.06255937990183585, - "electricCarChangeYearly": { - "2015": 0.011474713132171696, - "2016": 0.016965584100824042, - "2017": 0.017552413456850317, - "2018": 0.044794952681388014, - "2019": 0.06951530612244898, - "2020": 0.20408163265306123, - "2021": 0.34813248766737137, - "2022": 0.44216691068814057 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. Ny hållbarhetsplan under utveckling.", - "bicycleMetrePerCapita": 3.702963484, - "totalConsumptionEmission": 6461.6, - "electricVehiclePerChargePoints": 20.925233644859812 - }, - { - "kommun": "Åmål", - "län": "Västra Götalands län", - "emissions": { - "1990": 66382.977440721, - "2000": 59317.6980579094, - "2005": 48314.3030613173, - "2010": 44574.9429344046, - "2015": 34030.7191946249, - "2016": 33036.3733832332, - "2017": 31864.5118685949, - "2018": 32314.2712673777, - "2019": 32107.8444347977, - "2020": 29590.9704960794, - "2021": 29559.2865580057 - }, - "budget": 65912.85509423976, - "emissionBudget": { - "2024": 27487.331503681373, - "2025": 18114.267281286408, - "2026": 11937.378464473255, - "2027": 7866.7827073130165, - "2028": 5184.242951520585, - "2029": 3416.4379493291963, - "2030": 2251.447004078613, - "2031": 1483.7130623636358, - "2032": 977.7731598569807, - "2033": 644.3566322815007, - "2034": 424.6337357285282, - "2035": 279.835421077798, - "2036": 184.41272160215595, - "2037": 121.52876057552253, - "2038": 80.087965291707, - "2039": 52.77830658512894, - "2040": 34.781126425774076, - "2041": 22.920908868010898, - "2042": 15.10497552334427, - "2043": 9.954242516066065, - "2044": 6.559887761189773, - "2045": 4.322993675305173, - "2046": 2.8488710473514236, - "2047": 1.8774180241807223, - "2048": 1.2372263886059505, - "2049": 0.8153374032567454, - "2050": 0.5373107842441758 - }, - "approximatedHistoricalEmission": { - "2021": 29559.2865580057, - "2022": 28920.31515496457, - "2023": 28203.82332932297, - "2024": 27487.331503681373 - }, - "totalApproximatedHistoricalEmission": 85647.44751513108, - "trend": { - "2024": 27487.331503681373, - "2025": 26770.839678040007, - "2026": 26054.34785239841, - "2027": 25337.856026757043, - "2028": 24621.364201115444, - "2029": 23904.87237547408, - "2030": 23188.38054983248, - "2031": 22471.888724191114, - "2032": 21755.396898549516, - "2033": 21038.905072907917, - "2034": 20322.41324726655, - "2035": 19605.921421624953, - "2036": 18889.429595983587, - "2037": 18172.93777034199, - "2038": 17456.445944700623, - "2039": 16739.954119059024, - "2040": 16023.462293417426, - "2041": 15306.97046777606, - "2042": 14590.478642134462, - "2043": 13873.986816493096, - "2044": 13157.494990851497, - "2045": 12441.003165210132, - "2046": 11724.511339568533, - "2047": 11008.019513927167, - "2048": 10291.527688285569, - "2049": 9575.03586264397, - "2050": 8858.544037002604 - }, - "trendEmission": 472496.38202889264, - "historicalEmissionChangePercent": -2.273719036719601, - "neededEmissionChangePercent": 34.099578640944586, - "hitNetZero": "2062-05-03", - "budgetRunsOut": "2026-06-24", - "electricCarChangePercent": 0.04722049692122803, - "electricCarChangeYearly": { - "2015": 0.16261682242990655, - "2016": 0.032520325203252036, - "2017": 0.038461538461538464, - "2018": 0.052752293577981654, - "2019": 0.06578947368421052, - "2020": 0.2222222222222222, - "2021": 0.2907801418439716, - "2022": 0.46417445482866043 - }, - "climatePlanLink": "https://www.amal.se/media/467592/antagen-energi-och-klimatstrategi-20171027.pdf", - "climatePlanYear": 2017, - "climatePlanComment": "Energi– och klimatstrategi", - "bicycleMetrePerCapita": 2.91731537, - "totalConsumptionEmission": 5851.1, - "electricVehiclePerChargePoints": 4.7368421052631575 - }, - { - "kommun": "Ånge", - "län": "Västernorrlands län", - "emissions": { - "1990": 83727.3783313871, - "2000": 93450.3234134971, - "2005": 97521.9257279202, - "2010": 79485.8489489808, - "2015": 75130.8153932214, - "2016": 64557.2900906426, - "2017": 65865.9097727702, - "2018": 65427.6627652695, - "2019": 66767.7799561931, - "2020": 59727.990147357, - "2021": 64215.5717053796 - }, - "budget": 136768.3647578438, - "emissionBudget": { - "2024": 57062.76124011772, - "2025": 37597.20849603422, - "2026": 24771.848679844075, - "2027": 16321.543847645506, - "2028": 10753.85196371592, - "2029": 7085.440760813777, - "2030": 4668.417506991032, - "2031": 3075.9020864465265, - "2032": 2026.6339999020731, - "2033": 1335.297826174962, - "2034": 879.7939266161201, - "2035": 579.6739410022745, - "2036": 381.9324818136929, - "2037": 251.64564136201955, - "2038": 165.8029411789919, - "2039": 109.2433596497546, - "2040": 71.97768352421572, - "2041": 47.42427312856624, - "2042": 31.246652735304966, - "2043": 20.587628291399774, - "2044": 13.564666982263512, - "2045": 8.93741560394178, - "2046": 5.888636837308703, - "2047": 3.8798737060426625, - "2048": 2.5563505427040556, - "2049": 1.684314643284799, - "2050": 1.1097522699616826 - }, - "approximatedHistoricalEmission": { - "2021": 64215.5717053796, - "2022": 60027.22272345144, - "2023": 58544.99198178435, - "2024": 57062.76124011772 - }, - "totalApproximatedHistoricalEmission": 179211.38117798447, - "trend": { - "2024": 57062.76124011772, - "2025": 55580.53049845109, - "2026": 54098.29975678399, - "2027": 52616.06901511736, - "2028": 51133.83827345027, - "2029": 49651.60753178364, - "2030": 48169.37679011701, - "2031": 46687.14604844991, - "2032": 45204.91530678328, - "2033": 43722.68456511665, - "2034": 42240.453823449556, - "2035": 40758.223081782926, - "2036": 39275.99234011583, - "2037": 37793.7615984492, - "2038": 36311.53085678257, - "2039": 34829.300115115475, - "2040": 33347.069373448845, - "2041": 31864.838631782215, - "2042": 30382.60789011512, - "2043": 28900.37714844849, - "2044": 27418.146406781394, - "2045": 25935.915665114764, - "2046": 24453.684923448134, - "2047": 22971.45418178104, - "2048": 21489.22344011441, - "2049": 20006.99269844778, - "2050": 18524.761956780683 - }, - "trendEmission": 982637.8015596801, - "historicalEmissionChangePercent": -2.28231134136994, - "neededEmissionChangePercent": 34.11253209807577, - "hitNetZero": "2062-06-21", - "budgetRunsOut": "2026-06-23", - "electricCarChangePercent": 0.05920741158752741, - "electricCarChangeYearly": { - "2015": 0.01744186046511628, - "2016": 0.00625, - "2017": 0.0, - "2018": 0.0, - "2019": 0.07692307692307693, - "2020": 0.16666666666666666, - "2021": 0.25196850393700787, - "2022": 0.47 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.864452459, - "totalConsumptionEmission": 6333.8, - "electricVehiclePerChargePoints": 5.228571428571429 - }, - { - "kommun": "Åre", - "län": "Jämtlands län", - "emissions": { - "1990": 81442.5503532231, - "2000": 77535.3141569748, - "2005": 74553.3520429588, - "2010": 58458.7085436898, - "2015": 49498.6136590716, - "2016": 48071.2578531532, - "2017": 46225.2059246386, - "2018": 29533.6499850845, - "2019": 30254.8303383025, - "2020": 27703.0355115981, - "2021": 27256.1945967649 - }, - "budget": 76588.7132746356, - "emissionBudget": { - "2024": 10484.524526292458, - "2025": 9143.163633881468, - "2026": 7973.412721415449, - "2027": 6953.316485602549, - "2028": 6063.7285235586405, - "2029": 5287.951969905537, - "2030": 4611.42610975886, - "2031": 4021.4530855781595, - "2032": 3506.959568382148, - "2033": 3058.288920085444, - "2034": 2667.0199460075987, - "2035": 2325.808835681767, - "2036": 2028.2513253164716, - "2037": 1768.7624948084524, - "2038": 1542.4719431911976, - "2039": 1345.1323750448964, - "2040": 1173.0398821067186, - "2041": 1022.9644238300463, - "2042": 892.0892020675014, - "2043": 777.9577919883246, - "2044": 678.4280369190642, - "2045": 591.6318417500504, - "2046": 515.9401102615615, - "2047": 449.93216827091027, - "2048": 392.3690986970059, - "2049": 342.1704880625544, - "2050": 298.39414798406017 - }, - "approximatedHistoricalEmission": { - "2021": 27256.1945967649, - "2022": 19301.244344605133, - "2023": 14892.884435448796, - "2024": 10484.524526292458 - }, - "totalApproximatedHistoricalEmission": 53064.488341582604, - "trend": { - "2024": 10484.524526292458, - "2025": 6076.164617137983, - "2026": 1667.804707981646, - "2027": 0, - "2028": 0, - "2029": 0, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 12986.231588265859, - "historicalEmissionChangePercent": -8.406414823419276, - "neededEmissionChangePercent": 12.79372172812612, - "hitNetZero": "2026-05-18", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.07488338094349196, - "electricCarChangeYearly": { - "2015": 0.08280254777070063, - "2016": 0.032432432432432434, - "2017": 0.08, - "2018": 0.0728476821192053, - "2019": 0.10344827586206896, - "2020": 0.2624113475177305, - "2021": 0.5028901734104047, - "2022": 0.5628140703517588 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 0.3319469352, - "totalConsumptionEmission": 6697.7, - "electricVehiclePerChargePoints": 3.4057971014492754 - }, - { - "kommun": "Årjäng", - "län": "Värmlands län", - "emissions": { - "1990": 78180.6165603846, - "2000": 68140.9525384197, - "2005": 60422.452059284, - "2010": 55402.4335974424, - "2015": 45125.8538260535, - "2016": 42983.555410513, - "2017": 42379.6096411735, - "2018": 41342.5881498643, - "2019": 40527.9791564635, - "2020": 37686.5078536358, - "2021": 38379.083489963 - }, - "budget": 85440.8409724355, - "emissionBudget": { - "2024": 34199.44608822325, - "2025": 22918.374566943894, - "2026": 15358.491229237008, - "2027": 10292.320345386715, - "2028": 6897.282845752806, - "2029": 4622.136608450897, - "2030": 3097.472918678045, - "2031": 2075.73667649763, - "2032": 1391.0316129563791, - "2033": 932.1842072516056, - "2034": 624.6927734463749, - "2035": 418.6308437327922, - "2036": 280.5407566307849, - "2037": 188.00123619464756, - "2038": 125.98691625128812, - "2039": 84.42871646905145, - "2040": 56.578955789296884, - "2041": 37.915751560437954, - "2042": 25.408814926641092, - "2043": 17.027431856314298, - "2044": 11.410742156157474, - "2045": 7.646780656827309, - "2046": 5.124404145971777, - "2047": 3.4340618659968145, - "2048": 2.3012979779831895, - "2049": 1.542188984976903, - "2050": 1.0334806218655894 - }, - "approximatedHistoricalEmission": { - "2021": 38379.083489963, - "2022": 36534.16298870416, - "2023": 35366.80453846371, - "2024": 34199.44608822325 - }, - "totalApproximatedHistoricalEmission": 108190.232316261, - "trend": { - "2024": 34199.44608822325, - "2025": 33032.08763798233, - "2026": 31864.729187741876, - "2027": 30697.37073750142, - "2028": 29530.012287260965, - "2029": 28362.65383702051, - "2030": 27195.295386779588, - "2031": 26027.936936539132, - "2032": 24860.578486298677, - "2033": 23693.22003605822, - "2034": 22525.861585817765, - "2035": 21358.503135576844, - "2036": 20191.14468533639, - "2037": 19023.786235095933, - "2038": 17856.427784855478, - "2039": 16689.069334615022, - "2040": 15521.710884374566, - "2041": 14354.352434133645, - "2042": 13186.99398389319, - "2043": 12019.635533652734, - "2044": 10852.277083412278, - "2045": 9684.918633171823, - "2046": 8517.560182930902, - "2047": 7350.201732690446, - "2048": 6182.8432824499905, - "2049": 5015.484832209535, - "2050": 3848.1263819690794 - }, - "trendEmission": 494618.4421124954, - "historicalEmissionChangePercent": -2.6238706757801293, - "neededEmissionChangePercent": 32.98612349503535, - "hitNetZero": "2053-04-11", - "budgetRunsOut": "2026-08-13", - "electricCarChangePercent": 0.04682916517497189, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.006688963210702341, - "2018": 0.01327433628318584, - "2019": 0.04529616724738676, - "2020": 0.10526315789473684, - "2021": 0.22302158273381295, - "2022": 0.3558282208588957 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 2.410277256, - "totalConsumptionEmission": 6339.9, - "electricVehiclePerChargePoints": 3.888888888888889 - }, - { - "kommun": "Åsele", - "län": "Västerbottens län", - "emissions": { - "1990": 50639.8773677963, - "2000": 33698.4771214382, - "2005": 25014.8888204024, - "2010": 29015.7545454347, - "2015": 24609.3652044994, - "2016": 23899.7500472867, - "2017": 22878.7262084757, - "2018": 22630.0640558939, - "2019": 24462.2807365607, - "2020": 20722.3370240864, - "2021": 21601.5547051383 - }, - "budget": 47635.354764603515, - "emissionBudget": { - "2024": 20016.00335104915, - "2025": 13148.92420281555, - "2026": 8637.798698326367, - "2027": 5674.347589351249, - "2028": 3727.595616579366, - "2029": 2448.734213395328, - "2030": 1608.623859622238, - "2031": 1056.7380925175921, - "2032": 694.1929833366755, - "2033": 456.0296458754291, - "2034": 299.575251996475, - "2035": 196.7971433884951, - "2036": 129.28009035381737, - "2037": 84.9267498202327, - "2038": 55.790128358426095, - "2039": 36.649682565717804, - "2040": 24.075930127610352, - "2041": 15.81597358913504, - "2042": 10.389838284393011, - "2043": 6.825298421716846, - "2044": 4.483678886077297, - "2045": 2.9454208609384875, - "2046": 1.9349075320694273, - "2047": 1.271080546522003, - "2048": 0.83499894902921, - "2049": 0.5485279802193997, - "2050": 0.36033930992774066 - }, - "approximatedHistoricalEmission": { - "2021": 21601.5547051383, - "2022": 21001.33928079193, - "2023": 20508.67131592054, - "2024": 20016.00335104915 - }, - "totalApproximatedHistoricalEmission": 62318.789624806195, - "trend": { - "2024": 20016.00335104915, - "2025": 19523.335386177758, - "2026": 19030.667421306483, - "2027": 18537.999456435093, - "2028": 18045.331491563702, - "2029": 17552.66352669231, - "2030": 17059.99556182092, - "2031": 16567.327596949646, - "2032": 16074.659632078256, - "2033": 15581.991667206865, - "2034": 15089.323702335474, - "2035": 14596.655737464083, - "2036": 14103.987772592809, - "2037": 13611.319807721418, - "2038": 13118.651842850028, - "2039": 12625.983877978637, - "2040": 12133.315913107246, - "2041": 11640.647948235972, - "2042": 11147.979983364581, - "2043": 10655.31201849319, - "2044": 10162.6440536218, - "2045": 9669.976088750409, - "2046": 9177.308123879135, - "2047": 8684.640159007744, - "2048": 8191.972194136353, - "2049": 7699.3042292649625, - "2050": 7206.636264393572 - }, - "trendEmission": 353894.31500075624, - "historicalEmissionChangePercent": -1.8653132165885689, - "neededEmissionChangePercent": 34.30794363787742, - "hitNetZero": "2064-08-07", - "budgetRunsOut": "2026-06-15", - "electricCarChangePercent": 0.0796594278737136, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.1111111111111111, - "2018": 0.0, - "2019": 0.09523809523809523, - "2020": 0.1111111111111111, - "2021": 0.35, - "2022": 0.6923076923076923 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas.", - "bicycleMetrePerCapita": 0.7939140036, - "totalConsumptionEmission": 6179.7, - "electricVehiclePerChargePoints": 12.5 - }, - { - "kommun": "Åstorp", - "län": "Skåne län", - "emissions": { - "1990": 70435.4579188523, - "2000": 62297.8271908881, - "2005": 57766.3866420445, - "2010": 90693.9052895623, - "2015": 58497.1672309609, - "2016": 56126.5852145429, - "2017": 54552.1680550576, - "2018": 52266.7564917439, - "2019": 50199.9235566512, - "2020": 45006.8214742801, - "2021": 45865.6598646384 - }, - "budget": 107388.66047406799, - "emissionBudget": { - "2024": 37969.37725300435, - "2025": 26661.225082191097, - "2026": 18720.900217740902, - "2027": 13145.386375989012, - "2028": 9230.388547783728, - "2029": 6481.366945492072, - "2030": 4551.0670828915045, - "2031": 3195.6548313291173, - "2032": 2243.915463120099, - "2033": 1575.6259268887611, - "2034": 1106.36835579897, - "2035": 776.8664616545966, - "2036": 545.4977956305491, - "2037": 383.03602964661144, - "2038": 268.9591070443243, - "2039": 188.8569107423658, - "2040": 132.6109873248205, - "2041": 93.1163910822076, - "2042": 65.38419223843422, - "2043": 45.91127883057954, - "2044": 32.23784605570434, - "2045": 22.636675448453694, - "2046": 15.894953852475389, - "2047": 11.161071710712754, - "2048": 7.837048341746062, - "2049": 5.50299543832448, - "2050": 3.864077070050728 - }, - "approximatedHistoricalEmission": { - "2021": 45865.6598646384, - "2022": 42575.54111571144, - "2023": 40272.4591843579, - "2024": 37969.37725300435 - }, - "totalApproximatedHistoricalEmission": 124765.51885889072, - "trend": { - "2024": 37969.37725300435, - "2025": 35666.2953216508, - "2026": 33363.21339029726, - "2027": 31060.13145894371, - "2028": 28757.049527590163, - "2029": 26453.967596236616, - "2030": 24150.88566488307, - "2031": 21847.803733529523, - "2032": 19544.721802175976, - "2033": 17241.63987082243, - "2034": 14938.557939468883, - "2035": 12635.476008115336, - "2036": 10332.39407676179, - "2037": 8029.312145408243, - "2038": 5726.230214054696, - "2039": 3423.1482827011496, - "2040": 1120.066351347603, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 313275.5820104894, - "historicalEmissionChangePercent": -3.9063317021096715, - "neededEmissionChangePercent": 29.782295599590036, - "hitNetZero": "2040-06-22", - "budgetRunsOut": "2027-02-15", - "electricCarChangePercent": 0.07218936624257806, - "electricCarChangeYearly": { - "2015": 0.003246753246753247, - "2016": 0.0031446540880503146, - "2017": 0.024734982332155476, - "2018": 0.041666666666666664, - "2019": 0.07168458781362007, - "2020": 0.2576419213973799, - "2021": 0.36254980079681276, - "2022": 0.508695652173913 - }, - "climatePlanLink": "https://medborgarportalen.astorp.se/welcome-sv/namnder-styrelser/bygg-och-miljonamndens-arbetsutskott/bygg-och-miljonamndens-arbetsutskott/agenda/02-verksamhetsplan-for-strategiskt-arbetsmiljoarbete-2022pdf?downloadMode=open", - "climatePlanYear": 2022, - "climatePlanComment": "Verksamhetsplan för miljöstrategiskt arbete 2022.", - "bicycleMetrePerCapita": 2.783975275, - "totalConsumptionEmission": 5651.9, - "electricVehiclePerChargePoints": 14.1875 - }, - { - "kommun": "Åtvidaberg", - "län": "Östergötlands län", - "emissions": { - "1990": 49854.8277163261, - "2000": 42105.2390518121, - "2005": 37206.6093362635, - "2010": 35560.405447043, - "2015": 30607.5587273944, - "2016": 30336.5719734941, - "2017": 28171.2887786054, - "2018": 26000.5834246661, - "2019": 25829.6596876605, - "2020": 22187.7990011082, - "2021": 22521.1005462786 - }, - "budget": 54996.86974456862, - "emissionBudget": { - "2024": 17329.53396723047, - "2025": 12645.631788557925, - "2026": 9227.715161537211, - "2027": 6733.607978330522, - "2028": 4913.618984992943, - "2029": 3585.5445709610594, - "2030": 2616.4279138478614, - "2031": 1909.2483423033752, - "2032": 1393.2083560549213, - "2033": 1016.6459126210577, - "2034": 741.8624121490406, - "2035": 541.3485971144929, - "2036": 395.03053234479574, - "2037": 288.2599535980857, - "2038": 210.34779351142302, - "2039": 153.49407256484778, - "2040": 112.0070237925425, - "2041": 81.73327587984194, - "2042": 59.64204886314574, - "2043": 43.52173523331371, - "2044": 31.75849042451481, - "2045": 23.17466683341168, - "2046": 16.910916597756895, - "2047": 12.340160151255525, - "2048": 9.00480773341603, - "2049": 6.5709489440896, - "2050": 4.794924145421218 - }, - "approximatedHistoricalEmission": { - "2021": 22521.1005462786, - "2022": 20393.716080020647, - "2023": 18861.625023625325, - "2024": 17329.53396723047 - }, - "totalApproximatedHistoricalEmission": 59180.658360400506, - "trend": { - "2024": 17329.53396723047, - "2025": 15797.442910835147, - "2026": 14265.351854439825, - "2027": 12733.260798044968, - "2028": 11201.169741649646, - "2029": 9669.07868525479, - "2030": 8136.987628859468, - "2031": 6604.896572464146, - "2032": 5072.805516069289, - "2033": 3540.714459673967, - "2034": 2008.6234032791108, - "2035": 476.5323468837887, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 98171.63090106938, - "historicalEmissionChangePercent": -4.830500916842228, - "neededEmissionChangePercent": 27.028437045852684, - "hitNetZero": "2035-04-21", - "budgetRunsOut": "2027-10-26", - "electricCarChangePercent": 0.07781171707064609, - "electricCarChangeYearly": { - "2015": 0.0040650406504065045, - "2016": 0.008968609865470852, - "2017": 0.0047169811320754715, - "2018": 0.06153846153846154, - "2019": 0.10989010989010989, - "2020": 0.24503311258278146, - "2021": 0.4010152284263959, - "2022": 0.5478723404255319 - }, - "climatePlanLink": "https://www.atvidaberg.se/download/18.1dfa69ad1630328ad7c3895c/1656507587248/hallbarhetsprogram.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Hållbarhetsprogram. Gäller tillsvidare.", - "bicycleMetrePerCapita": 2.773036069, - "totalConsumptionEmission": 5883.9, - "electricVehiclePerChargePoints": 10000000000.0 - }, - { - "kommun": "Öckerö", - "län": "Västra Götalands län", - "emissions": { - "1990": 73844.3799797759, - "2000": 61656.6373549003, - "2005": 48874.5766056304, - "2010": 41321.5592687389, - "2015": 30812.5067322687, - "2016": 30973.782675029, - "2017": 30117.1107568216, - "2018": 29619.3349376136, - "2019": 28907.5250507905, - "2020": 27434.3844569603, - "2021": 25201.3309250789 - }, - "budget": 60154.69201157645, - "emissionBudget": { - "2024": 23626.158741279505, - "2025": 15952.216937036805, - "2026": 10770.825168531082, - "2027": 7272.385729767548, - "2028": 4910.263918965776, - "2029": 3315.3758133601928, - "2030": 2238.5185328549287, - "2031": 1511.4320378829932, - "2032": 1020.5083279903246, - "2033": 689.0400768243012, - "2034": 465.2350347840966, - "2035": 314.1234376208145, - "2036": 212.09394539366446, - "2037": 143.2043467159292, - "2038": 96.69057209658881, - "2039": 65.28479719202333, - "2040": 44.07983789925249, - "2041": 29.762397875102554, - "2042": 20.09536263042677, - "2043": 13.56824812782198, - "2044": 9.161186122583286, - "2045": 6.185568717638492, - "2046": 4.176452682945698, - "2047": 2.819911605402641, - "2048": 1.9039845691908936, - "2049": 1.285557048232158, - "2050": 0.8679991166954063 - }, - "approximatedHistoricalEmission": { - "2021": 25201.3309250789, - "2022": 25420.580852974905, - "2023": 24523.36979712732, - "2024": 23626.158741279505 - }, - "totalApproximatedHistoricalEmission": 74357.69548328142, - "trend": { - "2024": 23626.158741279505, - "2025": 22728.94768543169, - "2026": 21831.736629583873, - "2027": 20934.525573736057, - "2028": 20037.31451788824, - "2029": 19140.103462040424, - "2030": 18242.89240619284, - "2031": 17345.681350345025, - "2032": 16448.47029449721, - "2033": 15551.259238649393, - "2034": 14654.048182801576, - "2035": 13756.83712695376, - "2036": 12859.626071105944, - "2037": 11962.41501525836, - "2038": 11065.203959410544, - "2039": 10167.992903562728, - "2040": 9270.781847714912, - "2041": 8373.570791867096, - "2042": 7476.35973601928, - "2043": 6579.148680171464, - "2044": 5681.9376243236475, - "2045": 4784.726568476064, - "2046": 3887.515512628248, - "2047": 2990.304456780432, - "2048": 2093.0934009326156, - "2049": 1195.8823450847995, - "2050": 298.6712892369833 - }, - "trendEmission": 311022.79039671447, - "historicalEmissionChangePercent": -3.2556736022571857, - "neededEmissionChangePercent": 32.4807002622683, - "hitNetZero": "2050-04-25", - "budgetRunsOut": "2026-09-07", - "electricCarChangePercent": 0.07675163702380684, - "electricCarChangeYearly": { - "2015": 0.014388489208633094, - "2016": 0.00641025641025641, - "2017": 0.003134796238244514, - "2018": 0.1264705882352941, - "2019": 0.07612456747404844, - "2020": 0.20920502092050208, - "2021": 0.3931888544891641, - "2022": 0.5780141843971631 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.588384851, - "totalConsumptionEmission": 5835.0, - "electricVehiclePerChargePoints": 41.46153846153846 - }, - { - "kommun": "Ödeshög", - "län": "Östergötlands län", - "emissions": { - "1990": 65337.1021582086, - "2000": 65046.6474902679, - "2005": 66893.5290948132, - "2010": 74185.3229500285, - "2015": 64461.5754480372, - "2016": 61247.6886789175, - "2017": 57459.7476077049, - "2018": 56929.7397065531, - "2019": 57103.477833064, - "2020": 51284.3519938811, - "2021": 51341.8145557251 - }, - "budget": 118442.06763320962, - "emissionBudget": { - "2024": 44337.86529877316, - "2025": 30492.990867674205, - "2026": 20971.29588423805, - "2027": 14422.830904740445, - "2028": 9919.179647027997, - "2029": 6821.831686155036, - "2030": 4691.6568920266, - "2031": 3226.647241557351, - "2032": 2219.09927794239, - "2033": 1526.1667101197152, - "2034": 1049.6082127687948, - "2035": 721.8591475011834, - "2036": 496.4525072232054, - "2037": 341.43100185317326, - "2038": 234.81627613988326, - "2039": 161.49290263897413, - "2040": 111.0653743066132, - "2041": 76.38426932881868, - "2042": 52.532633481163195, - "2043": 36.12887319228492, - "2044": 24.847326159885892, - "2045": 17.088537857515853, - "2046": 11.752496998215964, - "2047": 8.082680147636344, - "2048": 5.5587947292317335, - "2049": 3.8230139356399913, - "2050": 2.6292454145212814 - }, - "approximatedHistoricalEmission": { - "2021": 51341.8145557251, - "2022": 48598.024286033586, - "2023": 46467.94479240291, - "2024": 44337.86529877316 - }, - "totalApproximatedHistoricalEmission": 142905.80900568562, - "trend": { - "2024": 44337.86529877316, - "2025": 42207.785805142485, - "2026": 40077.70631151181, - "2027": 37947.62681788206, - "2028": 35817.54732425138, - "2029": 33687.46783062164, - "2030": 31557.38833699096, - "2031": 29427.308843360282, - "2032": 27297.229349730536, - "2033": 25167.14985609986, - "2034": 23037.070362470113, - "2035": 20906.990868839435, - "2036": 18776.911375208758, - "2037": 16646.83188157901, - "2038": 14516.752387948334, - "2039": 12386.672894317657, - "2040": 10256.59340068791, - "2041": 8126.513907057233, - "2042": 5996.434413427487, - "2043": 3866.3549197968096, - "2044": 1736.275426166132, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 461609.5449624765, - "historicalEmissionChangePercent": -3.6443386487071536, - "neededEmissionChangePercent": 31.225848014568353, - "hitNetZero": "2044-10-19", - "budgetRunsOut": "2026-11-14", - "electricCarChangePercent": 0.07059067095543468, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.026785714285714284, - "2017": 0.021052631578947368, - "2018": 0.0449438202247191, - "2019": 0.025, - "2020": 0.19753086419753085, - "2021": 0.3108108108108108, - "2022": 0.5714285714285714 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.229829471, - "totalConsumptionEmission": 6225.3, - "electricVehiclePerChargePoints": 2.672727272727273 - }, - { - "kommun": "Örebro", - "län": "Örebro län", - "emissions": { - "1990": 620529.792142713, - "2000": 537639.425112178, - "2005": 543373.867565625, - "2010": 573461.36428205, - "2015": 359439.907047336, - "2016": 392684.63618767, - "2017": 333386.976115004, - "2018": 340082.131250872, - "2019": 331733.757188147, - "2020": 269824.880468998, - "2021": 321310.710146619 - }, - "budget": 695690.4917119902, - "emissionBudget": { - "2024": 257974.64525786787, - "2025": 178046.21985334487, - "2026": 122882.06219792759, - "2027": 84809.44567344975, - "2028": 58532.88874540981, - "2029": 40397.61181878694, - "2030": 27881.197658972098, - "2031": 19242.750942449493, - "2032": 13280.75889573505, - "2033": 9165.974104957866, - "2034": 6326.075335931185, - "2035": 4366.063955409874, - "2036": 3013.3239726781353, - "2037": 2079.7041584940143, - "2038": 1435.3482818554153, - "2039": 990.6335388188927, - "2040": 683.7050077938477, - "2041": 471.87231136926493, - "2042": 325.67185511110154, - "2043": 224.76876615993493, - "2044": 155.12853643378085, - "2045": 107.06497716396876, - "2046": 73.89297674457384, - "2047": 50.99867535405108, - "2048": 35.19772788229005, - "2049": 24.292396605891998, - "2050": 16.76587008205367 - }, - "approximatedHistoricalEmission": { - "2021": 321310.710146619, - "2022": 283814.66819117963, - "2023": 270894.65672452375, - "2024": 257974.64525786787 - }, - "totalApproximatedHistoricalEmission": 844352.0026179468, - "trend": { - "2024": 257974.64525786787, - "2025": 245054.63379121572, - "2026": 232134.62232455984, - "2027": 219214.61085790396, - "2028": 206294.59939124808, - "2029": 193374.5879245922, - "2030": 180454.57645793632, - "2031": 167534.56499128044, - "2032": 154614.55352462456, - "2033": 141694.54205796868, - "2034": 128774.5305913128, - "2035": 115854.51912466064, - "2036": 102934.50765800476, - "2037": 90014.49619134888, - "2038": 77094.484724693, - "2039": 64174.47325803712, - "2040": 51254.46179138124, - "2041": 38334.45032472536, - "2042": 25414.43885806948, - "2043": 12494.4273914136, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 2575703.4038639106, - "historicalEmissionChangePercent": -0.9798579793105634, - "neededEmissionChangePercent": 30.983054681450422, - "hitNetZero": "2043-12-14", - "budgetRunsOut": "2026-11-28", - "electricCarChangePercent": 0.06838985391189982, - "electricCarChangeYearly": { - "2015": 0.015954520447460114, - "2016": 0.021750951604132682, - "2017": 0.04129263913824058, - "2018": 0.05584541062801932, - "2019": 0.08505747126436781, - "2020": 0.2382172131147541, - "2021": 0.3542545274125527, - "2022": 0.5105608157319738 - }, - "climatePlanLink": "https://www.orebro.se/download/18.1d8f9a39155628f73841694a/1485339455931/Klimatstrategi%20%C3%96rebro%20kommun.pdf", - "climatePlanYear": 2016, - "climatePlanComment": "Miljöstrategi med mål och delmål 2020 och 2030", - "bicycleMetrePerCapita": 3.428744851, - "totalConsumptionEmission": 6087.2, - "electricVehiclePerChargePoints": 15.496402877697841 - }, - { - "kommun": "Örkelljunga", - "län": "Skåne län", - "emissions": { - "1990": 76125.6667034147, - "2000": 75434.8217512923, - "2005": 73086.3067328799, - "2010": 76761.5548320115, - "2015": 65165.9562219394, - "2016": 61797.0668459817, - "2017": 59065.308291697, - "2018": 61509.769298585, - "2019": 61744.1061801218, - "2020": 57392.7656537161, - "2021": 58028.5562909162 - }, - "budget": 125810.88438333746, - "emissionBudget": { - "2024": 54770.074621313484, - "2025": 35438.805668219444, - "2026": 22930.56848787079, - "2027": 14837.152699208089, - "2028": 9600.333299022319, - "2029": 6211.865667274287, - "2030": 4019.368272577651, - "2031": 2600.719683253012, - "2032": 1682.787545745842, - "2033": 1088.842424022914, - "2034": 704.5320886461783, - "2035": 455.86528682289935, - "2036": 294.9662096008373, - "2037": 190.85696437352547, - "2038": 123.49340251268478, - "2039": 79.90602027135388, - "2040": 51.702940770055925, - "2041": 33.45422629226155, - "2042": 21.646452602982826, - "2043": 14.006269527792616, - "2044": 9.062712938846142, - "2045": 5.864000092883645, - "2046": 3.794282939487815, - "2047": 2.4550789217004803, - "2048": 1.5885511460016803, - "2049": 1.0278670559866907, - "2050": 0.6650781672607406 - }, - "approximatedHistoricalEmission": { - "2021": 58028.5562909162, - "2022": 56737.3606419689, - "2023": 55753.71763164108, - "2024": 54770.074621313484 - }, - "totalApproximatedHistoricalEmission": 168890.3937297248, - "trend": { - "2024": 54770.074621313484, - "2025": 53786.43161098589, - "2026": 52802.78860065807, - "2027": 51819.145590330474, - "2028": 50835.50258000288, - "2029": 49851.859569675056, - "2030": 48868.216559347464, - "2031": 47884.57354901987, - "2032": 46900.93053869228, - "2033": 45917.28752836445, - "2034": 44933.64451803686, - "2035": 43950.00150770927, - "2036": 42966.35849738144, - "2037": 41982.71548705385, - "2038": 40999.07247672626, - "2039": 40015.429466398666, - "2040": 39031.78645607084, - "2041": 38048.14344574325, - "2042": 37064.500435415655, - "2043": 36080.85742508783, - "2044": 35097.21441476024, - "2045": 34113.571404432645, - "2046": 33129.92839410505, - "2047": 32146.285383777227, - "2048": 31162.642373449635, - "2049": 30178.999363122042, - "2050": 29195.356352794217 - }, - "trendEmission": 1091550.602663401, - "historicalEmissionChangePercent": -1.835046594859003, - "neededEmissionChangePercent": 35.29531242517493, - "hitNetZero": "2079-08-23", - "budgetRunsOut": "2026-05-07", - "electricCarChangePercent": 0.03301981588753814, - "electricCarChangeYearly": { - "2015": 0.007220216606498195, - "2016": 0.006430868167202572, - "2017": 0.02318840579710145, - "2018": 0.021538461538461538, - "2019": 0.020689655172413793, - "2020": 0.08056872037914692, - "2021": 0.15942028985507245, - "2022": 0.2697095435684647 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 4.810645387, - "totalConsumptionEmission": 6067.0, - "electricVehiclePerChargePoints": 8.08 - }, - { - "kommun": "Örnsköldsvik", - "län": "Västernorrlands län", - "emissions": { - "1990": 703144.380487024, - "2000": 458635.000043178, - "2005": 370156.789591317, - "2010": 322840.919691759, - "2015": 269722.689535555, - "2016": 276319.787062736, - "2017": 275718.322965957, - "2018": 253440.488994978, - "2019": 251724.871375134, - "2020": 222789.168874571, - "2021": 287664.06180264 - }, - "budget": 544291.0416661355, - "emissionBudget": { - "2024": 245933.36198038887, - "2025": 156525.50432733688, - "2026": 99621.43121875776, - "2027": 63404.55250870191, - "2028": 40354.140967930456, - "2029": 25683.592562791244, - "2030": 16346.449487196094, - "2031": 10403.778606290658, - "2032": 6621.536338731707, - "2033": 4214.309545056419, - "2034": 2682.2181489312015, - "2035": 1707.1110039591567, - "2036": 1086.4992398174952, - "2037": 691.5078137193232, - "2038": 440.11356741970746, - "2039": 280.11245626433725, - "2040": 178.27895789364575, - "2041": 113.46652430783331, - "2042": 72.21633046666473, - "2043": 45.962440621885555, - "2044": 29.253022609553902, - "2045": 18.618230890628585, - "2046": 11.849665114043473, - "2047": 7.5417779562319245, - "2048": 4.80000187293877, - "2049": 3.0549849271519944, - "2050": 1.9443602632204458 - }, - "approximatedHistoricalEmission": { - "2021": 287664.06180264, - "2022": 251449.83134938218, - "2023": 248691.59666488506, - "2024": 245933.36198038887 - }, - "totalApproximatedHistoricalEmission": 766940.1399057817, - "trend": { - "2024": 245933.36198038887, - "2025": 243175.1272958927, - "2026": 240416.8926113965, - "2027": 237658.6579269003, - "2028": 234900.42324240413, - "2029": 232142.188557907, - "2030": 229383.95387341082, - "2031": 226625.71918891463, - "2032": 223867.48450441845, - "2033": 221109.24981992226, - "2034": 218351.01513542607, - "2035": 215592.78045092896, - "2036": 212834.54576643277, - "2037": 210076.31108193658, - "2038": 207318.0763974404, - "2039": 204559.8417129442, - "2040": 201801.6070284471, - "2041": 199043.3723439509, - "2042": 196285.13765945472, - "2043": 193526.90297495853, - "2044": 190768.66829046234, - "2045": 188010.43360596616, - "2046": 185252.19892146904, - "2047": 182493.96423697285, - "2048": 179735.72955247667, - "2049": 176977.49486798048, - "2050": 174219.2601834843 - }, - "trendEmission": 5461984.088130351, - "historicalEmissionChangePercent": 1.8492991272173178, - "neededEmissionChangePercent": 36.35450551852394, - "hitNetZero": "2113-02-07", - "budgetRunsOut": "2026-03-30", - "electricCarChangePercent": 0.06104495238337404, - "electricCarChangeYearly": { - "2015": 0.008664627930682976, - "2016": 0.01699150424787606, - "2017": 0.02738283307003686, - "2018": 0.03169398907103825, - "2019": 0.05836341756919374, - "2020": 0.17722681359044995, - "2021": 0.31940575673166205, - "2022": 0.45716510903426794 - }, - "climatePlanLink": "https://www.ornskoldsvik.se/download/18.54f6f67017d0e18071cc1e0b/1645188359669/Klimatstrategi%202021-2026.pdf", - "climatePlanYear": 2021, - "climatePlanComment": "Klimatstrategi, gäller till 2026.", - "bicycleMetrePerCapita": 1.88221786, - "totalConsumptionEmission": 6131.3, - "electricVehiclePerChargePoints": 18.076190476190476 - }, - { - "kommun": "Östersund", - "län": "Jämtlands län", - "emissions": { - "1990": 267793.20055861, - "2000": 193320.779532763, - "2005": 192255.030535241, - "2010": 169384.588985849, - "2015": 143786.390451667, - "2016": 136270.272900585, - "2017": 134890.137836385, - "2018": 123096.170608436, - "2019": 113061.651497606, - "2020": 94746.1396597532, - "2021": 95248.2864179093 - }, - "budget": 249160.66875817557, - "emissionBudget": { - "2024": 66480.35028424859, - "2025": 50911.52011764331, - "2026": 38988.70673224065, - "2027": 29858.060594931485, - "2028": 22865.692586653444, - "2029": 17510.8458838111, - "2030": 13410.034373748285, - "2031": 10269.579385160589, - "2032": 7864.577957724999, - "2033": 6022.796468422911, - "2034": 4612.336160317058, - "2035": 3532.1872434681272, - "2036": 2704.9951021049005, - "2037": 2071.520561641349, - "2038": 1586.397488839696, - "2039": 1214.8839066327416, - "2040": 930.3739554421184, - "2041": 712.4925206756252, - "2042": 545.6360735909362, - "2043": 417.8552281803886, - "2044": 319.9989886456529, - "2045": 245.0594029423865, - "2046": 187.6696899094864, - "2047": 143.7198984729551, - "2048": 110.06257444683084, - "2049": 84.28735632695796, - "2050": 64.54835780730865 - }, - "approximatedHistoricalEmission": { - "2021": 95248.2864179093, - "2022": 84372.56920722872, - "2023": 75426.45974573866, - "2024": 66480.35028424859 - }, - "totalApproximatedHistoricalEmission": 240663.34730404633, - "trend": { - "2024": 66480.35028424859, - "2025": 57534.240822758526, - "2026": 48588.13136126846, - "2027": 39642.021899778396, - "2028": 30695.912438292056, - "2029": 21749.80297680199, - "2030": 12803.693515311927, - "2031": 3857.5840538218617, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 248111.5622101575, - "historicalEmissionChangePercent": -6.467469907892919, - "neededEmissionChangePercent": 23.418694546641177, - "hitNetZero": "2031-06-05", - "budgetRunsOut": "Håller budgeten", - "electricCarChangePercent": 0.0601379340337174, - "electricCarChangeYearly": { - "2015": 0.047901459854014596, - "2016": 0.03966870095902354, - "2017": 0.048760330578512395, - "2018": 0.055350553505535055, - "2019": 0.0917686318131257, - "2020": 0.2288072018004501, - "2021": 0.30080296479308216, - "2022": 0.5006666666666667 - }, - "climatePlanLink": "https://ostersund.se/bygga-bo-och-miljo/klimat-och-miljo/klimatprogram-och-strategi.html", - "climatePlanYear": 2019, - "climatePlanComment": "Klimatprogram Färden mot ett fossilbränslefritt och energieffektivt Östersund 2030", - "bicycleMetrePerCapita": 2.810475703, - "totalConsumptionEmission": 6318.8, - "electricVehiclePerChargePoints": 9.973684210526315 - }, - { - "kommun": "Österåker", - "län": "Stockholms län", - "emissions": { - "1990": 142177.535818003, - "2000": 122759.804421402, - "2005": 99769.5584332844, - "2010": 85808.4437131063, - "2015": 75290.8826013512, - "2016": 72469.1660068102, - "2017": 70286.0602446154, - "2018": 73133.2508668064, - "2019": 72816.3773932359, - "2020": 65613.8536799114, - "2021": 66972.2779992721 - }, - "budget": 147103.56718834813, - "emissionBudget": { - "2024": 63196.81240355503, - "2025": 41126.23544937219, - "2026": 26763.489769652562, - "2027": 17416.72625329562, - "2028": 11334.185339544183, - "2029": 7375.884276003373, - "2030": 4799.962875424598, - "2031": 3123.6449411782805, - "2032": 2032.7569132887436, - "2033": 1322.8458247769024, - "2034": 860.8609640876986, - "2035": 560.2176652861153, - "2036": 364.56971054695657, - "2037": 237.24898746349066, - "2038": 154.39319401495305, - "2039": 100.47359364097258, - "2040": 65.38463747406881, - "2041": 42.54999410981574, - "2042": 27.690021214285867, - "2043": 18.019679929185312, - "2044": 11.726566124216632, - "2045": 7.631231720320692, - "2046": 4.966133900781541, - "2047": 3.2317831281180536, - "2048": 2.103129395191062, - "2049": 1.3686417304531275, - "2050": 0.8906633089817867 - }, - "approximatedHistoricalEmission": { - "2021": 66972.2779992721, - "2022": 65777.96392579889, - "2023": 64487.388164676726, - "2024": 63196.81240355503 - }, - "totalApproximatedHistoricalEmission": 195349.89729188918, - "trend": { - "2024": 63196.81240355503, - "2025": 61906.236642432865, - "2026": 60615.66088131117, - "2027": 59325.08512018947, - "2028": 58034.509359067306, - "2029": 56743.93359794561, - "2030": 55453.357836823445, - "2031": 54162.78207570175, - "2032": 52872.20631458005, - "2033": 51581.630553457886, - "2034": 50291.05479233619, - "2035": 49000.479031214025, - "2036": 47709.90327009233, - "2037": 46419.32750897063, - "2038": 45128.751747848466, - "2039": 43838.17598672677, - "2040": 42547.600225604605, - "2041": 41257.02446448291, - "2042": 39966.448703360744, - "2043": 38675.872942239046, - "2044": 37385.29718111735, - "2045": 36094.721419995185, - "2046": 34804.14565887349, - "2047": 33513.569897751324, - "2048": 32222.994136629626, - "2049": 30932.41837550793, - "2050": 29641.842614385765 - }, - "trendEmission": 1206902.5152332305, - "historicalEmissionChangePercent": -1.8272760046986134, - "neededEmissionChangePercent": 34.923560405621515, - "hitNetZero": "2072-12-07", - "budgetRunsOut": "2026-05-21", - "electricCarChangePercent": 0.07938435305447579, - "electricCarChangeYearly": { - "2015": 0.02406832298136646, - "2016": 0.029432878679109833, - "2017": 0.046984572230014024, - "2018": 0.06416382252559727, - "2019": 0.11328125, - "2020": 0.29809104258443464, - "2021": 0.44616376531270147, - "2022": 0.564381806534273 - }, - "climatePlanLink": "https://www.osteraker.se/download/18.4d8ccb9818167a07633123/1655380479130/Milj%C3%B6-%20och%20klimatprogram%202030.pdf", - "climatePlanYear": 2022, - "climatePlanComment": "Miljö– och klimatprogram 2030.", - "bicycleMetrePerCapita": 2.148302014, - "totalConsumptionEmission": 6228.0, - "electricVehiclePerChargePoints": 37.98765432098765 - }, - { - "kommun": "Östhammar", - "län": "Uppsala län", - "emissions": { - "1990": 153908.862420939, - "2000": 122080.551389608, - "2005": 113659.565863601, - "2010": 99278.9816251339, - "2015": 85429.9734034396, - "2016": 84621.4239772734, - "2017": 85757.363239689, - "2018": 83168.1694551649, - "2019": 79385.6821941944, - "2020": 64916.9934092557, - "2021": 66856.4788173378 - }, - "budget": 162968.05331477217, - "emissionBudget": { - "2024": 56840.64936951548, - "2025": 40103.66507543361, - "2026": 28294.960918323206, - "2027": 19963.38269491149, - "2028": 14085.075069512039, - "2029": 9937.661504848946, - "2030": 7011.472476900184, - "2031": 4946.912940266833, - "2032": 3490.2722244441634, - "2033": 2462.545904450326, - "2034": 1737.438211568385, - "2035": 1225.8417329652825, - "2036": 864.8871334093955, - "2037": 610.2172355705779, - "2038": 430.5360320479401, - "2039": 303.76276526877257, - "2040": 214.3184558208057, - "2041": 151.21142469444257, - "2042": 106.68654209248639, - "2043": 75.2722109896912, - "2044": 53.10797066011211, - "2045": 37.47009036338258, - "2046": 26.436854099088492, - "2047": 18.65240376733907, - "2048": 13.160119770522911, - "2049": 9.285063444625143, - "2050": 6.551034844213151 - }, - "approximatedHistoricalEmission": { - "2021": 66856.4788173378, - "2022": 64090.72265093215, - "2023": 60465.68601022381, - "2024": 56840.64936951548 - }, - "totalApproximatedHistoricalEmission": 186404.9727545826, - "trend": { - "2024": 56840.64936951548, - "2025": 53215.612728807144, - "2026": 49590.57608809881, - "2027": 45965.539447390474, - "2028": 42340.50280668214, - "2029": 38715.466165973805, - "2030": 35090.42952526547, - "2031": 31465.392884557135, - "2032": 27840.3562438488, - "2033": 24215.319603140466, - "2034": 20590.28296243213, - "2035": 16965.246321723796, - "2036": 13340.20968101453, - "2037": 9715.173040306196, - "2038": 6090.136399597861, - "2039": 2465.099758889526, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 446025.668342486, - "historicalEmissionChangePercent": -3.734909014500554, - "neededEmissionChangePercent": 29.44544877606233, - "hitNetZero": "2039-09-02", - "budgetRunsOut": "2027-03-12", - "electricCarChangePercent": 0.058000469617847335, - "electricCarChangeYearly": { - "2015": 0.002136752136752137, - "2016": 0.0021008403361344537, - "2017": 0.07142857142857142, - "2018": 0.049586776859504134, - "2019": 0.05869074492099323, - "2020": 0.1813031161473088, - "2021": 0.3234567901234568, - "2022": 0.42021276595744683 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 0.5546263587, - "totalConsumptionEmission": 6300.2, - "electricVehiclePerChargePoints": 31.904761904761905 - }, - { - "kommun": "Östra Göinge", - "län": "Skåne län", - "emissions": { - "1990": 63752.7851120181, - "2000": 56935.1280746756, - "2005": 50287.2145338582, - "2010": 43598.5245878435, - "2015": 35702.2543050264, - "2016": 35074.6418201926, - "2017": 35454.0625461913, - "2018": 33678.0737075914, - "2019": 33423.2702764887, - "2020": 30411.5732214922, - "2021": 30157.3238665339 - }, - "budget": 69289.08003751052, - "emissionBudget": { - "2024": 27416.23122423468, - "2025": 18457.23172442208, - "2026": 12425.829069747444, - "2027": 8365.351336315583, - "2028": 5631.7451807197, - "2029": 3791.419213066636, - "2030": 2552.4698273677614, - "2031": 1718.3808630734761, - "2032": 1156.853161951873, - "2033": 778.8199153500593, - "2034": 524.31931769324, - "2035": 352.98371483315174, - "2036": 237.63668194714379, - "2037": 159.98243044595046, - "2038": 107.7038184579862, - "2039": 72.50866534591071, - "2040": 48.81448611124358, - "2041": 32.86302461832832, - "2042": 22.124137179354623, - "2043": 14.894473397251158, - "2044": 10.027298962349585, - "2045": 6.750606201283586, - "2046": 4.544661952926387, - "2047": 3.0595700075719865, - "2048": 2.059772262094508, - "2049": 1.3866856326849728, - "2050": 0.9335483729349762 - }, - "approximatedHistoricalEmission": { - "2021": 30157.3238665339, - "2022": 29415.63985156198, - "2023": 28415.935537898447, - "2024": 27416.23122423468 - }, - "totalApproximatedHistoricalEmission": 86618.35293484472, - "trend": { - "2024": 27416.23122423468, - "2025": 26416.52691057115, - "2026": 25416.822596907616, - "2027": 24417.118283244083, - "2028": 23417.413969580317, - "2029": 22417.709655916784, - "2030": 21418.00534225325, - "2031": 20418.301028589718, - "2032": 19418.596714925952, - "2033": 18418.89240126242, - "2034": 17419.188087598886, - "2035": 16419.483773935353, - "2036": 15419.779460271588, - "2037": 14420.075146608055, - "2038": 13420.370832944522, - "2039": 12420.666519280756, - "2040": 11420.962205617223, - "2041": 10421.25789195369, - "2042": 9421.553578290157, - "2043": 8421.849264626391, - "2044": 7422.144950962858, - "2045": 6422.440637299325, - "2046": 5422.736323635792, - "2047": 4423.032009972027, - "2048": 3423.3276963084936, - "2049": 2423.6233826449607, - "2050": 1423.9190689811949 - }, - "trendEmission": 374921.9538118093, - "historicalEmissionChangePercent": -2.714802558596018, - "neededEmissionChangePercent": 32.67772082361656, - "hitNetZero": "2051-05-28", - "budgetRunsOut": "2026-08-28", - "electricCarChangePercent": 0.07524982951593966, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0036496350364963502, - "2017": 0.022988505747126436, - "2018": 0.021164021164021163, - "2019": 0.18695652173913044, - "2020": 0.1989795918367347, - "2021": 0.410958904109589, - "2022": 0.5129533678756477 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 3.503834265, - "totalConsumptionEmission": 5512.2, - "electricVehiclePerChargePoints": 205.0 - }, - { - "kommun": "Överkalix", - "län": "Norrbottens län", - "emissions": { - "1990": 42903.3671766866, - "2000": 38629.1193216892, - "2005": 35728.9451486091, - "2010": 40047.879300277, - "2015": 30027.6871520633, - "2016": 29083.2599581415, - "2017": 24785.6885661394, - "2018": 25610.2866042335, - "2019": 25709.0948827391, - "2020": 25206.2475790876, - "2021": 25041.7369677682 - }, - "budget": 54940.419598806875, - "emissionBudget": { - "2024": 21825.899745511822, - "2025": 14670.408480510881, - "2026": 9860.80241797604, - "2027": 6627.997063308491, - "2028": 4455.047693800443, - "2029": 2994.486835835955, - "2030": 2012.7621579614201, - "2031": 1352.8900698575146, - "2032": 909.3531165017827, - "2033": 611.2271121766721, - "2034": 410.8399431202715, - "2035": 276.14851419463906, - "2036": 185.6148681959645, - "2037": 124.7621389377518, - "2038": 83.85961460743205, - "2039": 56.366739316771096, - "2040": 37.887239478480126, - "2041": 25.46613362239685, - "2042": 17.11721335733979, - "2043": 11.505436885912127, - "2044": 7.733447914227549, - "2045": 5.1980830658677855, - "2046": 3.49392248571966, - "2047": 2.348460804017469, - "2048": 1.5785319137869682, - "2049": 1.0610196255272115, - "2050": 0.7131706593458407 - }, - "approximatedHistoricalEmission": { - "2021": 25041.7369677682, - "2022": 23382.21895939717, - "2023": 22604.059352454497, - "2024": 21825.899745511822 - }, - "totalApproximatedHistoricalEmission": 69420.09666849168, - "trend": { - "2024": 21825.899745511822, - "2025": 21047.74013856938, - "2026": 20269.580531626707, - "2027": 19491.420924684033, - "2028": 18713.26131774136, - "2029": 17935.101710798917, - "2030": 17156.942103856243, - "2031": 16378.782496913569, - "2032": 15600.622889971128, - "2033": 14822.463283028454, - "2034": 14044.30367608578, - "2035": 13266.144069143105, - "2036": 12487.984462200664, - "2037": 11709.82485525799, - "2038": 10931.665248315316, - "2039": 10153.505641372642, - "2040": 9375.3460344302, - "2041": 8597.186427487526, - "2042": 7819.026820544852, - "2043": 7040.867213602411, - "2044": 6262.7076066597365, - "2045": 5484.547999717062, - "2046": 4706.388392774388, - "2047": 3928.228785831947, - "2048": 3150.0691788892727, - "2049": 2371.9095719465986, - "2050": 1593.7499650041573 - }, - "trendEmission": 304455.44623670727, - "historicalEmissionChangePercent": -2.8029697365205237, - "neededEmissionChangePercent": 32.78440453055028, - "hitNetZero": "2052-01-11", - "budgetRunsOut": "2026-08-23", - "electricCarChangePercent": 0.037733516158574704, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.03278688524590164, - "2017": 0.0, - "2018": 0.027777777777777776, - "2019": 0.1111111111111111, - "2020": 0.18181818181818182, - "2021": 0.21428571428571427, - "2022": 0.23333333333333334 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 1.802995124, - "totalConsumptionEmission": 6722.3, - "electricVehiclePerChargePoints": 2.5294117647058822 - }, - { - "kommun": "Övertorneå", - "län": "Norrbottens län", - "emissions": { - "1990": 50609.2008537337, - "2000": 44780.2485890506, - "2005": 34956.7255684865, - "2010": 33716.1937636096, - "2015": 19603.9932980453, - "2016": 18713.0805274669, - "2017": 17304.5657188851, - "2018": 15938.8941526879, - "2019": 16092.2741742944, - "2020": 15908.1170792137, - "2021": 15397.0438344427 - }, - "budget": 35239.18744018546, - "emissionBudget": { - "2024": 12827.624076739652, - "2025": 8913.6614070391, - "2026": 6193.926420358012, - "2027": 4304.036551187873, - "2028": 2990.789585919954, - "2029": 2078.240331109308, - "2030": 1444.1279634591197, - "2031": 1003.4958631234906, - "2032": 697.3093609335581, - "2033": 484.5464368254502, - "2034": 336.7017031377716, - "2035": 233.96733167334185, - "2036": 162.57925570380834, - "2037": 112.97309840720789, - "2038": 78.50276413478322, - "2039": 54.55001291181917, - "2040": 37.9057214287459, - "2041": 26.33993358271727, - "2042": 18.30309713129, - "2043": 12.718458972016768, - "2044": 8.837804742146012, - "2045": 6.141215129297471, - "2046": 4.267408521084194, - "2047": 2.965337494683272, - "2048": 2.0605541780050682, - "2049": 1.4318382066482604, - "2050": 0.994955955005549 - }, - "approximatedHistoricalEmission": { - "2021": 15397.0438344427, - "2022": 14216.414564732928, - "2023": 13522.019320736174, - "2024": 12827.624076739652 - }, - "totalApproximatedHistoricalEmission": 41850.76784106028, - "trend": { - "2024": 12827.624076739652, - "2025": 12133.22883274313, - "2026": 11438.833588746376, - "2027": 10744.438344749855, - "2028": 10050.043100753333, - "2029": 9355.64785675658, - "2030": 8661.252612760058, - "2031": 7966.857368763536, - "2032": 7272.462124766782, - "2033": 6578.0668807702605, - "2034": 5883.671636773739, - "2035": 5189.276392776985, - "2036": 4494.881148780463, - "2037": 3800.485904783942, - "2038": 3106.0906607871875, - "2039": 2411.695416790666, - "2040": 1717.3001727941446, - "2041": 1022.9049287973903, - "2042": 328.50968480086885, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0 - }, - "trendEmission": 118569.45869626512, - "historicalEmissionChangePercent": -3.8930264093669433, - "neededEmissionChangePercent": 30.511984497563695, - "hitNetZero": "2042-06-17", - "budgetRunsOut": "2026-12-27", - "electricCarChangePercent": 0.06810241001823615, - "electricCarChangeYearly": { - "2015": 0.0, - "2016": 0.0, - "2017": 0.014492753623188406, - "2018": 0.0196078431372549, - "2019": 0.0392156862745098, - "2020": 0.2413793103448276, - "2021": 0.3409090909090909, - "2022": 0.47368421052631576 - }, - "climatePlanLink": "Saknas", - "climatePlanYear": "Saknas", - "climatePlanComment": "Plan saknas. ", - "bicycleMetrePerCapita": 2.960456236, - "totalConsumptionEmission": 7105.0, - "electricVehiclePerChargePoints": 26.333333333333332 - } -] +[{"kommun": "Ale", "län": "Västra Götalands län", "emissions": {"1990": 101590.559135861, "2000": 129092.491313099, "2005": 119368.612155635, "2010": 144365.891847528, "2015": 136462.136971346, "2016": 134669.06421295, "2017": 138470.229479528, "2018": 144292.391846819, "2019": 150954.120325987, "2020": 133270.126574324, "2021": 140535.25077554}, "budget": 289908.68069823575, "emissionBudget": {"2024": 144501.6222370267, "2025": 87781.63609896516, "2026": 53325.46110500813, "2027": 32394.073845420808, "2028": 19678.70504178394, "2029": 11954.391225056554, "2030": 7262.036259920183, "2031": 4411.53126475046, "2032": 2679.910620562599, "2033": 1627.9882206865557, "2034": 988.9679254070746, "2035": 600.7768023478116, "2036": 364.95902138655913, "2037": 221.70477749958715, "2038": 134.68089699330727, "2039": 81.81575615778347, "2040": 49.70131700268164, "2041": 30.19248403739222, "2042": 18.341286455226108, "2043": 11.141938119965205, "2044": 6.768488424854226, "2045": 4.111711541037415, "2046": 2.4977765692292495, "2047": 1.5173456910881744, "2048": 0.9217549618436419, "2049": 0.5599463686314329, "2050": 0.3401554086743436}, "approximatedHistoricalEmission": {"2021": 140535.25077554, "2022": 142936.9538811841, "2023": 143719.2880591054, "2024": 144501.6222370267}, "totalApproximatedHistoricalEmission": 429174.67844657286, "trend": {"2024": 144501.6222370267, "2025": 145283.95641494775, "2026": 146066.29059286905, "2027": 146848.62477079034, "2028": 147630.9589487114, "2029": 148413.2931266327, "2030": 149195.627304554, "2031": 149977.96148247528, "2032": 150760.29566039634, "2033": 151542.62983831763, "2034": 152324.96401623893, "2035": 153107.29819416022, "2036": 153889.63237208128, "2037": 154671.96655000257, "2038": 155454.30072792387, "2039": 156236.63490584493, "2040": 157018.96908376622, "2041": 157801.3032616875, "2042": 158583.6374396088, "2043": 159365.97161752987, "2044": 160148.30579545116, "2045": 160930.63997337245, "2046": 161712.97415129375, "2047": 162495.3083292148, "2048": 163277.6425071361, "2049": 164059.9766850574, "2050": 164842.31086297845}, "trendEmission": 4021471.1303000664, "historicalEmissionChangePercent": 0.6777828626744745, "neededEmissionChangePercent": 39.252144896355176, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-12-30", "electricCarChangePercent": 0.0776370481802374, "electricCarChangeYearly": {"2015": 0.026438569206842923, "2016": 0.01288659793814433, "2017": 0.01643835616438356, "2018": 0.05028735632183908, "2019": 0.07088607594936709, "2020": 0.2733812949640288, "2021": 0.4172767203513909, "2022": 0.5561719833564494}, "climatePlanLink": "https://www.ale.se/download/18.2dcf200c178661e144145a5/1617883886384/Energi-%20och%20klimatstrategi%202030.pdf", "climatePlanYear": 2021, "climatePlanComment": "Klimatstrategi 2030", "bicycleMetrePerCapita": 2.881007594, "totalConsumptionEmission": 5889.8, "electricVehiclePerChargePoints": 151.88888888888889, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1x27RSR7W9aNADMMXb5BQyeVPViE00CpT/view?usp=drive_link"}, {"kommun": "Alingsås", "län": "Västra Götalands län", "emissions": {"1990": 115453.473201118, "2000": 103752.720914495, "2005": 95231.4117268603, "2010": 96655.8058687734, "2015": 76554.4680501621, "2016": 75086.0132397612, "2017": 75800.5822749273, "2018": 71234.921676589, "2019": 75290.4132457419, "2020": 66987.8963850153, "2021": 63674.7692719455}, "budget": 149487.40602048454, "emissionBudget": {"2024": 60230.11650487827, "2025": 40256.09924495541, "2026": 26906.033400889144, "2027": 17983.22855288768, "2028": 12019.479213710769, "2029": 8033.478534955679, "2030": 5369.348889756863, "2031": 3588.720300239444, "2032": 2398.5987235658795, "2033": 1603.1552629799544, "2034": 1071.5034457282936, "2035": 716.1624707974165, "2036": 478.6626553776999, "2037": 319.92452410710337, "2038": 213.82846557016987, "2039": 142.91687333349424, "2040": 95.52157907956041, "2041": 63.84391049866544, "2042": 42.67145651315756, "2043": 28.520389599135832, "2044": 19.062218385624664, "2045": 12.740645372960019, "2046": 8.515485513582224, "2047": 5.691508664539631, "2048": 3.804042743876703, "2049": 2.5425141294081666, "2050": 1.6993442328285504}, "approximatedHistoricalEmission": {"2021": 63674.7692719455, "2022": 64183.36643868731, "2023": 62206.74147178279, "2024": 60230.11650487827}, "totalApproximatedHistoricalEmission": 188342.55079888197, "trend": {"2024": 60230.11650487827, "2025": 58253.49153797375, "2026": 56276.866571068764, "2027": 54300.24160416424, "2028": 52323.61663725972, "2029": 50346.9916703552, "2030": 48370.36670345068, "2031": 46393.74173654616, "2032": 44417.11676964164, "2033": 42440.49180273712, "2034": 40463.866835832596, "2035": 38487.241868928075, "2036": 36510.616902023554, "2037": 34533.99193511903, "2038": 32557.366968214512, "2039": 30580.74200130999, "2040": 28604.11703440547, "2041": 26627.492067500483, "2042": 24650.867100595962, "2043": 22674.24213369144, "2044": 20697.61716678692, "2045": 18720.9921998824, "2046": 16744.36723297788, "2047": 14767.742266073357, "2048": 12791.117299168836, "2049": 10814.492332264315, "2050": 8837.867365359794}, "trendEmission": 897883.7903130911, "historicalEmissionChangePercent": -2.8783046082365495, "neededEmissionChangePercent": 33.162840152077564, "hitNetZero": "2054-06-13", "budgetRunsOut": "2026-08-05", "electricCarChangePercent": 0.056929129033027506, "electricCarChangeYearly": {"2015": 0.01273532668881506, "2016": 0.020640956002172733, "2017": 0.029882604055496264, "2018": 0.033813747228381374, "2019": 0.052089295935890095, "2020": 0.2166796570537802, "2021": 0.30501089324618735, "2022": 0.41009681881051174}, "climatePlanLink": "https://www.alingsas.se/wp-content/uploads/2022/06/Klimatstrategi-for-Alingsas-kommun.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatstrategi 2022–2030", "bicycleMetrePerCapita": 2.865584307, "totalConsumptionEmission": 6066.6, "electricVehiclePerChargePoints": 77.65384615384616, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Alvesta", "län": "Kronobergs län", "emissions": {"1990": 103083.223526214, "2000": 93492.4532103901, "2005": 102419.965964148, "2010": 77424.5893160572, "2015": 64224.7143804819, "2016": 62259.9566803873, "2017": 62223.6445687622, "2018": 58618.1780791033, "2019": 58390.9318087649, "2020": 52681.6073661213, "2021": 52912.9774987249}, "budget": 121843.88467875606, "emissionBudget": {"2024": 46560.7253330918, "2025": 31773.197872728844, "2026": 21682.13866595587, "2027": 14795.965423840502, "2028": 10096.817301847674, "2029": 6890.102585845937, "2030": 4701.829519564887, "2031": 3208.5445108561526, "2032": 2189.521724534547, "2033": 1494.1370973624198, "2034": 1019.6042545269444, "2035": 695.7814230599222, "2036": 474.8036177035168, "2037": 324.0076091610916, "2038": 221.10389828545948, "2039": 150.88205478754986, "2040": 102.96242912696904, "2041": 70.2619130330196, "2042": 47.94696924809171, "2043": 32.719175451386825, "2044": 22.327676994124978, "2045": 15.236482982117664, "2046": 10.397427987042562, "2047": 7.095240343366341, "2048": 4.841816225404095, "2049": 3.30407191667643, "2050": 2.254709952288356}, "approximatedHistoricalEmission": {"2021": 52912.9774987249, "2022": 50626.769764077384, "2023": 48593.747548584826, "2024": 46560.7253330918}, "totalApproximatedHistoricalEmission": 148957.36872857055, "trend": {"2024": 46560.7253330918, "2025": 44527.70311759878, "2026": 42494.680902105756, "2027": 40461.6586866132, "2028": 38428.636471120175, "2029": 36395.61425562715, "2030": 34362.59204013413, "2031": 32329.56982464157, "2032": 30296.547609148547, "2033": 28263.525393655524, "2034": 26230.5031781625, "2035": 24197.480962669943, "2036": 22164.45874717692, "2037": 20131.436531683896, "2038": 18098.414316190872, "2039": 16065.392100698315, "2040": 14032.369885205291, "2041": 11999.347669712268, "2042": 9966.325454219244, "2043": 7933.303238726687, "2044": 5900.281023233663, "2045": 3867.25880774064, "2046": 1834.2365922476165, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 533261.6994748586, "historicalEmissionChangePercent": -3.106354699703534, "neededEmissionChangePercent": 31.75965871359206, "hitNetZero": "2046-11-20", "budgetRunsOut": "2026-10-15", "electricCarChangePercent": 0.08469554797215427, "electricCarChangeYearly": {"2015": 0.007389162561576354, "2016": 0.01805869074492099, "2017": 0.026373626373626374, "2018": 0.06128133704735376, "2019": 0.12158054711246201, "2020": 0.2671232876712329, "2021": 0.4394366197183099, "2022": 0.6109589041095891}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Energi– och klimatplan planerad hösten 2023.", "bicycleMetrePerCapita": 3.202529861, "totalConsumptionEmission": 6030.8, "electricVehiclePerChargePoints": 38.95, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Aneby", "län": "Jönköpings län", "emissions": {"1990": 30976.2025706933, "2000": 26868.9873384187, "2005": 27929.0102673057, "2010": 22015.1931363693, "2015": 18021.2990115579, "2016": 17438.0922348438, "2017": 19692.9216059549, "2018": 17760.5917921573, "2019": 17889.921167051, "2020": 16054.3492661957, "2021": 16087.2823225698}, "budget": 36420.11395546903, "emissionBudget": {"2024": 15340.807533654734, "2025": 10067.359296459828, "2026": 6606.674582264999, "2027": 4335.610536051416, "2028": 2845.231513412243, "2029": 1867.1747145182514, "2030": 1225.3278505112564, "2031": 804.1177558608481, "2032": 527.6998845826417, "2033": 346.30147905442084, "2034": 227.25931518845812, "2035": 149.13824936858174, "2036": 97.87153237824644, "2037": 64.22790190055738, "2038": 42.149369508232255, "2039": 27.660398321777972, "2040": 18.152054093477858, "2041": 11.912231486309512, "2042": 7.817366467325015, "2043": 5.130123483135085, "2044": 3.366628270814556, "2045": 2.2093397851159167, "2046": 1.4498726599581016, "2047": 0.951474618913672, "2048": 0.6244023874917957, "2049": 0.409762208844404, "2050": 0.26890523028189284}, "approximatedHistoricalEmission": {"2021": 16087.2823225698, "2022": 16081.702993880841, "2023": 15711.255263767787, "2024": 15340.807533654734}, "totalApproximatedHistoricalEmission": 47507.0031857609, "trend": {"2024": 15340.807533654734, "2025": 14970.359803541796, "2026": 14599.912073428743, "2027": 14229.464343315689, "2028": 13859.016613202752, "2029": 13488.568883089698, "2030": 13118.121152976644, "2031": 12747.673422863707, "2032": 12377.225692750653, "2033": 12006.7779626376, "2034": 11636.330232524662, "2035": 11265.882502411609, "2036": 10895.434772298555, "2037": 10524.987042185618, "2038": 10154.539312072564, "2039": 9784.09158195951, "2040": 9413.643851846457, "2041": 9043.19612173352, "2042": 8672.748391620466, "2043": 8302.300661507412, "2044": 7931.852931394475, "2045": 7561.405201281421, "2046": 7190.957471168367, "2047": 6820.50974105543, "2048": 6450.062010942376, "2049": 6079.6142808293225, "2050": 5709.166550716385}, "trendEmission": 273649.6630968246, "historicalEmissionChangePercent": -1.574180862670948, "neededEmissionChangePercent": 34.375297556051, "hitNetZero": "2065-05-20", "budgetRunsOut": "2026-06-12", "electricCarChangePercent": 0.08172603954176877, "electricCarChangeYearly": {"2015": 0.04054054054054054, "2016": 0.0, "2017": 0.007874015748031496, "2018": 0.024793388429752067, "2019": 0.06363636363636363, "2020": 0.30973451327433627, "2021": 0.3629032258064516, "2022": 0.6271186440677966}, "climatePlanLink": "https://www.aneby.se/download/18.10e76864165add3787c19774/1538745539859/Milj%C3%B6m%C3%A5l%20f%C3%B6r%20Aneby%20kommun%202011-2025.pdf", "climatePlanYear": 2011, "climatePlanComment": "Miljömål 2011–2025", "bicycleMetrePerCapita": 2.482518504, "totalConsumptionEmission": 6113.7, "electricVehiclePerChargePoints": 2.619047619047619, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1TvoNPoKFN-r1wsEhMRKoeHXgxILwZb2U/view?usp=drive_link"}, {"kommun": "Arboga", "län": "Västmanlands län", "emissions": {"1990": 69902.3680079475, "2000": 62822.5661516163, "2005": 58075.7739081429, "2010": 61125.1994459081, "2015": 51797.2204629212, "2016": 49636.9495525602, "2017": 48089.1191695053, "2018": 51827.8235005073, "2019": 49958.9017792026, "2020": 46614.3401380875, "2021": 46192.2589353511}, "budget": 101938.4406913109, "emissionBudget": {"2024": 44661.5903335996, "2025": 28817.72673950287, "2026": 18594.532085166025, "2027": 11998.053371514256, "2028": 7741.699766704251, "2029": 4995.303273119589, "2030": 3223.2010465916237, "2031": 2079.7586089825827, "2032": 1341.9565857398377, "2033": 865.8925464871601, "2034": 558.7139778062652, "2035": 360.50813725387394, "2036": 232.61654833937953, "2037": 150.09497142978955, "2038": 96.8482277350322, "2039": 62.49096239579334, "2040": 40.322063423158426, "2041": 26.017662976665225, "2042": 16.787801250730553, "2043": 10.832266952139351, "2044": 6.989480371487267, "2045": 4.509936477678604, "2046": 2.910019908728654, "2047": 1.8776796327641314, "2048": 1.211565870295908, "2049": 0.781758417385076, "2050": 0.5044267407459694}, "approximatedHistoricalEmission": {"2021": 46192.2589353511, "2022": 46160.89896231075, "2023": 45411.244647955056, "2024": 44661.5903335996}, "totalApproximatedHistoricalEmission": 136999.06824474115, "trend": {"2024": 44661.5903335996, "2025": 43911.936019243905, "2026": 43162.28170488821, "2027": 42412.62739053252, "2028": 41662.97307617706, "2029": 40913.31876182137, "2030": 40163.66444746568, "2031": 39414.01013311022, "2032": 38664.35581875453, "2033": 37914.701504398836, "2034": 37165.047190043144, "2035": 36415.392875687685, "2036": 35665.73856133199, "2037": 34916.0842469763, "2038": 34166.42993262061, "2039": 33416.77561826515, "2040": 32667.12130390946, "2041": 31917.466989553766, "2042": 31167.812675198074, "2043": 30418.158360842615, "2044": 29668.504046486923, "2045": 28918.84973213123, "2046": 28169.19541777554, "2047": 27419.54110342008, "2048": 26669.88678906439, "2049": 25920.232474708697, "2050": 25170.578160353238}, "trendEmission": 907818.1904213844, "historicalEmissionChangePercent": -1.78675368142107, "neededEmissionChangePercent": 35.475368153599206, "hitNetZero": "2083-07-15", "budgetRunsOut": "2026-04-30", "electricCarChangePercent": 0.07658767428480581, "electricCarChangeYearly": {"2015": 0.009316770186335404, "2016": 0.00963855421686747, "2017": 0.01639344262295082, "2018": 0.0196078431372549, "2019": 0.10714285714285714, "2020": 0.27319587628865977, "2021": 0.42, "2022": 0.5126903553299492}, "climatePlanLink": "https://www.arboga.se/download/18.626a0440182c91de14a1a5/1661251036439/Energi-%20och%20klimatstrategi%202009%20kf.pdf", "climatePlanYear": 2009, "climatePlanComment": "Energi- och klimatstrategi antagen år 2009, vilken beskriver energiläget och befintliga utsläpp av växthusgaser, den innehåller också övergripande mål och strategier.", "bicycleMetrePerCapita": 3.288451193, "totalConsumptionEmission": 6176.1, "electricVehiclePerChargePoints": 11.027777777777779, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/1iEXfZZiEl5LSZsNl-A5gCSyRqNU36C2V/edit?usp=drive_link&ouid=104089955738391943844&rtpof=true&sd=true"}, {"kommun": "Arjeplog", "län": "Norrbottens län", "emissions": {"1990": 38714.4456081638, "2000": 38122.9399913677, "2005": 35304.118413432, "2010": 18716.2305096912, "2015": 16607.8028956981, "2016": 15818.1522583739, "2017": 13633.6721821389, "2018": 11336.9259223689, "2019": 11891.8297815539, "2020": 11029.4992977968, "2021": 11742.698661745}, "budget": 27271.31358103711, "emissionBudget": {"2024": 7598.4127806108445, "2025": 5750.670574622076, "2026": 4352.25263652571, "2027": 3293.8946452153255, "2028": 2492.9026046703166, "2029": 1886.691611524143, "2030": 1427.8958312799075, "2031": 1080.6676048871843, "2032": 817.8765191896368, "2033": 618.9895927449294, "2034": 468.46694694959797, "2035": 354.5476094534469, "2036": 268.3305795375109, "2037": 203.07935519838958, "2038": 153.69558169209114, "2039": 116.32069546701806, "2040": 88.03443823803174, "2041": 66.62668482826689, "2042": 50.42475672080188, "2043": 38.16272859599508, "2044": 28.88251622026708, "2045": 21.859017263811023, "2046": 16.54345598200687, "2047": 12.520505040347969, "2048": 9.47583422930969, "2049": 7.171550512698944, "2050": 5.427610436357244}, "approximatedHistoricalEmission": {"2021": 11742.698661745, "2022": 9449.445710867876, "2023": 8523.929245739244, "2024": 7598.4127806108445}, "totalApproximatedHistoricalEmission": 27643.930677785043, "trend": {"2024": 7598.4127806108445, "2025": 6672.896315482212, "2026": 5747.37985035358, "2027": 4821.8633852251805, "2028": 3896.3469200965483, "2029": 2970.830454967916, "2030": 2045.3139898395166, "2031": 1119.7975247108843, "2032": 194.28105958225206, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 31267.915890563512, "historicalEmissionChangePercent": -5.216881594416081, "neededEmissionChangePercent": 24.317476022146643, "hitNetZero": "2032-03-15", "budgetRunsOut": "2029-04-19", "electricCarChangePercent": 0.06399848551346246, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.01818181818181818, "2017": 0.0, "2018": 0.0, "2019": 0.03225806451612903, "2020": 0.047619047619047616, "2021": 0.4583333333333333, "2022": 0.42857142857142855}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.358501088, "totalConsumptionEmission": 6239.6, "electricVehiclePerChargePoints": 4.375, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Arvidsjaur", "län": "Norrbottens län", "emissions": {"1990": 48103.8636542163, "2000": 50318.9568979694, "2005": 49837.9192667041, "2010": 43256.8715821136, "2015": 40957.2197872647, "2016": 38418.7806492463, "2017": 39801.525345728, "2018": 35893.1078223932, "2019": 40378.1227315668, "2020": 35540.2212823307, "2021": 36324.1026555328}, "budget": 79186.75677804596, "emissionBudget": {"2024": 34099.03873703978, "2025": 22168.08787783397, "2026": 14411.670779022994, "2027": 9369.155147143845, "2028": 6090.9709579976225, "2029": 3959.7943067983306, "2030": 2574.2974412912295, "2031": 1673.5736259989733, "2032": 1088.0050753709666, "2033": 707.321760837613, "2034": 459.8361576427737, "2035": 298.9435693668901, "2036": 194.3458690241623, "2037": 126.34597521782379, "2038": 82.13864042439866, "2039": 53.3990595199971, "2040": 34.715202770427055, "2041": 22.568661587392903, "2042": 14.672087304647992, "2043": 9.538454242916432, "2044": 6.201033803512616, "2045": 4.031347140010915, "2046": 2.6208145735422805, "2047": 1.703814826741266, "2048": 1.1076651485113327, "2049": 0.7201029489649744, "2050": 0.46814532153960536}, "approximatedHistoricalEmission": {"2021": 36324.1026555328, "2022": 35461.8867901247, "2023": 34780.46276358212, "2024": 34099.03873703978}, "totalApproximatedHistoricalEmission": 105453.92024999311, "trend": {"2024": 34099.03873703978, "2025": 33417.61471049744, "2026": 32736.19068395486, "2027": 32054.766657412518, "2028": 31373.342630870175, "2029": 30691.91860432783, "2030": 30010.494577785255, "2031": 29329.070551242912, "2032": 28647.64652470057, "2033": 27966.222498157993, "2034": 27284.79847161565, "2035": 26603.374445073307, "2036": 25921.95041853073, "2037": 25240.526391988387, "2038": 24559.102365446044, "2039": 23877.6783389037, "2040": 23196.254312361125, "2041": 22514.83028581878, "2042": 21833.40625927644, "2043": 21151.982232733862, "2044": 20470.55820619152, "2045": 19789.134179649176, "2046": 19107.710153106833, "2047": 18426.286126564257, "2048": 17744.862100021914, "2049": 17063.43807347957, "2050": 16382.014046936994}, "trendEmission": 656253.6861916992, "historicalEmissionChangePercent": -1.6164683626256438, "neededEmissionChangePercent": 34.98911201343022, "hitNetZero": "2074-01-02", "budgetRunsOut": "2026-05-19", "electricCarChangePercent": 0.030938974664856116, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.009900990099009901, "2017": 0.05, "2018": 0.009433962264150943, "2019": 0.051094890510948905, "2020": 0.0875, "2021": 0.12903225806451613, "2022": 0.2641509433962264}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Kommer under 2023.", "bicycleMetrePerCapita": 3.522716618, "totalConsumptionEmission": 6424.3, "electricVehiclePerChargePoints": 4.631578947368421, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Arvika", "län": "Värmlands län", "emissions": {"1990": 117464.563078085, "2000": 106423.210480105, "2005": 90163.3318556664, "2010": 91550.2691531705, "2015": 69134.2424361178, "2016": 68006.4746525317, "2017": 69369.2521840349, "2018": 65433.7332742731, "2019": 65862.7243296078, "2020": 59397.6057608309, "2021": 62127.6159510355}, "budget": 136068.850427894, "emissionBudget": {"2024": 56673.632992687635, "2025": 37367.52621916205, "2026": 24638.1243270557, "2027": 16245.045679372946, "2028": 10711.103882007657, "2029": 7062.322177205966, "2030": 4656.513005950469, "2031": 3070.252649272971, "2032": 2024.35842406578, "2033": 1334.7523794357742, "2034": 880.0634775097365, "2035": 580.2662249412376, "2036": 382.5961426786167, "2037": 252.26318903427494, "2038": 166.3286934787462, "2039": 109.66813818637591, "2040": 72.30923469499193, "2041": 47.676795727940764, "2042": 31.43549866724317, "2043": 20.726866421501597, "2044": 13.666173907475851, "2045": 9.010735413223337, "2046": 5.941191238807633, "2047": 3.9172999447175862, "2048": 2.5828555655050947, "2049": 1.702995166672536, "2050": 1.1228628408197003}, "approximatedHistoricalEmission": {"2021": 62127.6159510355, "2022": 59655.357642193325, "2023": 58164.49531744048, "2024": 56673.632992687635}, "totalApproximatedHistoricalEmission": 177220.47743149538, "trend": {"2024": 56673.632992687635, "2025": 55182.770667935256, "2026": 53691.90834318241, "2027": 52201.046018429566, "2028": 50710.18369367719, "2029": 49219.32136892434, "2030": 47728.4590441715, "2031": 46237.59671941865, "2032": 44746.73439466627, "2033": 43255.87206991343, "2034": 41765.00974516058, "2035": 40274.14742040774, "2036": 38783.28509565536, "2037": 37292.422770902514, "2038": 35801.56044614967, "2039": 34310.69812139729, "2040": 32819.835796644446, "2041": 31328.9734718916, "2042": 29838.111147138756, "2043": 28347.248822386377, "2044": 26856.38649763353, "2045": 25365.524172880687, "2046": 23874.661848127842, "2047": 22383.799523375463, "2048": 20892.937198622618, "2049": 19402.074873869773, "2050": 17911.212549117394}, "trendEmission": 969602.9920434654, "historicalEmissionChangePercent": -1.6441576843848162, "neededEmissionChangePercent": 34.06541235148373, "hitNetZero": "2061-12-27", "budgetRunsOut": "2026-06-25", "electricCarChangePercent": 0.06325904988850772, "electricCarChangeYearly": {"2015": 0.0025252525252525255, "2016": 0.013953488372093023, "2017": 0.015209125475285171, "2018": 0.026888604353393086, "2019": 0.05429864253393665, "2020": 0.1813380281690141, "2021": 0.35108153078202997, "2022": 0.44571428571428573}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas för efter år 2020. Hade en miljöstrategi som gällde 2015–2020", "bicycleMetrePerCapita": 2.049167865, "totalConsumptionEmission": 6148.4, "electricVehiclePerChargePoints": 21.121951219512194, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Askersund", "län": "Örebro län", "emissions": {"1990": 139273.944534919, "2000": 99039.0112772662, "2005": 100023.548226173, "2010": 89463.7845708239, "2015": 72815.842968439, "2016": 77653.3603430479, "2017": 81124.8000262222, "2018": 77584.282702615, "2019": 78739.460609345, "2020": 73417.3513078072, "2021": 83063.063221357}, "budget": 161268.2953467378, "emissionBudget": {"2024": 82032.08801227529, "2025": 49325.54366794466, "2026": 29659.238440623867, "2027": 17833.973220845706, "2028": 10723.49182122667, "2029": 6447.989767389713, "2030": 3877.1486688751434, "2031": 2331.3129119070677, "2032": 1401.808482830617, "2033": 842.9014451468066, "2034": 506.83303385061856, "2035": 304.7565355134517, "2036": 183.24880135089165, "2037": 110.18672049136849, "2038": 66.25480375936931, "2039": 39.83873012661632, "2040": 23.954858033624884, "2041": 14.403953679932748, "2042": 8.661035741577836, "2043": 5.207843747886786, "2044": 3.131454171491805, "2045": 1.8829299999894311, "2046": 1.1321977556424467, "2047": 0.6807856680221723, "2048": 0.4093535104398856, "2049": 0.24614251500958403, "2050": 0.14800444151593664}, "approximatedHistoricalEmission": {"2021": 83063.063221357, "2022": 80611.7806357469, "2023": 81321.93432401097, "2024": 82032.08801227529}, "totalApproximatedHistoricalEmission": 244481.290576574, "trend": {"2024": 82032.08801227529, "2025": 82742.24170053937, "2026": 83452.39538880344, "2027": 84162.54907706752, "2028": 84872.70276533184, "2029": 85582.85645359592, "2030": 86293.01014186, "2031": 87003.16383012407, "2032": 87713.31751838815, "2033": 88423.47120665247, "2034": 89133.62489491655, "2035": 89843.77858318062, "2036": 90553.9322714447, "2037": 91264.08595970902, "2038": 91974.2396479731, "2039": 92684.39333623718, "2040": 93394.54702450125, "2041": 94104.70071276533, "2042": 94814.85440102965, "2043": 95525.00808929373, "2044": 96235.1617775578, "2045": 96945.31546582188, "2046": 97655.4691540862, "2047": 98365.62284235028, "2048": 99075.77653061436, "2049": 99785.93021887843, "2050": 100496.08390714251}, "trendEmission": 2372866.234952432, "historicalEmissionChangePercent": 2.436271158385382, "neededEmissionChangePercent": 39.870427703164665, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-12-13", "electricCarChangePercent": 0.08155194210851513, "electricCarChangeYearly": {"2015": 0.004329004329004329, "2016": 0.016666666666666666, "2017": 0.010752688172043012, "2018": 0.0797872340425532, "2019": 0.08588957055214724, "2020": 0.25625, "2021": 0.375, "2022": 0.6209150326797386}, "climatePlanLink": "https://www.askersund.se/download/18.c8a52c6182e9506a5cabfd/1661845370147/Ekologiskt%20h%C3%A5llbarhetsprogram%202022-2025", "climatePlanYear": 2022, "climatePlanComment": "Ekologiskt hållbarhetsprogram 2022–2025.", "bicycleMetrePerCapita": 2.926919348, "totalConsumptionEmission": 6451.7, "electricVehiclePerChargePoints": 6.2, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Avesta", "län": "Dalarnas län", "emissions": {"1990": 281695.653363212, "2000": 316059.538443578, "2005": 308873.585939866, "2010": 214367.413776715, "2015": 210301.163844022, "2016": 213040.764646359, "2017": 224364.063775484, "2018": 217018.979100014, "2019": 220071.132359513, "2020": 200369.082602858, "2021": 207670.893624396}, "budget": 442226.199524184, "emissionBudget": {"2024": 205220.774387124, "2025": 129027.22696694972, "2026": 81122.51475757657, "2027": 51003.67228909689, "2028": 32067.23305789322, "2029": 20161.439163843545, "2030": 12675.980756540826, "2031": 7969.693375279933, "2032": 5010.737529181441, "2033": 3150.3709621030994, "2034": 1980.7138452298327, "2035": 1245.3223394574818, "2036": 782.9640474754722, "2037": 492.2682908798038, "2038": 309.50089086091083, "2039": 194.59063932900463, "2040": 122.34380589065076, "2041": 76.9204874983839, "2042": 48.361756885978856, "2043": 30.406197427540466, "2044": 19.11710619162005, "2045": 12.019383548784617, "2046": 7.556874949835285, "2047": 4.75118867583042, "2048": 2.9871863678029107, "2049": 1.8781157737180167, "2050": 1.1808164691387468}, "approximatedHistoricalEmission": {"2021": 207670.893624396, "2022": 207901.28197011352, "2023": 206561.02817861876, "2024": 205220.774387124}, "totalApproximatedHistoricalEmission": 620908.1441544923, "trend": {"2024": 205220.774387124, "2025": 203880.52059562923, "2026": 202540.26680413494, "2027": 201200.01301264018, "2028": 199859.75922114542, "2029": 198519.50542965112, "2030": 197179.25163815636, "2031": 195838.9978466616, "2032": 194498.74405516684, "2033": 193158.49026367255, "2034": 191818.23647217778, "2035": 190477.98268068302, "2036": 189137.72888918873, "2037": 187797.47509769397, "2038": 186457.2213061992, "2039": 185116.96751470445, "2040": 183776.71372321015, "2041": 182436.4599317154, "2042": 181096.20614022063, "2043": 179755.95234872634, "2044": 178415.69855723158, "2045": 177075.44476573681, "2046": 175735.19097424205, "2047": 174394.93718274776, "2048": 173054.683391253, "2049": 171714.42959975824, "2050": 170374.17580826394}, "trendEmission": 4882734.352540041, "historicalEmissionChangePercent": -0.09299141160527212, "neededEmissionChangePercent": 37.12759960472833, "hitNetZero": "2177-01-07", "budgetRunsOut": "2026-03-04", "electricCarChangePercent": 0.0635646911666385, "electricCarChangeYearly": {"2015": 0.005825242718446602, "2016": 0.012172284644194757, "2017": 0.02040816326530612, "2018": 0.04728950403690888, "2019": 0.049466537342386034, "2020": 0.2258485639686684, "2021": 0.34558823529411764, "2022": 0.442090395480226}, "climatePlanLink": "https://avesta.se/contentassets/dffc2e06c2e84440b5edf9ad69ce3cef/hallbarhetsprogram-for-avesta-kommun-2020.pdf", "climatePlanYear": 2020, "climatePlanComment": "Hållbarhetsprogram 2020–2030.", "bicycleMetrePerCapita": 2.915797667, "totalConsumptionEmission": 6232.0, "electricVehiclePerChargePoints": 27.17142857142857, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1jTFL_NGHLfw6GEv8l2OV7i8VJfnmi5Y_/view?usp=drive_link"}, {"kommun": "Bengtsfors", "län": "Västra Götalands län", "emissions": {"1990": 94238.6156747183, "2000": 97820.34102533, "2005": 78321.2503204819, "2010": 80167.3398085306, "2015": 62148.8653302527, "2016": 62896.6500984508, "2017": 65484.1978674201, "2018": 65025.4732262624, "2019": 63276.0723933244, "2020": 54846.1724613589, "2021": 54901.5850984739}, "budget": 126958.9288448897, "emissionBudget": {"2024": 52643.23347287392, "2025": 34774.69499362939, "2026": 22971.222170900124, "2027": 15174.167541125009, "2028": 10023.644316923572, "2029": 6621.3480983316695, "2030": 4373.883315597968, "2031": 2889.2689184074966, "2032": 1908.5728357466169, "2033": 1260.7515507271069, "2034": 832.8183461958414, "2035": 550.1372553223252, "2036": 363.405778794421, "2037": 240.05602017228145, "2038": 158.5745086721759, "2039": 104.7500278583954, "2040": 69.19503284741945, "2041": 45.70836560757743, "2042": 30.19370900687249, "2043": 19.945146834140125, "2044": 13.17522408872868, "2045": 8.703196383146599, "2046": 5.749095937458546, "2047": 3.797697149762877, "2048": 2.508655934465531, "2049": 1.6571502016484052, "2050": 1.0946685645867262}, "approximatedHistoricalEmission": {"2021": 54901.5850984739, "2022": 55504.01357598929, "2023": 54073.623524431605, "2024": 52643.23347287392}, "totalApproximatedHistoricalEmission": 163350.04638609482, "trend": {"2024": 52643.23347287392, "2025": 51212.84342131624, "2026": 49782.45336975856, "2027": 48352.06331820041, "2028": 46921.67326664273, "2029": 45491.283215085045, "2030": 44060.89316352736, "2031": 42630.50311196968, "2032": 41200.113060412, "2033": 39769.723008854315, "2034": 38339.33295729663, "2035": 36908.94290573895, "2036": 35478.55285418127, "2037": 34048.162802623585, "2038": 32617.772751065902, "2039": 31187.38269950822, "2040": 29756.992647950538, "2041": 28326.60259639239, "2042": 26896.212544834707, "2043": 25465.822493277024, "2044": 24035.432441719342, "2045": 22605.04239016166, "2046": 21174.652338603977, "2047": 19744.262287046295, "2048": 18313.872235488612, "2049": 16883.48218393093, "2050": 15453.092132373247}, "trendEmission": 885252.23286821, "historicalEmissionChangePercent": -1.8825068438302222, "neededEmissionChangePercent": 33.942706973825715, "hitNetZero": "2060-10-11", "budgetRunsOut": "2026-07-01", "electricCarChangePercent": 0.055031213252816284, "electricCarChangeYearly": {"2015": 0.0029850746268656717, "2016": 0.006779661016949152, "2017": 0.009584664536741214, "2018": 0.01195219123505976, "2019": 0.05339805825242718, "2020": 0.12142857142857143, "2021": 0.26356589147286824, "2022": 0.4260869565217391}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.461809581, "totalConsumptionEmission": 6014.7, "electricVehiclePerChargePoints": 9.35, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/12cQAQ6TVcfe_rCZEkuDO0uXLCtBwJDex/view?usp=drive_link"}, {"kommun": "Berg", "län": "Jämtlands län", "emissions": {"1990": 67738.3093412696, "2000": 68531.2443452182, "2005": 66265.922636955, "2010": 57430.7443320315, "2015": 50547.4186972261, "2016": 49476.7572719208, "2017": 43349.5706505332, "2018": 30769.5425381069, "2019": 30498.8410875559, "2020": 28932.034456299, "2021": 28585.8132476701}, "budget": 77660.24165194722, "emissionBudget": {"2024": 11774.641519278288, "2025": 10118.149851662161, "2026": 8694.698369633768, "2027": 7471.502285221965, "2028": 6420.389072154597, "2029": 5517.149599134138, "2030": 4740.980547618291, "2031": 4074.0052719292853, "2032": 3500.8620661912755, "2033": 3008.350355102284, "2034": 2585.126659643028, "2035": 2221.4433352360984, "2036": 1908.9240649997066, "2037": 1640.3709372797098, "2038": 1409.598664089515, "2039": 1211.2921221940273, "2040": 1040.8839357385602, "2041": 894.4492809184204, "2042": 768.6154898411513, "2043": 660.4843715868953, "2044": 567.5654613735313, "2045": 487.71866042824166, "2046": 419.1049454529256, "2047": 360.14401242895065, "2048": 309.4778792177069, "2049": 265.9396086558135, "2050": 228.5264317785229}, "approximatedHistoricalEmission": {"2021": 28585.8132476701, "2022": 20333.569486629218, "2023": 16054.105502953753, "2024": 11774.641519278288}, "totalApproximatedHistoricalEmission": 56567.902373057164, "trend": {"2024": 11774.641519278288, "2025": 7495.1775356046855, "2026": 3215.7135519292206, "2027": 0, "2028": 0, "2029": 0, "2030": 0, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 16598.21184717305, "historicalEmissionChangePercent": -8.455961710818203, "neededEmissionChangePercent": 14.068298087071277, "hitNetZero": "2026-10-01", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.08054448179106087, "electricCarChangeYearly": {"2015": 0.11842105263157894, "2016": 0.043010752688172046, "2017": 0.06666666666666667, "2018": 0.06451612903225806, "2019": 0.14925373134328357, "2020": 0.36666666666666664, "2021": 0.525, "2022": 0.6}, "climatePlanLink": "https://berg.se/download/18.12a5b1201849980bbaa159b/1669973598681/Milj%C3%B6program.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljöprogram 2040", "bicycleMetrePerCapita": 2.184422467, "totalConsumptionEmission": 6488.9, "electricVehiclePerChargePoints": 2.3780487804878048, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Bjurholm", "län": "Västerbottens län", "emissions": {"1990": 18442.6550293835, "2000": 17529.3803924879, "2005": 15308.921462345, "2010": 15259.792041485, "2015": 12867.6838748248, "2016": 11517.7759185802, "2017": 13825.4258206836, "2018": 12664.4330623368, "2019": 12930.0712402961, "2020": 12167.8839223697, "2021": 11516.2724727444}, "budget": 25917.22566405645, "emissionBudget": {"2024": 11716.498163323035, "2025": 7455.292391844355, "2026": 4743.856387216667, "2027": 3018.550076876206, "2028": 1920.7252123320209, "2029": 1222.1713230961861, "2030": 777.6764387786241, "2031": 494.84113397398545, "2032": 314.87098703573383, "2033": 200.35468288711297, "2034": 127.4871315795127, "2035": 81.1209824705195, "2036": 51.61786695999234, "2037": 32.844821504322276, "2038": 20.899397111603385, "2039": 13.298437306806996, "2040": 8.461891692793825, "2041": 5.3843627915530945, "2042": 3.4261089273632015, "2043": 2.1800578520772396, "2044": 1.3871865545329727, "2045": 0.8826768221969563, "2046": 0.5616536362018202, "2047": 0.3573842646888228, "2048": 0.2274061884667927, "2049": 0.1447001999319188, "2050": 0.09207378216707938}, "approximatedHistoricalEmission": {"2021": 11516.2724727444, "2022": 11977.16764754086, "2023": 11846.832905431918, "2024": 11716.498163323035}, "totalApproximatedHistoricalEmission": 35440.385871006496, "trend": {"2024": 11716.498163323035, "2025": 11586.16342121415, "2026": 11455.828679105209, "2027": 11325.493936996325, "2028": 11195.159194887383, "2029": 11064.8244527785, "2030": 10934.489710669615, "2031": 10804.154968560673, "2032": 10673.82022645179, "2033": 10543.485484342847, "2034": 10413.150742233964, "2035": 10282.816000125022, "2036": 10152.481258016138, "2037": 10022.146515907254, "2038": 9891.811773798312, "2039": 9761.477031689428, "2040": 9631.142289580486, "2041": 9500.807547471602, "2042": 9370.472805362719, "2043": 9240.138063253777, "2044": 9109.803321144893, "2045": 8979.46857903595, "2046": 8849.133836927067, "2047": 8718.799094818125, "2048": 8588.464352709241, "2049": 8458.129610600357, "2050": 8327.794868491415}, "trendEmission": 260575.80941358805, "historicalEmissionChangePercent": -1.3341666696382115, "neededEmissionChangePercent": 36.36927785144734, "hitNetZero": "2113-11-01", "budgetRunsOut": "2026-03-29", "electricCarChangePercent": 0.06209325396825398, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.0, "2018": 0.1, "2019": 0.125, "2020": 0.1111111111111111, "2021": 0.1875, "2022": 0.56}, "climatePlanLink": "https://www.bjurholm.se/download/18.23d7fdaa17507a9912f33be/1614325453270/Fossilfria%20transporter%20Handlingsplan%20beslutad.pdf", "climatePlanYear": 2021, "climatePlanComment": "Handlingsplan för fossilfria transporter", "bicycleMetrePerCapita": 1.762300157, "totalConsumptionEmission": 6118.0, "electricVehiclePerChargePoints": 8.5, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Bjuv", "län": "Skåne län", "emissions": {"1990": 160297.903693962, "2000": 113065.161374192, "2005": 92013.3972754381, "2010": 64781.9736356902, "2015": 68192.95717729, "2016": 70003.9436103819, "2017": 58110.4754040668, "2018": 51957.1512705662, "2019": 52716.9577348431, "2020": 50190.2505855577, "2021": 50848.2087199788}, "budget": 119091.27504205616, "emissionBudget": {"2024": 36633.888695208356, "2025": 26933.25779073751, "2026": 19801.34790651378, "2027": 14557.963316626354, "2028": 10703.023699640236, "2029": 7868.869691698564, "2030": 5785.197899450932, "2031": 4253.281099713699, "2032": 3127.0149142000355, "2033": 2298.98331297399, "2034": 1690.2139639090828, "2035": 1242.6463592280866, "2036": 913.5943774429026, "2037": 671.6751554430658, "2038": 493.81599271900296, "2039": 363.0538254823461, "2040": 266.91739866831085, "2041": 196.23783778397996, "2042": 144.27418059017506, "2043": 106.07046744919697, "2044": 77.98307374796717, "2045": 57.33320440106085, "2046": 42.15140759284976, "2047": 30.98974112156335, "2048": 22.783676978427245, "2049": 16.750573508215503, "2050": 12.315032078439325}, "approximatedHistoricalEmission": {"2021": 50848.2087199788, "2022": 43566.39934455231, "2023": 40100.14401988033, "2024": 36633.888695208356}, "totalApproximatedHistoricalEmission": 127407.59207202622, "trend": {"2024": 36633.888695208356, "2025": 33167.63337053638, "2026": 29701.378045865335, "2027": 26235.12272119336, "2028": 22768.867396521382, "2029": 19302.612071849406, "2030": 15836.35674717743, "2031": 12370.101422506385, "2032": 8903.846097834408, "2033": 5437.590773162432, "2034": 1971.3354484904557, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 194011.78844274115, "historicalEmissionChangePercent": -4.490451877030513, "neededEmissionChangePercent": 26.4799377024358, "hitNetZero": "2034-07-24", "budgetRunsOut": "2028-01-05", "electricCarChangePercent": 0.046103761883977544, "electricCarChangeYearly": {"2015": 0.010638297872340425, "2016": 0.017429193899782137, "2017": 0.03125, "2018": 0.042222222222222223, "2019": 0.08685968819599109, "2020": 0.16058394160583941, "2021": 0.20215633423180593, "2022": 0.37012987012987014}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.303408188, "totalConsumptionEmission": 5852.6, "electricVehiclePerChargePoints": 48.375, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1w-XpLcjZch_a49jJyc65AJSYXjl6kOfM/view?usp=sharing"}, {"kommun": "Boden", "län": "Norrbottens län", "emissions": {"1990": 129573.421029128, "2000": 98863.5553219538, "2005": 98804.8089867584, "2010": 107194.638880034, "2015": 100251.120818642, "2016": 104140.926535257, "2017": 100950.667031265, "2018": 104602.638313728, "2019": 116976.544609655, "2020": 111741.899311839, "2021": 117644.889726228}, "budget": 224043.0282478171, "emissionBudget": {"2024": 125917.48301829956, "2025": 71779.8025149274, "2026": 40918.385005624594, "2027": 23325.70128094642, "2028": 13296.916292594537, "2029": 7579.964296151365, "2030": 4320.991233352984, "2031": 2463.199628551456, "2032": 1404.1575375722095, "2033": 800.4460407784047, "2034": 456.29770667016425, "2035": 260.11446931510454, "2036": 148.27937146742275, "2037": 84.5272931593014, "2038": 48.18514684902225, "2039": 27.468150109647123, "2040": 15.658337055818613, "2041": 8.926102353995478, "2042": 5.088363020286141, "2043": 2.9006432146306382, "2044": 1.653524134390397, "2045": 0.9425985413237633, "2046": 0.5373323507208726, "2047": 0.3063086165248443, "2048": 0.17461254367337228, "2049": 0.0995386311818374, "2050": 0.05674242462264051}, "approximatedHistoricalEmission": {"2021": 117644.889726228, "2022": 119959.6880287053, "2023": 122938.58552350197, "2024": 125917.48301829956}, "totalApproximatedHistoricalEmission": 364679.45992447104, "trend": {"2024": 125917.48301829956, "2025": 128896.38051309623, "2026": 131875.2780078929, "2027": 134854.1755026905, "2028": 137833.07299748715, "2029": 140811.9704922838, "2030": 143790.8679870814, "2031": 146769.76548187807, "2032": 149748.66297667474, "2033": 152727.56047147233, "2034": 155706.457966269, "2035": 158685.35546106566, "2036": 161664.25295586325, "2037": 164643.15045065992, "2038": 167622.04794545658, "2039": 170600.94544025417, "2040": 173579.84293505084, "2041": 176558.74042984843, "2042": 179537.6379246451, "2043": 182516.53541944176, "2044": 185495.43291423935, "2045": 188474.33040903602, "2046": 191453.22790383268, "2047": 194432.12539863028, "2048": 197411.02289342694, "2049": 200389.9203882236, "2050": 203368.8178830212}, "trendEmission": 4280721.911717162, "historicalEmissionChangePercent": 2.8452373551376673, "neededEmissionChangePercent": 42.99457009913734, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-09-29", "electricCarChangePercent": 0.060552083725307855, "electricCarChangeYearly": {"2015": 0.0036900369003690036, "2016": 0.0149812734082397, "2017": 0.025423728813559324, "2018": 0.032679738562091505, "2019": 0.06835443037974684, "2020": 0.18289085545722714, "2021": 0.30532212885154064, "2022": 0.4503464203233256}, "climatePlanLink": "https://www.boden.se/kommunen/organisation-och-styrning/viktiga-styrdokument", "climatePlanYear": 2018, "climatePlanComment": "Borgmästaravtalet. Kommunen jobbar med uppdatering av planen.", "bicycleMetrePerCapita": 4.240521656, "totalConsumptionEmission": 6657.4, "electricVehiclePerChargePoints": 11.0625, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Bollebygd", "län": "Västra Götalands län", "emissions": {"1990": 46265.7202364746, "2000": 44666.3228557324, "2005": 41903.3458881715, "2010": 46614.9599990987, "2015": 40719.3993421714, "2016": 39307.1126988096, "2017": 42647.8515232399, "2018": 45198.3703372019, "2019": 44024.8545576205, "2020": 40236.3900463112, "2021": 40428.9261016411}, "budget": 86666.56919908583, "emissionBudget": {"2024": 42301.30165981244, "2025": 25964.373971456065, "2026": 15936.831475095896, "2027": 9781.965001152079, "2028": 6004.1319652085, "2029": 3685.312782390115, "2030": 2262.0306120430732, "2031": 1388.4255670970385, "2032": 852.2101978220386, "2033": 523.0832955563967, "2034": 321.06648663605665, "2035": 197.0693572448577, "2036": 120.96040284928313, "2037": 74.2450234882605, "2038": 45.571305839983964, "2039": 27.97148978328129, "2040": 17.168791332060827, "2041": 10.538137156356644, "2042": 6.4682674847824995, "2043": 3.9701973540415834, "2044": 2.4368916509903493, "2045": 1.4957545907941436, "2046": 0.9180883339530207, "2047": 0.5635190385697695, "2048": 0.3458857879865472, "2049": 0.21230334761132005, "2050": 0.13031096671924006}, "approximatedHistoricalEmission": {"2021": 40428.9261016411, "2022": 42132.43465925571, "2023": 42216.868159534075, "2024": 42301.30165981244}, "totalApproximatedHistoricalEmission": 125714.41669951656, "trend": {"2024": 42301.30165981244, "2025": 42385.73516009083, "2026": 42470.16866036919, "2027": 42554.602160647555, "2028": 42639.03566092592, "2029": 42723.46916120431, "2030": 42807.90266148267, "2031": 42892.336161761035, "2032": 42976.76966203943, "2033": 43061.20316231779, "2034": 43145.63666259615, "2035": 43230.070162874516, "2036": 43314.50366315291, "2037": 43398.93716343127, "2038": 43483.37066370963, "2039": 43567.804163988025, "2040": 43652.23766426639, "2041": 43736.67116454475, "2042": 43821.10466482311, "2043": 43905.538165101505, "2044": 43989.97166537987, "2045": 44074.40516565823, "2046": 44158.83866593659, "2047": 44243.272166214985, "2048": 44327.70566649335, "2049": 44412.13916677171, "2050": 44496.5726670501}, "trendEmission": 1128372.366249213, "historicalEmissionChangePercent": 0.04800095132785536, "neededEmissionChangePercent": 38.62039002898336, "hitNetZero": "Aldrig", "budgetRunsOut": "2026-01-17", "electricCarChangePercent": 0.0749761798547102, "electricCarChangeYearly": {"2015": 0.008658008658008658, "2016": 0.005208333333333333, "2017": 0.0273972602739726, "2018": 0.06060606060606061, "2019": 0.12340425531914893, "2020": 0.2598870056497175, "2021": 0.35267857142857145, "2022": 0.5515695067264574}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.022400756, "totalConsumptionEmission": 6010.1, "electricVehiclePerChargePoints": 225.0, "procurementScore": "2", "procurementLink": "https://drive.google.com/drive/u/0/folders/1W0ikrmofAruq9lzl1j562VHonpwsK4rB"}, {"kommun": "Bollnäs", "län": "Gävleborgs län", "emissions": {"1990": 127757.51752212, "2000": 131127.376054157, "2005": 122037.978687727, "2010": 115038.575618767, "2015": 94837.668120797, "2016": 96598.6235442629, "2017": 88197.4101148779, "2018": 81338.8914272292, "2019": 82862.6460431534, "2020": 80191.7676912397, "2021": 83466.9995600362}, "budget": 179959.31993916078, "emissionBudget": {"2024": 71300.4691873584, "2025": 47975.9406164032, "2026": 32281.56706767838, "2027": 21721.29527750663, "2028": 14615.606099402527, "2029": 9834.401628622081, "2030": 6617.27298445723, "2031": 4452.5639082489615, "2032": 2995.996296904685, "2033": 2015.9157725815849, "2034": 1356.4490738329162, "2035": 912.7137725332283, "2036": 614.1376382217578, "2037": 413.2347402119076, "2038": 278.05322437564416, "2039": 187.09364935301863, "2040": 125.88968787119894, "2041": 84.70738353285637, "2042": 56.99704992774076, "2043": 38.351600120021125, "2044": 25.805637899342187, "2045": 17.363837370746946, "2046": 11.68360376960236, "2047": 7.861545471224059, "2048": 5.289797430217615, "2049": 3.5593455453715053, "2050": 2.3949765333140207}, "approximatedHistoricalEmission": {"2021": 83466.9995600362, "2022": 76461.93214879185, "2023": 73881.20066807512, "2024": 71300.4691873584}, "totalApproximatedHistoricalEmission": 227726.86719056428, "trend": {"2024": 71300.4691873584, "2025": 68719.7377066426, "2026": 66139.00622592587, "2027": 63558.274745210074, "2028": 60977.543264493346, "2029": 58396.81178377755, "2030": 55816.08030306082, "2031": 53235.348822345026, "2032": 50654.6173416283, "2033": 48073.88586091157, "2034": 45493.154380195774, "2035": 42912.42289947905, "2036": 40331.69141876325, "2037": 37750.95993804652, "2038": 35170.228457330726, "2039": 32589.496976614, "2040": 30008.76549589727, "2041": 27428.034015181474, "2042": 24847.302534464747, "2043": 22266.57105374895, "2044": 19685.839573032223, "2045": 17105.108092316426, "2046": 14524.376611599699, "2047": 11943.645130883902, "2048": 9362.913650167175, "2049": 6782.182169450447, "2050": 4201.450688734651}, "trendEmission": 981524.9583892133, "historicalEmissionChangePercent": -1.9803697103720805, "neededEmissionChangePercent": 32.71300853527995, "hitNetZero": "2051-08-11", "budgetRunsOut": "2026-08-26", "electricCarChangePercent": 0.0455480925238178, "electricCarChangeYearly": {"2015": 0.009722222222222222, "2016": 0.01920768307322929, "2017": 0.005215123859191656, "2018": 0.043037974683544304, "2019": 0.061813186813186816, "2020": 0.17970049916805325, "2021": 0.2708688245315162, "2022": 0.299079754601227}, "climatePlanLink": "https://bollnas.se/download/18.5bba8c07182e92654f3ac6a/1662039598190/Programmet%20f%C3%B6r%20ekologisk%20h%C3%A5llbarhet%20-%20antagen%20version.pdf", "climatePlanYear": 2022, "climatePlanComment": "Program för ekologisk hållbarhet 2021–2026", "bicycleMetrePerCapita": 2.564056644, "totalConsumptionEmission": 6108.5, "electricVehiclePerChargePoints": 14.157894736842104, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Borgholm", "län": "Kalmar län", "emissions": {"1990": 73235.7257665015, "2000": 71591.469216971, "2005": 65683.4591122369, "2010": 62952.1537254546, "2015": 54689.3614341625, "2016": 53638.1612390632, "2017": 48823.8327135673, "2018": 52293.0113652709, "2019": 51169.8106143667, "2020": 46482.1852316377, "2021": 44760.6499832772}, "budget": 104231.39656077791, "emissionBudget": {"2024": 41318.40712589724, "2025": 27796.15543877208, "2026": 18699.323398943856, "2027": 12579.606426094151, "2028": 8462.685759227366, "2029": 5693.107386163758, "2030": 3829.927357878342, "2031": 2576.509201683807, "2032": 1733.2964952209422, "2033": 1166.041533397906, "2034": 784.4317814971555, "2035": 527.7112368627969, "2036": 355.00747940090025, "2037": 238.82438278142652, "2038": 160.66446235776024, "2039": 108.08389480203307, "2040": 72.71133979562775, "2041": 48.91514082240301, "2042": 32.90671040309168, "2043": 22.137349935973152, "2044": 14.89247196649861, "2045": 10.018621104802872, "2046": 6.7398326528594525, "2047": 4.534091439666665, "2048": 3.050221903438003, "2049": 2.051977509500103, "2050": 1.3804279927136895}, "approximatedHistoricalEmission": {"2021": 44760.6499832772, "2022": 44300.700587804895, "2023": 42809.55385685107, "2024": 41318.40712589724}, "totalApproximatedHistoricalEmission": 130149.78299924318, "trend": {"2024": 41318.40712589724, "2025": 39827.26039494341, "2026": 38336.113663989585, "2027": 36844.96693303576, "2028": 35353.82020208193, "2029": 33862.6734711281, "2030": 32371.526740174275, "2031": 30880.380009220447, "2032": 29389.23327826662, "2033": 27898.086547312792, "2034": 26406.9398163585, "2035": 24915.79308540467, "2036": 23424.646354450844, "2037": 21933.499623497017, "2038": 20442.35289254319, "2039": 18951.20616158936, "2040": 17460.059430635534, "2041": 15968.912699681707, "2042": 14477.76596872788, "2043": 12986.619237774052, "2044": 11495.472506820224, "2045": 10004.325775866397, "2046": 8513.17904491257, "2047": 7022.032313958742, "2048": 5530.885583004914, "2049": 4039.7388520510867, "2050": 2548.592121097259}, "trendEmission": 570270.9902109269, "historicalEmissionChangePercent": -3.1341093732750616, "neededEmissionChangePercent": 32.72694333526178, "hitNetZero": "2051-09-09", "budgetRunsOut": "2026-08-25", "electricCarChangePercent": 0.07454415068255339, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.010526315789473684, "2017": 0.019417475728155338, "2018": 0.030864197530864196, "2019": 0.18840579710144928, "2020": 0.15555555555555556, "2021": 0.36496350364963503, "2022": 0.5605095541401274}, "climatePlanLink": "https://www.borgholm.se/wp-content/uploads/2020/05/Energi-och-klimatstrategi-KF-2019-11-27-220.pdf", "climatePlanYear": 2019, "climatePlanComment": "Energi– och klimatstrategi, ska följas upp årligen.", "bicycleMetrePerCapita": 2.378697008, "totalConsumptionEmission": 6336.3, "electricVehiclePerChargePoints": 3.740740740740741, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Borlänge", "län": "Dalarnas län", "emissions": {"1990": 484887.22160869, "2000": 547767.520875247, "2005": 586576.867660458, "2010": 485851.764159318, "2015": 421008.350213925, "2016": 412922.193957897, "2017": 400644.478297968, "2018": 407488.517911811, "2019": 380079.314341633, "2020": 353323.532342014, "2021": 374800.097747541}, "budget": 814717.6448844114, "emissionBudget": {"2024": 333240.8025616966, "2025": 221370.82418915292, "2026": 147055.94700730563, "2027": 97688.80623463442, "2028": 64894.36882871425, "2029": 43109.12650076115, "2030": 28637.258073405123, "2031": 19023.64108324781, "2032": 12637.345346980785, "2033": 8394.949038409406, "2034": 5576.7384227042885, "2035": 3704.609914005961, "2036": 2460.9607936920443, "2037": 1634.8085678851942, "2038": 1085.998224953955, "2039": 721.4252284772502, "2040": 479.2405257435105, "2041": 318.3579842358659, "2042": 211.48421446513333, "2043": 140.488303050688, "2044": 93.32594086976617, "2045": 61.99613099522321, "2046": 41.183836161270655, "2047": 27.358293714958908, "2048": 18.17402905506477, "2049": 12.072950730613012, "2050": 8.020023457769794}, "approximatedHistoricalEmission": {"2021": 374800.097747541, "2022": 353125.6057465002, "2023": 343183.20415409654, "2024": 333240.8025616966}, "totalApproximatedHistoricalEmission": 1050329.2600552156, "trend": {"2024": 333240.8025616966, "2025": 323298.40096929297, "2026": 313355.99937689304, "2027": 303413.5977844894, "2028": 293471.19619208574, "2029": 283528.7945996858, "2030": 273586.39300728217, "2031": 263643.99141488224, "2032": 253701.5898224786, "2033": 243759.18823007867, "2034": 233816.78663767502, "2035": 223874.38504527137, "2036": 213931.98345287144, "2037": 203989.5818604678, "2038": 194047.18026806787, "2039": 184104.77867566422, "2040": 174162.3770832643, "2041": 164219.97549086064, "2042": 154277.573898457, "2043": 144335.17230605707, "2044": 134392.77071365342, "2045": 124450.36912125349, "2046": 114507.96752884984, "2047": 104565.56593644992, "2048": 94623.16434404626, "2049": 84680.76275164261, "2050": 74738.36115924269}, "trendEmission": 5303729.1283721905, "historicalEmissionChangePercent": -1.8122062973252113, "neededEmissionChangePercent": 33.57031237248684, "hitNetZero": "2057-06-29", "budgetRunsOut": "2026-07-17", "electricCarChangePercent": 0.06932502973026199, "electricCarChangeYearly": {"2015": 0.0051813471502590676, "2016": 0.011982570806100218, "2017": 0.023108030040439053, "2018": 0.0345855694692904, "2019": 0.05200945626477541, "2020": 0.21256038647342995, "2021": 0.3398590446358653, "2022": 0.5192012288786483}, "climatePlanLink": "https://www.borlange.se/bygga-bo-och-miljo/miljo-och-klimat/miljostrategi", "climatePlanYear": 2021, "climatePlanComment": "Finns både Miljöstrategi 2021–2030 och Handlingsplan för miljöstrategin 2022.", "bicycleMetrePerCapita": 3.548200249, "totalConsumptionEmission": 6102.9, "electricVehiclePerChargePoints": 17.82442748091603, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1Ase30RwyvTk6aU2BJ2zp6jTJmWGrn-WZ/view?usp=drive_link"}, {"kommun": "Borås", "län": "Västra Götalands län", "emissions": {"1990": 393503.561780165, "2000": 289793.673588002, "2005": 302509.931723561, "2010": 312334.26211432, "2015": 242035.233593147, "2016": 242337.085214558, "2017": 237357.942494976, "2018": 229794.91540821, "2019": 228352.052588656, "2020": 210951.116307224, "2021": 211464.938310871}, "budget": 474650.9539697752, "emissionBudget": {"2024": 193865.74479513057, "2025": 128860.10233094307, "2026": 85651.67606215597, "2027": 56931.58300786841, "2028": 37841.70132794275, "2029": 25152.899036643874, "2030": 16718.813048725984, "2031": 11112.783037495386, "2032": 7386.525973974914, "2033": 4909.730153114105, "2034": 3263.4353769727527, "2035": 2169.164114431481, "2036": 1441.8158816743733, "2037": 958.3567341991056, "2038": 637.0075691760222, "2039": 423.4108539203325, "2040": 281.4358257146648, "2041": 187.06682472197167, "2042": 124.34094636920777, "2043": 82.64785039767827, "2044": 54.934978177458774, "2045": 36.5145834142911, "2046": 24.270780587409348, "2047": 16.132480100857883, "2048": 10.723054961799862, "2049": 7.127478663845733, "2050": 4.737544690813497}, "approximatedHistoricalEmission": {"2021": 211464.938310871, "2022": 205543.51004997455, "2023": 199704.62742255256, "2024": 193865.74479513057}, "totalApproximatedHistoricalEmission": 607913.4790255278, "trend": {"2024": 193865.74479513057, "2025": 188026.86216770858, "2026": 182187.9795402866, "2027": 176349.0969128646, "2028": 170510.2142854426, "2029": 164671.33165802062, "2030": 158832.44903059863, "2031": 152993.56640317477, "2032": 147154.68377575278, "2033": 141315.8011483308, "2034": 135476.9185209088, "2035": 129638.03589348681, "2036": 123799.15326606482, "2037": 117960.27063864283, "2038": 112121.38801122084, "2039": 106282.50538379885, "2040": 100443.62275637686, "2041": 94604.74012895487, "2042": 88765.85750153288, "2043": 82926.97487410903, "2044": 77088.09224668704, "2045": 71249.20961926505, "2046": 65410.32699184306, "2047": 59571.44436442107, "2048": 53732.56173699908, "2049": 47893.67910957709, "2050": 42054.7964821551}, "trendEmission": 3066967.036604712, "historicalEmissionChangePercent": -2.186800053113524, "neededEmissionChangePercent": 33.53126800863288, "hitNetZero": "2057-03-06", "budgetRunsOut": "2026-07-19", "electricCarChangePercent": 0.0688514886498573, "electricCarChangeYearly": {"2015": 0.01661392405063291, "2016": 0.02943848809740142, "2017": 0.036084381939304216, "2018": 0.04981242184243435, "2019": 0.07324494675070636, "2020": 0.24108953926398147, "2021": 0.36672231496939345, "2022": 0.5107079119571684}, "climatePlanLink": "https://www.boras.se/download/18.499cdee21538963cd3f57af7/1610014986050/Energi-%20och%20klimatstrategi%20-%20strategi.pdf", "climatePlanYear": 2020, "climatePlanComment": "Energi– och klimatstrategi 2020–2024 kopplad till Borås koldioxidbudget.", "bicycleMetrePerCapita": 1.84645402, "totalConsumptionEmission": 6052.0, "electricVehiclePerChargePoints": 17.791411042944784, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1qw6EEOaJbPcGIFmXXKMP1hVRfc6V_mqm/view?usp=drive_link"}, {"kommun": "Botkyrka", "län": "Stockholms län", "emissions": {"1990": 344831.844170531, "2000": 147615.000989295, "2005": 133673.359435064, "2010": 140457.605301456, "2015": 115712.852155797, "2016": 111611.634587102, "2017": 100737.775311239, "2018": 100574.594029972, "2019": 98525.5716080391, "2020": 88256.2790214192, "2021": 87998.058069537}, "budget": 208374.7350087472, "emissionBudget": {"2024": 72187.9741632957, "2025": 51051.76098139329, "2026": 36104.10639043097, "2027": 25533.03692553611, "2028": 18057.114268131547, "2029": 12770.097683376684, "2030": 9031.088379984909, "2031": 6386.83895372773, "2032": 4516.810167782023, "2033": 3194.314783821428, "2034": 2259.0382502505377, "2035": 1597.6051708936072, "2036": 1129.8357970622797, "2037": 799.0265377078995, "2038": 565.0762788907109, "2039": 399.62527637812104, "2040": 282.61735182689665, "2041": 199.86865765235868, "2042": 141.34829320820901, "2043": 99.96234641063567, "2044": 70.69396080503644, "2045": 49.99518592505043, "2046": 35.35689028053847, "2047": 25.004601286694285, "2048": 17.683401468445886, "2049": 12.505805787858433, "2050": 8.844179593089244}, "approximatedHistoricalEmission": {"2021": 87998.058069537, "2022": 81621.35252710618, "2023": 76904.66334520094, "2024": 72187.9741632957}, "totalApproximatedHistoricalEmission": 238619.03198872347, "trend": {"2024": 72187.9741632957, "2025": 67471.28498139046, "2026": 62754.59579948522, "2027": 58037.90661757998, "2028": 53321.21743567474, "2029": 48604.5282537695, "2030": 43887.83907186426, "2031": 39171.14988995902, "2032": 34454.46070805378, "2033": 29737.771526148543, "2034": 25021.082344243303, "2035": 20304.393162338063, "2036": 15587.703980432823, "2037": 10871.014798527583, "2038": 6154.325616622344, "2039": 1437.6364347171038, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 552910.8977024546, "historicalEmissionChangePercent": -4.366957800173508, "neededEmissionChangePercent": 29.279410354542428, "hitNetZero": "2039-04-18", "budgetRunsOut": "2027-03-24", "electricCarChangePercent": 0.0641077386781339, "electricCarChangeYearly": {"2015": 0.016700066800267203, "2016": 0.01616915422885572, "2017": 0.017333333333333333, "2018": 0.05698234349919743, "2019": 0.09377236936292055, "2020": 0.18659881255301103, "2021": 0.36717557251908395, "2022": 0.45747599451303156}, "climatePlanLink": "https://www.botkyrka.se/download/18.1fbbaae6170bff9469deb3b/1584093805113/Klimatstrategi%20f%C3%B6r%20Botkyrka.pdf", "climatePlanYear": 2018, "climatePlanComment": "Klimatstrategi 2018–2023", "bicycleMetrePerCapita": 2.586763621, "totalConsumptionEmission": 5526.3, "electricVehiclePerChargePoints": 141.61111111111111, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Boxholm", "län": "Östergötlands län", "emissions": {"1990": 58933.0044312329, "2000": 65650.1397363356, "2005": 55814.274990812, "2010": 53916.7829166791, "2015": 47471.2882137892, "2016": 49801.0854144416, "2017": 49064.3010424853, "2018": 45483.4674349998, "2019": 41522.9458462746, "2020": 36655.3573349866, "2021": 42576.6794264777}, "budget": 92594.83430505892, "emissionBudget": {"2024": 34257.16687683854, "2025": 23663.347913799455, "2026": 16345.602556763239, "2027": 11290.825115572836, "2028": 7799.206627454822, "2029": 5387.349763644723, "2030": 3721.344857523584, "2031": 2570.5417610102054, "2032": 1775.6174711243011, "2033": 1226.5186473853755, "2034": 847.2252705598321, "2035": 585.2260465874914, "2036": 404.24847735964437, "2037": 279.23711256614394, "2038": 192.88474639054115, "2039": 133.23632037389214, "2040": 92.03380463705231, "2041": 63.57291444406224, "2042": 43.91338016341184, "2043": 30.333436405108007, "2044": 20.953007049759353, "2045": 14.473417998672096, "2046": 9.997602161198675, "2047": 6.905904948145268, "2048": 4.770296155403262, "2049": 3.2951112969440235, "2050": 2.2761183175073234}, "approximatedHistoricalEmission": {"2021": 42576.6794264777, "2022": 37722.64099948527, "2023": 35989.903938161675, "2024": 34257.16687683854}, "totalApproximatedHistoricalEmission": 112129.46808930507, "trend": {"2024": 34257.16687683854, "2025": 32524.429815514944, "2026": 30791.692754191346, "2027": 29058.95569286775, "2028": 27326.218631544616, "2029": 25593.481570221018, "2030": 23860.74450889742, "2031": 22128.007447573822, "2032": 20395.27038625069, "2033": 18662.53332492709, "2034": 16929.796263603494, "2035": 15197.059202280361, "2036": 13464.322140956763, "2037": 11731.585079633165, "2038": 9998.848018309567, "2039": 8266.110956986435, "2040": 6533.373895662837, "2041": 4800.636834339239, "2042": 3067.8997730156407, "2043": 1335.1627116925083, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 338794.712446888, "historicalEmissionChangePercent": -1.3576849520338767, "neededEmissionChangePercent": 30.924387300111576, "hitNetZero": "2043-10-04", "budgetRunsOut": "2026-12-02", "electricCarChangePercent": 0.06825478883054295, "electricCarChangeYearly": {"2015": 0.011363636363636364, "2016": 0.0, "2017": 0.0, "2018": 0.03529411764705882, "2019": 0.06521739130434782, "2020": 0.2191780821917808, "2021": 0.3333333333333333, "2022": 0.49411764705882355}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 1.23972865, "totalConsumptionEmission": 6151.9, "electricVehiclePerChargePoints": 11.5, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Bromölla", "län": "Skåne län", "emissions": {"1990": 108575.732331307, "2000": 132103.673450363, "2005": 77259.2729353138, "2010": 96132.1944982896, "2015": 81293.5710279644, "2016": 75819.3034118229, "2017": 75575.1161795703, "2018": 80506.6077286378, "2019": 85564.6133186708, "2020": 65351.2315084336, "2021": 69760.3160810483}, "budget": 158149.7393273252, "emissionBudget": {"2024": 66507.30599907273, "2025": 43675.095251660794, "2026": 28681.269171664222, "2027": 18834.88053219931, "2028": 12368.79450971786, "2029": 8122.540377258379, "2030": 5334.041415948598, "2031": 3502.844738908935, "2032": 2300.3048360695843, "2033": 1510.6014491790695, "2034": 992.006234339315, "2035": 651.4467264034871, "2036": 427.8025910033344, "2037": 280.93633669718065, "2038": 184.48982529939008, "2039": 121.15376757292597, "2040": 79.5612190173346, "2041": 52.24755035136715, "2042": 34.31076787704677, "2043": 22.531750950918582, "2044": 14.79651527280008, "2045": 9.716815381774868, "2046": 6.380995756281825, "2047": 4.190375677823087, "2048": 2.7518037923791088, "2049": 1.8070990989728943, "2050": 1.1867151148466615}, "approximatedHistoricalEmission": {"2021": 69760.3160810483, "2022": 69760.62110681739, "2023": 68133.9635529453, "2024": 66507.30599907273}, "totalApproximatedHistoricalEmission": 206028.3956998232, "trend": {"2024": 66507.30599907273, "2025": 64880.64844520064, "2026": 63253.99089132855, "2027": 61627.33333745645, "2028": 60000.675783583894, "2029": 58374.0182297118, "2030": 56747.36067583971, "2031": 55120.70312196715, "2032": 53494.045568095054, "2033": 51867.38801422296, "2034": 50240.73046035087, "2035": 48614.07290647831, "2036": 46987.415352606215, "2037": 45360.75779873412, "2038": 43734.10024486203, "2039": 42107.44269098947, "2040": 40480.785137117375, "2041": 38854.12758324528, "2042": 37227.47002937319, "2043": 35600.81247550063, "2044": 33974.154921628535, "2045": 32347.49736775644, "2046": 30720.839813884348, "2047": 29094.18226001179, "2048": 27467.524706139695, "2049": 25840.8671522676, "2050": 24214.209598395042}, "trendEmission": 1179379.702767086, "historicalEmissionChangePercent": -1.8541311699235605, "neededEmissionChangePercent": 34.33037980478455, "hitNetZero": "2064-11-09", "budgetRunsOut": "2026-06-14", "electricCarChangePercent": 0.07115187962866446, "electricCarChangeYearly": {"2015": 0.010752688172043012, "2016": 0.0, "2017": 0.011857707509881422, "2018": 0.02459016393442623, "2019": 0.07112970711297072, "2020": 0.2822085889570552, "2021": 0.28448275862068967, "2022": 0.538860103626943}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 6.400184489, "totalConsumptionEmission": 5789.3, "electricVehiclePerChargePoints": 30.818181818181817, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Bräcke", "län": "Jämtlands län", "emissions": {"1990": 60934.9533866909, "2000": 54255.0906105114, "2005": 48848.1571824565, "2010": 44798.8158538266, "2015": 39707.1918065538, "2016": 39210.3181373815, "2017": 34283.9327797193, "2018": 32746.4526781587, "2019": 32955.3812540454, "2020": 29497.7606879384, "2021": 27906.4222363986}, "budget": 70001.89181700346, "emissionBudget": {"2024": 21724.78526823595, "2025": 15928.470398753096, "2026": 11678.650265644505, "2027": 8562.70995348777, "2028": 6278.122906312776, "2029": 4603.078632917454, "2030": 3374.9471326080507, "2031": 2474.489153073645, "2032": 1814.279254782694, "2033": 1330.217677554266, "2034": 975.3068966716514, "2035": 715.0886345490494, "2036": 524.2983075442932, "2037": 384.41208825415197, "2038": 281.84842764046886, "2039": 206.64942282169906, "2040": 151.5140045663671, "2041": 111.08907668977331, "2042": 81.44978409821341, "2043": 59.718448719956875, "2044": 43.78517582339844, "2045": 32.10300439778907, "2046": 23.537712752856386, "2047": 17.257696967269926, "2048": 12.653230487655406, "2049": 9.277265794930685, "2050": 6.802030573438071}, "approximatedHistoricalEmission": {"2021": 27906.4222363986, "2022": 25735.926349309273, "2023": 23730.355808772612, "2024": 21724.78526823595}, "totalApproximatedHistoricalEmission": 74281.88591039917, "trend": {"2024": 21724.78526823595, "2025": 19719.21472769929, "2026": 17713.64418716263, "2027": 15708.07364662597, "2028": 13702.503106089309, "2029": 11696.932565552648, "2030": 9691.362025015987, "2031": 7685.791484479327, "2032": 5680.220943942666, "2033": 3674.6504034060054, "2034": 1669.0798628693447, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 117803.86558696115, "historicalEmissionChangePercent": -5.59141314228076, "neededEmissionChangePercent": 26.680654367422957, "hitNetZero": "2034-10-28", "budgetRunsOut": "2027-12-09", "electricCarChangePercent": 0.07074002442836098, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.060240963855421686, "2017": 0.01, "2018": 0.03125, "2019": 0.0821917808219178, "2020": 0.1836734693877551, "2021": 0.40384615384615385, "2022": 0.5217391304347826}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 0.9315229039, "totalConsumptionEmission": 6315.8, "electricVehiclePerChargePoints": 4.7272727272727275, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Burlöv", "län": "Skåne län", "emissions": {"1990": 156776.347181391, "2000": 83763.6704542442, "2005": 65737.8882582761, "2010": 84761.9704802872, "2015": 76189.4828703367, "2016": 77789.0439193744, "2017": 75514.5306183496, "2018": 67433.4674872992, "2019": 68669.4409080922, "2020": 57710.1044931783, "2021": 51015.1708721754}, "budget": 140509.25125170377, "emissionBudget": {"2024": 41504.626333300024, "2025": 30889.544336076993, "2026": 22989.33958899229, "2027": 17109.66432485516, "2028": 12733.754798654189, "2029": 9477.013002335527, "2030": 7053.204405658013, "2031": 5249.300847823436, "2032": 3906.7575255376646, "2033": 2907.5785148937894, "2034": 2163.9461279615753, "2035": 1610.5026298459027, "2036": 1198.6059575262336, "2037": 892.0545764987932, "2038": 663.9057335363063, "2039": 494.107462294912, "2040": 367.73621910913465, "2041": 273.68525505888516, "2042": 203.68844553333912, "2043": 151.5937818238013, "2044": 112.82267203458463, "2045": 83.96752935300738, "2046": 62.49227977411216, "2047": 46.509466950584226, "2048": 34.61436394777804, "2049": 25.76151201178592, "2050": 19.172835362066262}, "approximatedHistoricalEmission": {"2021": 51015.1708721754, "2022": 50256.47665880993, "2023": 45880.55149605498, "2024": 41504.626333300024}, "totalApproximatedHistoricalEmission": 142396.9267576026, "trend": {"2024": 41504.626333300024, "2025": 37128.70117054507, "2026": 32752.77600779012, "2027": 28376.850845035166, "2028": 24000.925682280213, "2029": 19625.00051952526, "2030": 15249.075356770307, "2031": 10873.150194015354, "2032": 6497.225031260401, "2033": 2121.2998685073107, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 197377.3178423792, "historicalEmissionChangePercent": -6.208913878116392, "neededEmissionChangePercent": 25.57565971556846, "hitNetZero": "2033-06-23", "budgetRunsOut": "2028-05-30", "electricCarChangePercent": 0.047531882163162835, "electricCarChangeYearly": {"2015": 0.006872852233676976, "2016": 0.0064, "2017": 0.014331210191082803, "2018": 0.028346456692913385, "2019": 0.03501945525291829, "2020": 0.16115702479338842, "2021": 0.25443786982248523, "2022": 0.33620689655172414}, "climatePlanLink": "https://burlov.se/download/18.1c32a37617b4106947ea55dd/1629702323432/Milj%C3%B6program%202030.pdf", "climatePlanYear": 2020, "climatePlanComment": "Miljöprogram 2030", "bicycleMetrePerCapita": 3.346646362, "totalConsumptionEmission": 5458.4, "electricVehiclePerChargePoints": 10.923076923076923, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1AVb6qkh7b2xX05KYsEwHKjTT8zR55-JK/view?usp=drive_link"}, {"kommun": "Båstad", "län": "Skåne län", "emissions": {"1990": 118882.868281184, "2000": 99047.844728029, "2005": 74665.5136555171, "2010": 61576.3325627239, "2015": 50227.5873973023, "2016": 48141.1963871698, "2017": 46107.1893545121, "2018": 44494.9645300312, "2019": 44069.8914127698, "2020": 40720.8820134157, "2021": 40976.4441285849}, "budget": 93235.59371252774, "emissionBudget": {"2024": 35398.73149724072, "2025": 24215.82315538954, "2026": 16565.737423071492, "2027": 11332.41082118965, "2028": 7752.358481872218, "2029": 5303.290092438341, "2030": 3627.9134756630115, "2031": 2481.8095856502127, "2032": 1697.7744537580606, "2033": 1161.4259661577976, "2034": 794.516769809872, "2035": 543.5188431316222, "2036": 371.814345605102, "2037": 254.35347705925196, "2038": 173.99998697426187, "2039": 119.03118375688828, "2040": 81.42772280012811, "2041": 55.70367219027848, "2042": 38.10617549871016, "2043": 26.067951250652367, "2044": 17.832754757280462, "2045": 12.199161306370428, "2046": 8.345291493345293, "2047": 5.708908043746678, "2048": 3.9053915705574456, "2049": 2.6716288303308255, "2050": 1.8276273910316347}, "approximatedHistoricalEmission": {"2021": 40976.4441285849, "2022": 38586.685532626696, "2023": 36992.708514933474, "2024": 35398.73149724072}, "totalApproximatedHistoricalEmission": 113766.98186047298, "trend": {"2024": 35398.73149724072, "2025": 33804.7544795475, "2026": 32210.77746185474, "2027": 30616.80044416152, "2028": 29022.823426468764, "2029": 27428.846408775542, "2030": 25834.869391082786, "2031": 24240.892373389564, "2032": 22646.91535569681, "2033": 21052.938338003587, "2034": 19458.96132031083, "2035": 17864.98430261761, "2036": 16271.007284924854, "2037": 14677.030267231632, "2038": 13083.053249538876, "2039": 11489.076231845655, "2040": 9895.099214152899, "2041": 8301.122196459677, "2042": 6707.145178766921, "2043": 5113.1681610737, "2044": 3519.1911433809437, "2045": 1925.2141256877221, "2046": 331.2371079949662, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 393195.27321158745, "historicalEmissionChangePercent": -3.300449527495998, "neededEmissionChangePercent": 31.591268581821563, "hitNetZero": "2046-03-11", "budgetRunsOut": "2026-10-24", "electricCarChangePercent": 0.08030708204415621, "electricCarChangeYearly": {"2015": 0.019021739130434784, "2016": 0.03051643192488263, "2017": 0.029017857142857144, "2018": 0.061946902654867256, "2019": 0.10918114143920596, "2020": 0.3007518796992481, "2021": 0.42574257425742573, "2022": 0.5771971496437055}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Nytt miljö– och energiprogram är under utveckling.", "bicycleMetrePerCapita": 4.70562181, "totalConsumptionEmission": 6894.6, "electricVehiclePerChargePoints": 7.447368421052632, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Dals-Ed", "län": "Västra Götalands län", "emissions": {"1990": 32063.9858049397, "2000": 26278.8376163652, "2005": 20358.7427723996, "2010": 17741.7528441709, "2015": 14875.0383304904, "2016": 14327.8407207689, "2017": 14856.7494945082, "2018": 13358.305055505, "2019": 13405.5255085373, "2020": 12400.0181896865, "2021": 12572.1630489804}, "budget": 28377.758637529867, "emissionBudget": {"2024": 11067.485429925378, "2025": 7493.2749607439655, "2026": 5073.344798402962, "2027": 3434.9236586571114, "2028": 2325.6256000018902, "2029": 1574.5719465272273, "2030": 1066.0687665239518, "2031": 721.7851286278128, "2032": 488.68683547213124, "2033": 330.86692104307724, "2034": 224.01446385344445, "2035": 151.6696799345881, "2036": 102.68842205880931, "2037": 69.5255111600154, "2038": 47.07246060605665, "2039": 31.870553851937576, "2040": 21.578056250974083, "2041": 14.609489177167053, "2042": 9.891399463198933, "2043": 6.6970023492323305, "2044": 4.534225984147921, "2045": 3.069911611674859, "2046": 2.0784930738883736, "2047": 1.4072501116229188, "2048": 0.9527830049286321, "2049": 0.6450846562264013, "2050": 0.43675654534780955}, "approximatedHistoricalEmission": {"2021": 12572.1630489804, "2022": 11940.02077940153, "2023": 11503.753104663454, "2024": 11067.485429925378}, "totalApproximatedHistoricalEmission": 35263.59812351788, "trend": {"2024": 11067.485429925378, "2025": 10631.217755187303, "2026": 10194.950080449227, "2027": 9758.682405711152, "2028": 9322.414730973076, "2029": 8886.147056235, "2030": 8449.879381496925, "2031": 8013.611706758849, "2032": 7577.344032020774, "2033": 7141.076357282698, "2034": 6704.808682544739, "2035": 6268.541007806663, "2036": 5832.273333068588, "2037": 5396.005658330512, "2038": 4959.737983592437, "2039": 4523.470308854361, "2040": 4087.2026341162855, "2041": 3650.93495937821, "2042": 3214.6672846401343, "2043": 2778.3996099020587, "2044": 2342.131935163983, "2045": 1905.8642604259076, "2046": 1469.596585687832, "2047": 1033.3289109497564, "2048": 597.0612362116808, "2049": 160.79356147360522, "2050": 0}, "trendEmission": 140433.88417322445, "historicalEmissionChangePercent": -2.6386739337043927, "neededEmissionChangePercent": 32.29469324185513, "hitNetZero": "2049-05-08", "budgetRunsOut": "2026-09-16", "electricCarChangePercent": 0.07013240027920878, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0070921985815602835, "2017": 0.0125, "2018": 0.03, "2019": 0.04838709677419355, "2020": 0.17346938775510204, "2021": 0.26436781609195403, "2022": 0.5862068965517241}, "climatePlanLink": "https://www.dalsed.se/politik-demokrati/utvecklingsplan-2020-2023/miljo/", "climatePlanYear": 2020, "climatePlanComment": "Utvecklingsplan 2020–2023. Planerar att ta fram fler strategier.", "bicycleMetrePerCapita": 3.066064022, "totalConsumptionEmission": 6512.5, "electricVehiclePerChargePoints": 12.666666666666666, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Danderyd", "län": "Stockholms län", "emissions": {"1990": 101804.096366308, "2000": 90544.8450252397, "2005": 76940.0535460281, "2010": 62875.7333851056, "2015": 54981.9948377538, "2016": 52652.7049773373, "2017": 37658.9483981093, "2018": 36488.299946612, "2019": 35697.171305278, "2020": 32298.236225675, "2021": 32705.8422088023}, "budget": 83680.63494320582, "emissionBudget": {"2024": 16890.63416786492, "2025": 13803.371666248777, "2026": 11280.397613435738, "2027": 9218.571621044208, "2028": 7533.605254401858, "2029": 6156.616280942066, "2030": 5031.312731525693, "2031": 4111.691657765464, "2032": 3360.1585094495886, "2033": 2745.990251312399, "2034": 2244.0793906290737, "2035": 1833.9075708806097, "2036": 1498.706771506164, "2037": 1224.773823186673, "2038": 1000.9102157160231, "2039": 817.9642975370846, "2040": 668.4571518402431, "2041": 546.2768548600515, "2042": 446.4286175026365, "2043": 364.8305959738542, "2044": 298.1470240488148, "2045": 243.65184534998556, "2046": 199.11727085605042, "2047": 162.7227058190803, "2048": 132.98032297874065, "2049": 108.67423947086692, "2050": 88.81081095328217}, "approximatedHistoricalEmission": {"2021": 32705.8422088023, "2022": 24712.003630937077, "2023": 20801.318899401464, "2024": 16890.63416786492}, "totalApproximatedHistoricalEmission": 70311.56071867215, "trend": {"2024": 16890.63416786492, "2025": 12979.949436329305, "2026": 9069.26470479276, "2027": 5158.579973256215, "2028": 1247.895241720602, "2029": 0, "2030": 0, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 36901.00644003134, "historicalEmissionChangePercent": -7.7082440768367775, "neededEmissionChangePercent": 18.277954936054297, "hitNetZero": "2028-04-25", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.104575205822188, "electricCarChangeYearly": {"2015": 0.05960591133004926, "2016": 0.07625272331154684, "2017": 0.11531531531531532, "2018": 0.2683473389355742, "2019": 0.29680616740088106, "2020": 0.5162790697674419, "2021": 0.6462818003913894, "2022": 0.731437598736177}, "climatePlanLink": "https://www.danderyd.se/contentassets/ca8882c4a3184e3abe2d6c966f612bd4/201214_miljo-klimatprogram_final_web.pdf", "climatePlanYear": 2020, "climatePlanComment": "Miljö– och klimatprogram 2021–2030", "bicycleMetrePerCapita": 1.840451379, "totalConsumptionEmission": 8185.7, "electricVehiclePerChargePoints": 47.44615384615385, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Degerfors", "län": "Örebro län", "emissions": {"1990": 81326.1660660495, "2000": 87057.5558713049, "2005": 65205.4910016564, "2010": 57661.1536787506, "2015": 57234.7608648746, "2016": 56729.4785033588, "2017": 55439.9580855044, "2018": 55226.1299506187, "2019": 57591.1004307588, "2020": 50802.9512618799, "2021": 52284.4338444058}, "budget": 114140.89884246064, "emissionBudget": {"2024": 49782.781877534, "2025": 32185.536475508874, "2026": 20808.57515686157, "2027": 13453.148447229993, "2028": 8697.722058279742, "2029": 5623.246431853833, "2030": 3635.5381583222193, "2031": 2350.446109874573, "2032": 1519.6091128291393, "2033": 982.4568391898126, "2034": 635.1774497283922, "2035": 410.65457183459745, "2036": 265.4961655845422, "2037": 171.64843343929883, "2038": 110.97404980330471, "2039": 71.74688101130538, "2040": 46.385753642173746, "2041": 29.989291668489322, "2042": 19.388660184665632, "2043": 12.535145808442996, "2044": 8.104215502379015, "2045": 5.239532903140474, "2046": 3.387459900965464, "2047": 2.1900586927836883, "2048": 1.4159155290577408, "2049": 0.9154169210317497, "2050": 0.5918348390944693}, "approximatedHistoricalEmission": {"2021": 52284.4338444058, "2022": 51536.55996318464, "2023": 50659.67092035944, "2024": 49782.781877534}, "totalApproximatedHistoricalEmission": 153229.83874451398, "trend": {"2024": 49782.781877534, "2025": 48905.89283470856, "2026": 48029.003791883355, "2027": 47152.11474905792, "2028": 46275.22570623271, "2029": 45398.33666340727, "2030": 44521.44762058207, "2031": 43644.55857775663, "2032": 42767.669534931425, "2033": 41890.78049210599, "2034": 41013.89144928078, "2035": 40137.00240645534, "2036": 39260.113363629906, "2037": 38383.2243208047, "2038": 37506.33527797926, "2039": 36629.44623515406, "2040": 35752.55719232862, "2041": 34875.66814950341, "2042": 33998.779106677976, "2043": 33121.89006385277, "2044": 32245.001021027332, "2045": 31368.111978202127, "2046": 30491.22293537669, "2047": 29614.333892551484, "2048": 28737.444849726046, "2049": 27860.555806900607, "2050": 26983.666764075402}, "trendEmission": 997963.8323409217, "historicalEmissionChangePercent": -1.3549916450790163, "neededEmissionChangePercent": 35.34805556932208, "hitNetZero": "2080-09-24", "budgetRunsOut": "2026-05-05", "electricCarChangePercent": 0.059634440124409514, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.005319148936170213, "2018": 0.022058823529411766, "2019": 0.0425531914893617, "2020": 0.140625, "2021": 0.3106060606060606, "2022": 0.43283582089552236}, "climatePlanLink": "https://degerfors.se/download/18.53e66ade178ef85bf04d94/1624438767997/Energi-%20och%20klimatprogram%20-2021-06-04.pdf", "climatePlanYear": 2021, "climatePlanComment": "Energi– och klimatprogram 2021–2030. Status oklart, vattenstämplat \"Samrådsunderlag\".", "bicycleMetrePerCapita": 4.576541722, "totalConsumptionEmission": 6230.0, "electricVehiclePerChargePoints": 21.666666666666668, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Dorotea", "län": "Västerbottens län", "emissions": {"1990": 18147.3241460067, "2000": 18858.4763029629, "2005": 13580.8296140668, "2010": 13423.5679479049, "2015": 11713.8879008829, "2016": 10689.8194355143, "2017": 11978.783450517, "2018": 13040.2546229626, "2019": 12512.7952662657, "2020": 11875.9936139887, "2021": 11311.794475375}, "budget": 24623.811190934724, "emissionBudget": {"2024": 12239.064087109684, "2025": 7445.359737390907, "2026": 4529.217366999869, "2027": 2755.247655061182, "2028": 1676.093025702725, "2029": 1019.6135456821335, "2030": 620.2589991105182, "2031": 377.32063055341115, "2032": 229.53453064831064, "2033": 139.6321761751173, "2034": 84.9420981162622, "2035": 51.67261751577911, "2036": 31.433876253885657, "2037": 19.122092586907698, "2038": 11.632495526448817, "2039": 7.076367377569209, "2040": 4.304749152791007, "2041": 2.6186974586981373, "2042": 1.5930257807811956, "2043": 0.96908145299654, "2044": 0.5895189355198982, "2045": 0.3586206033165669, "2046": 0.21815878909761885, "2047": 0.13271199931178274, "2048": 0.08073236395463132, "2049": 0.04911172029283403, "2050": 0.02987601194828137}, "approximatedHistoricalEmission": {"2021": 11311.794475375, "2022": 12117.629808811515, "2023": 12178.3469479606, "2024": 12239.064087109684}, "totalApproximatedHistoricalEmission": 36071.40603801445, "trend": {"2024": 12239.064087109684, "2025": 12299.781226258769, "2026": 12360.498365407853, "2027": 12421.215504556938, "2028": 12481.932643706023, "2029": 12542.649782855107, "2030": 12603.366922004192, "2031": 12664.084061153277, "2032": 12724.801200302347, "2033": 12785.518339451432, "2034": 12846.235478600516, "2035": 12906.9526177496, "2036": 12967.669756898686, "2037": 13028.38689604777, "2038": 13089.104035196855, "2039": 13149.82117434594, "2040": 13210.538313495024, "2041": 13271.255452644109, "2042": 13331.972591793194, "2043": 13392.689730942278, "2044": 13453.406870091363, "2045": 13514.124009240448, "2046": 13574.841148389532, "2047": 13635.558287538617, "2048": 13696.275426687702, "2049": 13756.992565836787, "2050": 13817.709704985871}, "trendEmission": 338738.0592972421, "historicalEmissionChangePercent": -0.28467183978820093, "neededEmissionChangePercent": 39.167246086794826, "hitNetZero": "Aldrig", "budgetRunsOut": "2026-01-01", "electricCarChangePercent": 0.03745039682539682, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.0625, "2018": 0.0, "2019": 0.0, "2020": 0.1111111111111111, "2021": 0.2, "2022": 0.2857142857142857}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.000001742, "totalConsumptionEmission": 6529.4, "electricVehiclePerChargePoints": 1.1111111111111112, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Eda", "län": "Värmlands län", "emissions": {"1990": 65058.4488859165, "2000": 56836.4605431543, "2005": 52475.2762858575, "2010": 39603.7371275617, "2015": 54373.5712939959, "2016": 55631.5805948473, "2017": 55136.287591058, "2018": 51463.6105548356, "2019": 52963.1902786932, "2020": 50721.4225511536, "2021": 54733.137085012}, "budget": 111093.85001057097, "emissionBudget": {"2024": 51235.81798707682, "2025": 32305.737602038946, "2026": 20369.747629969235, "2027": 12843.743845751089, "2028": 8098.370140460995, "2029": 5106.268057004757, "2030": 3219.6569208064016, "2031": 2030.0913645683477, "2032": 1280.034193041523, "2033": 807.100391614074, "2034": 508.90128223509106, "2035": 320.8776971878302, "2036": 202.32312266998872, "2037": 127.57086679967539, "2038": 80.43730168481905, "2039": 50.71815897037592, "2040": 31.979337887583593, "2041": 20.163942707888467, "2042": 12.713977598794202, "2043": 8.016548584984928, "2044": 5.054677084024351, "2045": 3.187127247206591, "2046": 2.00958041849815, "2047": 1.2671014192956156, "2048": 0.7989458854206295, "2049": 0.5037596186936582, "2050": 0.31763572234028514}, "approximatedHistoricalEmission": {"2021": 54733.137085012, "2022": 52015.44056041294, "2023": 51625.62927374488, "2024": 51235.81798707682}, "totalApproximatedHistoricalEmission": 156625.54737020223, "trend": {"2024": 51235.81798707682, "2025": 50846.00670040888, "2026": 50456.19541374082, "2027": 50066.38412707276, "2028": 49676.57284040481, "2029": 49286.76155373675, "2030": 48896.95026706869, "2031": 48507.13898040075, "2032": 48117.32769373269, "2033": 47727.51640706463, "2034": 47337.705120396684, "2035": 46947.89383372862, "2036": 46558.08254706056, "2037": 46168.2712603925, "2038": 45778.45997372456, "2039": 45388.6486870565, "2040": 44998.83740038844, "2041": 44609.026113720494, "2042": 44219.214827052434, "2043": 43829.40354038437, "2044": 43439.59225371643, "2045": 43049.78096704837, "2046": 42659.96968038031, "2047": 42270.158393712365, "2048": 41880.347107044305, "2049": 41490.535820376244, "2050": 41100.7245337083}, "trendEmission": 1200375.0527702065, "historicalEmissionChangePercent": 0.22545456203236502, "neededEmissionChangePercent": 36.94696626061985, "hitNetZero": "2155-05-08", "budgetRunsOut": "2026-03-10", "electricCarChangePercent": 0.04019340700337465, "electricCarChangeYearly": {"2015": 0.017341040462427744, "2016": 0.0, "2017": 0.0055248618784530384, "2018": 0.0, "2019": 0.03937007874015748, "2020": 0.1171875, "2021": 0.21904761904761905, "2022": 0.2897196261682243}, "climatePlanLink": "https://eda.se/Userfiles/Filarkiv/1294/Dokument/Hallbarhetsstrategi_KF_2020-12-16_T.pdf", "climatePlanYear": 2020, "climatePlanComment": "Hållbarhetsstrategi.", "bicycleMetrePerCapita": 2.101732193, "totalConsumptionEmission": 6451.3, "electricVehiclePerChargePoints": 2.183333333333333, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Ekerö", "län": "Stockholms län", "emissions": {"1990": 88432.8579661668, "2000": 77156.5751207799, "2005": 66312.8369449965, "2010": 55667.9298192357, "2015": 48666.1780178723, "2016": 47380.3512850067, "2017": 44473.261520818, "2018": 44615.8778222065, "2019": 43867.6415060195, "2020": 38769.7004600732, "2021": 41621.0163834535}, "budget": 91652.49055209103, "emissionBudget": {"2024": 35850.05959193781, "2025": 24244.58222523055, "2026": 16396.06109352614, "2027": 11088.284256054452, "2028": 7498.755160872813, "2029": 5071.23804406557, "2030": 3429.563273884065, "2031": 2319.33585987712, "2032": 1568.5142396628623, "2033": 1060.7506064928054, "2034": 717.3615774229144, "2035": 485.13536510165784, "2036": 328.0860445827399, "2037": 221.87715098319416, "2038": 150.05048505195998, "2039": 101.47573990633167, "2040": 68.62574143610186, "2041": 46.41003250630996, "2042": 31.38605240778721, "2043": 21.225675409954327, "2044": 14.354442882946286, "2045": 9.707584163994838, "2046": 6.5650190027926, "2047": 4.439773457425455, "2048": 3.0025180955111836, "2049": 2.0305348910977568, "2050": 1.373204694462772}, "approximatedHistoricalEmission": {"2021": 41621.0163834535, "2022": 38633.088632503524, "2023": 37241.57411222067, "2024": 35850.05959193781}, "totalApproximatedHistoricalEmission": 114610.20073241985, "trend": {"2024": 35850.05959193781, "2025": 34458.54507165495, "2026": 33067.030551372096, "2027": 31675.516031088773, "2028": 30284.001510805916, "2029": 28892.48699052306, "2030": 27500.9724702402, "2031": 26109.457949957345, "2032": 24717.943429674488, "2033": 23326.428909391165, "2034": 21934.914389108308, "2035": 20543.39986882545, "2036": 19151.885348542593, "2037": 17760.370828259736, "2038": 16368.85630797688, "2039": 14977.341787693556, "2040": 13585.8272674107, "2041": 12194.312747127842, "2042": 10802.798226844985, "2043": 9411.283706562128, "2044": 8019.769186279271, "2045": 6628.254665995948, "2046": 5236.740145713091, "2047": 3845.225625430234, "2048": 2453.7111051473767, "2049": 1062.1965848645195, "2050": 0}, "trendEmission": 461934.3005024595, "historicalEmissionChangePercent": -2.4001428015437347, "neededEmissionChangePercent": 32.37226799287434, "hitNetZero": "2049-09-29", "budgetRunsOut": "2026-09-12", "electricCarChangePercent": 0.09099684043102808, "electricCarChangeYearly": {"2015": 0.03741496598639456, "2016": 0.0464, "2017": 0.06019417475728155, "2018": 0.10674157303370786, "2019": 0.19585987261146498, "2020": 0.3673469387755102, "2021": 0.5270049099836334, "2022": 0.64171974522293}, "climatePlanLink": "https://medborgare.ekero.se/welcome-sv/namnder-styrelser/kommunfullmaktige/mote-2020-04-21/agenda/energistrategi-for-ekero-kommun-2020-03-23pdf?downloadMode=open", "climatePlanYear": 2020, "climatePlanComment": "Energistrategi 2020–2030. Särskild klimatplan saknas.", "bicycleMetrePerCapita": 2.383422446, "totalConsumptionEmission": 6275.4, "electricVehiclePerChargePoints": 119.21428571428571, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Eksjö", "län": "Jönköpings län", "emissions": {"1990": 86943.1743978703, "2000": 76505.1950563931, "2005": 74167.0454051176, "2010": 81017.7737426754, "2015": 72284.5187380159, "2016": 75052.9097222599, "2017": 75190.5206052346, "2018": 70123.2657533242, "2019": 68877.0914653776, "2020": 64748.9372031957, "2021": 66296.8699431275}, "budget": 145916.34077687195, "emissionBudget": {"2024": 60749.661798079964, "2025": 40062.04507900874, "2026": 26419.364460778852, "2027": 17422.545881892227, "2028": 11489.493074569262, "2029": 7576.874930074104, "2030": 4996.655059834977, "2031": 3295.10015902167, "2032": 2172.990716382017, "2033": 1433.003072927647, "2034": 945.009931031417, "2035": 623.1973863974355, "2036": 410.97449842533206, "2037": 271.02173732198514, "2038": 178.72832105754702, "2039": 117.86439369658024, "2040": 77.72699491195637, "2041": 51.25793760578756, "2042": 33.80262122027124, "2043": 22.291517269944123, "2044": 14.700390805734965, "2045": 9.694337412048167, "2046": 6.393039416474076, "2047": 4.215961467340366, "2048": 2.7802630229834713, "2049": 1.833475599065562, "2050": 1.209106025070063}, "approximatedHistoricalEmission": {"2021": 66296.8699431275, "2022": 63955.68469541194, "2023": 62352.67324674595, "2024": 60749.661798079964}, "totalApproximatedHistoricalEmission": 189831.62381276162, "trend": {"2024": 60749.661798079964, "2025": 59146.65034941351, "2026": 57543.63890074752, "2027": 55940.62745208107, "2028": 54337.61600341508, "2029": 52734.604554749094, "2030": 51131.59310608264, "2031": 49528.58165741665, "2032": 47925.5702087502, "2033": 46322.55876008421, "2034": 44719.547311418224, "2035": 43116.53586275177, "2036": 41513.52441408578, "2037": 39910.51296541933, "2038": 38307.50151675334, "2039": 36704.490068087354, "2040": 35101.4786194209, "2041": 33498.46717075491, "2042": 31895.45572208846, "2043": 30292.444273422472, "2044": 28689.432824756484, "2045": 27086.42137609003, "2046": 25483.409927424043, "2047": 23880.39847875759, "2048": 22277.387030091602, "2049": 20674.375581425615, "2050": 19071.36413275916}, "trendEmission": 1037673.3371009075, "historicalEmissionChangePercent": -1.350995714705207, "neededEmissionChangePercent": 34.0538796542322, "hitNetZero": "2061-11-14", "budgetRunsOut": "2026-06-26", "electricCarChangePercent": 0.059804570479512535, "electricCarChangeYearly": {"2015": 0.005319148936170213, "2016": 0.008287292817679558, "2017": 0.013550135501355014, "2018": 0.016129032258064516, "2019": 0.05352112676056338, "2020": 0.19727891156462585, "2021": 0.2703488372093023, "2022": 0.45170454545454547}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Ny plan antas under 2023.", "bicycleMetrePerCapita": 3.939870961, "totalConsumptionEmission": 6054.3, "electricVehiclePerChargePoints": 45.333333333333336, "procurementScore": "2", "procurementLink": "https://eksjo.se/download/18.1620518918d79e0cd832678/1707475042339/H%C3%A5llbarhetsbokslut%20Eksj%C3%B6%20kommun%202022.pdf"}, {"kommun": "Emmaboda", "län": "Kalmar län", "emissions": {"1990": 51740.2708597393, "2000": 49917.3334331203, "2005": 45916.3975636988, "2010": 34678.5773321711, "2015": 30029.1167464135, "2016": 29529.8970730771, "2017": 28631.6000430844, "2018": 27797.4096084832, "2019": 27735.5915754512, "2020": 24547.163849051, "2021": 24807.5654940032}, "budget": 57196.03350726003, "emissionBudget": {"2024": 21898.450197170023, "2025": 14932.637878711515, "2026": 10182.62351942817, "2027": 6943.570357801941, "2028": 4734.847480293891, "2029": 3228.7108081874903, "2030": 2201.670386700537, "2031": 1501.3275513502135, "2032": 1023.761063444692, "2033": 698.1066284188374, "2034": 476.0416097507167, "2035": 324.61461471483517, "2036": 221.35596117667382, "2037": 150.9434859902808, "2038": 102.92894685006132, "2039": 70.18764692068206, "2040": 47.8612278763386, "2041": 32.636756385628544, "2042": 22.255130397551984, "2043": 15.17585948676387, "2044": 10.348477274585377, "2045": 7.056666674860357, "2046": 4.811968296280559, "2047": 3.2812997908630113, "2048": 2.2375310173676715, "2049": 1.5257810540882186, "2050": 1.0404360015323142}, "approximatedHistoricalEmission": {"2021": 24807.5654940032, "2022": 23793.173673806945, "2023": 22845.8119354886, "2024": 21898.450197170023}, "totalApproximatedHistoricalEmission": 69991.99345488215, "trend": {"2024": 21898.450197170023, "2025": 20951.08845885168, "2026": 20003.7267205331, "2027": 19056.364982214756, "2028": 18109.00324389618, "2029": 17161.641505577834, "2030": 16214.279767259257, "2031": 15266.918028940912, "2032": 14319.556290622335, "2033": 13372.19455230399, "2034": 12424.832813985413, "2035": 11477.471075667068, "2036": 10530.109337348724, "2037": 9582.747599030146, "2038": 8635.385860711802, "2039": 7688.024122393224, "2040": 6740.66238407488, "2041": 5793.300645756302, "2042": 4845.938907437958, "2043": 3898.5771691193804, "2044": 2951.215430801036, "2045": 2003.8536924824584, "2046": 1056.4919541641138, "2047": 109.13021584553644, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 253141.7398576031, "historicalEmissionChangePercent": -3.0458898309553963, "neededEmissionChangePercent": 31.809613263676134, "hitNetZero": "2047-02-06", "budgetRunsOut": "2026-10-12", "electricCarChangePercent": 0.05328922529549373, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.009615384615384616, "2017": 0.015306122448979591, "2018": 0.024539877300613498, "2019": 0.007462686567164179, "2020": 0.11764705882352941, "2021": 0.28688524590163933, "2022": 0.4}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.326560451, "totalConsumptionEmission": 5993.2, "electricVehiclePerChargePoints": 5.5625, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Enköping", "län": "Uppsala län", "emissions": {"1990": 211001.646452488, "2000": 187609.477783717, "2005": 186630.06554984, "2010": 200300.254678354, "2015": 178793.3990349, "2016": 173353.080446327, "2017": 166792.171631342, "2018": 167906.257726478, "2019": 166039.827620591, "2020": 151851.612280385, "2021": 148655.679597746}, "budget": 341671.92239182827, "emissionBudget": {"2024": 136019.91005094722, "2025": 91350.18814960498, "2026": 61350.26020707266, "2027": 41202.481392938425, "2028": 27671.34918752515, "2029": 18583.91873430178, "2030": 12480.852783240129, "2031": 8382.068842638284, "2032": 5629.349156098905, "2033": 3780.6384695949437, "2034": 2539.055020649366, "2035": 1705.2147275471866, "2036": 1145.2123894109875, "2037": 769.1180445919127, "2038": 516.535248820643, "2039": 346.902097994294, "2040": 232.97745094377657, "2041": 156.46631416207987, "2042": 105.08187538447545, "2043": 70.57238226293275, "2044": 47.396005448541, "2045": 31.830884270120688, "2046": 21.377438537892758, "2047": 14.35696459335749, "2048": 9.642054728379012, "2049": 6.475548419759282, "2050": 4.348941021173452}, "approximatedHistoricalEmission": {"2021": 148655.679597746, "2022": 145603.3699548114, "2023": 140811.64000287838, "2024": 136019.91005094722}, "totalApproximatedHistoricalEmission": 428752.8047820364, "trend": {"2024": 136019.91005094722, "2025": 131228.1800990142, "2026": 126436.45014708303, "2027": 121644.72019515, "2028": 116852.99024321884, "2029": 112061.26029128581, "2030": 107269.53033935465, "2031": 102477.80038742162, "2032": 97686.07043549046, "2033": 92894.34048355743, "2034": 88102.61053162627, "2035": 83310.88057969324, "2036": 78519.15062776208, "2037": 73727.42067582905, "2038": 68935.69072389789, "2039": 64143.96077196486, "2040": 59352.2308200337, "2041": 54560.50086810067, "2042": 49768.77091616951, "2043": 44977.04096423648, "2044": 40185.31101230532, "2045": 35393.58106037229, "2046": 30601.85110844113, "2047": 25810.121156508103, "2048": 21018.39120457694, "2049": 16226.661252645776, "2050": 11434.93130071275}, "trendEmission": 1916912.9375715693, "historicalEmissionChangePercent": -2.9868093219849166, "neededEmissionChangePercent": 32.84057597495167, "hitNetZero": "2052-05-14", "budgetRunsOut": "2026-08-20", "electricCarChangePercent": 0.07283663159432276, "electricCarChangeYearly": {"2015": 0.011739594450373533, "2016": 0.016120906801007556, "2017": 0.031081888822474597, "2018": 0.06463414634146342, "2019": 0.0779848171152519, "2020": 0.25, "2021": 0.3940754039497307, "2022": 0.5200823892893924}, "climatePlanLink": "https://enkoping.se/download/18.1f87c14f1764bd37b954dfb9/1670497202700/klimatkontrakt-2030.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatkontrakt 2030 via Viable Cities.", "bicycleMetrePerCapita": 2.661227955, "totalConsumptionEmission": 6128.2, "electricVehiclePerChargePoints": 27.04225352112676, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Eskilstuna", "län": "Södermanlands län", "emissions": {"1990": 292098.829129947, "2000": 305940.84618386, "2005": 251556.616396655, "2010": 250157.880042685, "2015": 187003.231990906, "2016": 184218.756810719, "2017": 206248.059375782, "2018": 177052.750172343, "2019": 174441.040127764, "2020": 158545.127982012, "2021": 164615.166399523}, "budget": 370919.5564353831, "emissionBudget": {"2024": 146663.7746199537, "2025": 98764.3625606766, "2026": 66508.5794859236, "2027": 44787.32035067686, "2028": 30160.079792693494, "2029": 20309.998588426184, "2030": 13676.888307231995, "2031": 9210.107669583756, "2032": 6202.147840928966, "2033": 4176.567660308177, "2034": 2812.5284769927994, "2035": 1893.9754069042797, "2036": 1275.4156522509822, "2037": 858.8733940667313, "2038": 578.3710633735789, "2039": 389.47892583326865, "2040": 262.2777024552757, "2041": 176.6195515150058, "2042": 118.93678221724215, "2043": 80.0928212242111, "2044": 53.935039203738256, "2045": 36.32021458908767, "2046": 24.45827438475184, "2047": 16.470364854604636, "2048": 11.091253380202359, "2049": 7.468923890259696, "2050": 5.029623088231544}, "approximatedHistoricalEmission": {"2021": 164615.166399523, "2022": 157400.80845420994, "2023": 152032.29153708182, "2024": 146663.7746199537}, "totalApproximatedHistoricalEmission": 465072.57050103013, "trend": {"2024": 146663.7746199537, "2025": 141295.2577028256, "2026": 135926.74078569748, "2027": 130558.22386856936, "2028": 125189.70695144124, "2029": 119821.19003431313, "2030": 114452.67311718687, "2031": 109084.15620005876, "2032": 103715.63928293064, "2033": 98347.12236580253, "2034": 92978.60544867441, "2035": 87610.0885315463, "2036": 82241.57161441818, "2037": 76873.05469729006, "2038": 71504.53778016195, "2039": 66136.02086303383, "2040": 60767.503945905715, "2041": 55398.9870287776, "2042": 50030.47011164948, "2043": 44661.95319452137, "2044": 39293.43627739325, "2045": 33924.919360265136, "2046": 28556.40244313702, "2047": 23187.885526008904, "2048": 17819.368608880788, "2049": 12450.851691752672, "2050": 7082.334774624556}, "trendEmission": 1998699.4221295314, "historicalEmissionChangePercent": -1.7408671444131085, "neededEmissionChangePercent": 32.65933403350466, "hitNetZero": "2051-04-20", "budgetRunsOut": "2026-08-29", "electricCarChangePercent": 0.07440516778597488, "electricCarChangeYearly": {"2015": 0.019044544867656554, "2016": 0.01537551744529864, "2017": 0.04335352247370099, "2018": 0.04653498493471711, "2019": 0.09297590770274856, "2020": 0.26096687555953446, "2021": 0.42340511986997154, "2022": 0.5205595591352268}, "climatePlanLink": "https://www.eskilstuna.se/download/18.4e2a3bf1184b408adc47d8/1669619809640/Klimatprogram%20f%C3%B6r%20Eskilstuna%20kommunkoncern.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatprogram. Gäller tills vidare.", "bicycleMetrePerCapita": 2.152677677, "totalConsumptionEmission": 5961.4, "electricVehiclePerChargePoints": 26.157232704402517, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Eslöv", "län": "Skåne län", "emissions": {"1990": 207177.008862242, "2000": 207019.375502061, "2005": 189896.954509132, "2010": 232821.220498624, "2015": 193418.142375857, "2016": 212969.932471284, "2017": 178387.661176346, "2018": 184764.516137216, "2019": 159966.186076734, "2020": 211351.946050097, "2021": 206371.803466873}, "budget": 399093.0376185595, "emissionBudget": {"2024": 196147.92725013953, "2025": 119987.1787204913, "2026": 73398.29311039981, "2027": 44899.04245577636, "2028": 27465.54351629699, "2029": 16801.161881984728, "2030": 10277.56980003557, "2031": 6286.972397299775, "2032": 3845.852929578011, "2033": 2352.576696900444, "2034": 1439.1130436197652, "2035": 880.331066377211, "2036": 538.5141840418202, "2037": 329.41871244830827, "2038": 201.5112903742457, "2039": 123.26804341652424, "2040": 75.40525644750727, "2041": 46.12673765496085, "2042": 28.216546523792367, "2043": 17.26056379024481, "2044": 10.558594125113657, "2045": 6.4588799794530605, "2046": 3.951011857701322, "2047": 2.4169042851634392, "2048": 1.4784633744531248, "2049": 0.9044023642216771, "2050": 0.553239025425511}, "approximatedHistoricalEmission": {"2021": 206371.803466873, "2022": 194919.1032979217, "2023": 195533.5152740305, "2024": 196147.92725013953}, "totalApproximatedHistoricalEmission": 591712.4839304585, "trend": {"2024": 196147.92725013953, "2025": 196762.33922624832, "2026": 197376.75120235712, "2027": 197991.1631784659, "2028": 198605.5751545747, "2029": 199219.9871306835, "2030": 199834.3991067923, "2031": 200448.81108290108, "2032": 201063.22305900988, "2033": 201677.63503511867, "2034": 202292.04701122746, "2035": 202906.45898733626, "2036": 203520.87096344505, "2037": 204135.28293955384, "2038": 204749.69491566264, "2039": 205364.10689177143, "2040": 205978.51886788022, "2041": 206592.93084398902, "2042": 207207.3428200978, "2043": 207821.7547962066, "2044": 208436.1667723154, "2045": 209050.5787484242, "2046": 209664.99072453298, "2047": 210279.40270064177, "2048": 210893.81467675057, "2049": 211508.22665285936, "2050": 212122.63862896815}, "trendEmission": 5307517.3564284, "historicalEmissionChangePercent": 2.2983588011115548, "neededEmissionChangePercent": 38.82821990391135, "hitNetZero": "Aldrig", "budgetRunsOut": "2026-01-11", "electricCarChangePercent": 0.05901942847303372, "electricCarChangeYearly": {"2015": 0.012711864406779662, "2016": 0.011029411764705883, "2017": 0.01954022988505747, "2018": 0.051899907321594066, "2019": 0.04864864864864865, "2020": 0.2139240506329114, "2021": 0.3250620347394541, "2022": 0.41379310344827586}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.499086285, "totalConsumptionEmission": 5919.6, "electricVehiclePerChargePoints": 53.17391304347826, "procurementScore": "2", "procurementLink": "https://lund.se/kommun-och-politik/sa-styrs-lunds-kommun/forfattningssamling"}, {"kommun": "Essunga", "län": "Västra Götalands län", "emissions": {"1990": 27771.6855421736, "2000": 24768.4171478364, "2005": 22523.6300144481, "2010": 22456.3938120138, "2015": 19320.8771928621, "2016": 18720.5334283488, "2017": 19485.8212925422, "2018": 17533.044386155, "2019": 17115.4794938808, "2020": 15209.9313819166, "2021": 14794.4064289437}, "budget": 36193.68474401221, "emissionBudget": {"2024": 12531.950904246187, "2025": 8864.322939311425, "2026": 6270.070938897379, "2027": 4435.058362377231, "2028": 3137.084551255687, "2029": 2218.978574264369, "2030": 1569.5674861786708, "2031": 1110.2144573369483, "2032": 785.2966834072563, "2033": 555.4700507590956, "2034": 392.9049794933352, "2035": 277.91655499642684, "2036": 196.58089251167698, "2037": 139.0491016311868, "2038": 98.35468960083001, "2039": 69.56999256373444, "2040": 49.20948746786773, "2041": 34.807732006465, "2042": 24.620825571999934, "2043": 17.415241295648226, "2044": 12.318458960635706, "2045": 8.713312011518582, "2046": 6.163255197154627, "2047": 4.359503547564717, "2048": 3.083641772614491, "2049": 2.181176475272008, "2050": 1.5428286315651762}, "approximatedHistoricalEmission": {"2021": 14794.4064289437, "2022": 14172.733631623443, "2023": 13352.342267934699, "2024": 12531.950904246187}, "totalApproximatedHistoricalEmission": 41188.25456615309, "trend": {"2024": 12531.950904246187, "2025": 11711.559540557442, "2026": 10891.16817686893, "2027": 10070.776813180186, "2028": 9250.385449491674, "2029": 8429.99408580293, "2030": 7609.602722114418, "2031": 6789.211358425673, "2032": 5968.819994737161, "2033": 5148.428631048417, "2034": 4328.037267359905, "2035": 3507.6459036711603, "2036": 2687.2545399826486, "2037": 1866.863176293904, "2038": 1046.4718126053922, "2039": 226.08044891664758, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 95798.27537317958, "historicalEmissionChangePercent": -4.21463226731227, "neededEmissionChangePercent": 29.26621715133007, "hitNetZero": "2039-04-07", "budgetRunsOut": "2027-03-25", "electricCarChangePercent": 0.055320458141867195, "electricCarChangeYearly": {"2015": 0.010752688172043012, "2016": 0.0, "2017": 0.018867924528301886, "2018": 0.07894736842105263, "2019": 0.08571428571428572, "2020": 0.11864406779661017, "2021": 0.32, "2022": 0.40229885057471265}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.015159633, "totalConsumptionEmission": 5891.2, "electricVehiclePerChargePoints": 15.5, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Fagersta", "län": "Västmanlands län", "emissions": {"1990": 86914.1580867396, "2000": 70589.9431567096, "2005": 64805.5253303079, "2010": 53109.3182788031, "2015": 43399.5656174835, "2016": 41617.3346534417, "2017": 38942.6861103624, "2018": 37969.0829801268, "2019": 34058.4254611897, "2020": 30805.3689939101, "2021": 31616.9086770801}, "budget": 76549.19133713348, "emissionBudget": {"2024": 23660.732615631074, "2025": 17369.659085798055, "2026": 12751.298180747392, "2027": 9360.897901978668, "2028": 6871.9598811963915, "2029": 5044.797315735145, "2030": 3703.452929998442, "2031": 2718.754143389281, "2032": 1995.873643302789, "2033": 1465.1974360082386, "2034": 1075.6209611208492, "2035": 789.6276799081392, "2036": 579.6762013891778, "2037": 425.548023463511, "2038": 312.40047433329386, "2039": 229.33735085726505, "2040": 168.35960512055777, "2041": 123.5950294637853, "2042": 90.73275799866255, "2043": 66.60812663551381, "2044": 48.89791329784154, "2045": 35.89660970300286, "2046": 26.352179495287384, "2047": 19.345486102932796, "2048": 14.201779121369958, "2049": 10.425715287743696, "2050": 7.653656512481192}, "approximatedHistoricalEmission": {"2021": 31616.9086770801, "2022": 28079.02995773405, "2023": 25869.88128668256, "2024": 23660.732615631074}, "totalApproximatedHistoricalEmission": 81587.7318907722, "trend": {"2024": 23660.732615631074, "2025": 21451.583944578655, "2026": 19242.435273527168, "2027": 17033.28660247568, "2028": 14824.137931424193, "2029": 12614.989260371774, "2030": 10405.840589320287, "2031": 8196.6919182688, "2032": 5987.5432472173125, "2033": 3778.394576164894, "2034": 1569.2459051134065, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 126934.5155562777, "historicalEmissionChangePercent": -5.0416660017656945, "neededEmissionChangePercent": 26.588667527889314, "hitNetZero": "2034-09-14", "budgetRunsOut": "2027-12-21", "electricCarChangePercent": 0.059527359431176825, "electricCarChangeYearly": {"2015": 0.01037344398340249, "2016": 0.006172839506172839, "2017": 0.025974025974025976, "2018": 0.03431372549019608, "2019": 0.03278688524590164, "2020": 0.16621253405994552, "2021": 0.33691756272401435, "2022": 0.42857142857142855}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.199243979, "totalConsumptionEmission": 6185.6, "electricVehiclePerChargePoints": 28.466666666666665, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Falkenberg", "län": "Hallands län", "emissions": {"1990": 238049.03768691, "2000": 197916.784182596, "2005": 188410.579902566, "2010": 203333.281056215, "2015": 163995.994383468, "2016": 161206.871893451, "2017": 164421.159200077, "2018": 162078.519761916, "2019": 163807.903383413, "2020": 144834.451842323, "2021": 151025.992624885}, "budget": 329223.9067053982, "emissionBudget": {"2024": 143281.2487567896, "2025": 92721.49725433845, "2026": 60002.79958251616, "2027": 38829.57096630731, "2028": 25127.753903449942, "2029": 16260.906327814379, "2030": 10522.909274658656, "2031": 6809.683136375374, "2032": 4406.745625899103, "2033": 2851.734305763506, "2034": 1845.4408856443183, "2035": 1194.2389077147484, "2036": 772.8270137473239, "2037": 500.11902084190524, "2038": 323.64168249641773, "2039": 209.4380223187374, "2040": 135.53348522488128, "2041": 87.70769229880995, "2042": 56.75821938481745, "2043": 36.72990798526321, "2044": 23.769000423695033, "2045": 15.381617110728689, "2046": 9.953895440432726, "2047": 6.441457600056824, "2048": 4.168456084518207, "2049": 2.6975301565911995, "2050": 1.7456508592581186}, "approximatedHistoricalEmission": {"2021": 151025.992624885, "2022": 148443.25598497968, "2023": 145862.25237088464, "2024": 143281.2487567896}, "totalApproximatedHistoricalEmission": 441459.1290467016, "trend": {"2024": 143281.2487567896, "2025": 140700.24514269456, "2026": 138119.2415285986, "2027": 135538.23791450355, "2028": 132957.2343004085, "2029": 130376.23068631347, "2030": 127795.2270722175, "2031": 125214.22345812246, "2032": 122633.21984402742, "2033": 120052.21622993238, "2034": 117471.21261583641, "2035": 114890.20900174137, "2036": 112309.20538764633, "2037": 109728.20177355129, "2038": 107147.19815945532, "2039": 104566.19454536028, "2040": 101985.19093126524, "2041": 99404.1873171702, "2042": 96823.18370307423, "2043": 94242.18008897919, "2044": 91661.17647488415, "2045": 89080.17286078911, "2046": 86499.16924669314, "2047": 83918.1656325981, "2048": 81337.16201850306, "2049": 78756.15840440802, "2050": 76175.15479031298}, "trendEmission": 2852933.246112325, "historicalEmissionChangePercent": -1.2287414108364483, "neededEmissionChangePercent": 35.28706787604357, "hitNetZero": "2079-06-23", "budgetRunsOut": "2026-05-07", "electricCarChangePercent": 0.06571854867722164, "electricCarChangeYearly": {"2015": 0.033862433862433865, "2016": 0.034220532319391636, "2017": 0.061052631578947365, "2018": 0.07461024498886415, "2019": 0.11560044893378227, "2020": 0.2593939393939394, "2021": 0.36764705882352944, "2022": 0.4934640522875817}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plans saknas. Har klimatinitiativ och koldioxidbudget. ", "bicycleMetrePerCapita": 2.948644735, "totalConsumptionEmission": 5960.6, "electricVehiclePerChargePoints": 5.341040462427745, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Falköping", "län": "Västra Götalands län", "emissions": {"1990": 138436.654173052, "2000": 127147.756436754, "2005": 115760.434357096, "2010": 110153.793402707, "2015": 94598.4640023938, "2016": 92011.2958870077, "2017": 88622.0018218266, "2018": 88351.3127185066, "2019": 88241.0364754257, "2020": 77582.0605507553, "2021": 78304.915550821}, "budget": 180023.6261868917, "emissionBudget": {"2024": 70075.85213518515, "2025": 47480.49810402513, "2026": 32170.821067681307, "2027": 21797.617327039563, "2028": 14769.163651013416, "2029": 10006.974233822872, "2030": 6780.311714504134, "2031": 4594.058690633749, "2032": 3112.744095207278, "2033": 2109.0666129280894, "2034": 1429.0162768654327, "2035": 968.2423054012706, "2036": 656.0409262973357, "2037": 444.506188767179, "2038": 301.179002608096, "2039": 204.066431253938, "2040": 138.26697081836602, "2041": 93.68397879951631, "2042": 63.47638797437524, "2043": 43.00897423342798, "2044": 29.14110149680233, "2045": 19.74480469675806, "2046": 13.378262745349495, "2047": 9.064557326970826, "2048": 6.141769009769446, "2049": 4.161408572829878, "2050": 2.819598275753467}, "approximatedHistoricalEmission": {"2021": 78304.915550821, "2022": 75655.85794758704, "2023": 72865.85504138563, "2024": 70075.85213518515}, "totalApproximatedHistoricalEmission": 222712.09683197574, "trend": {"2024": 70075.85213518515, "2025": 67285.84922898468, "2026": 64495.84632278327, "2027": 61705.84341658279, "2028": 58915.840510381386, "2029": 56125.83760418091, "2030": 53335.834697980434, "2031": 50545.83179177903, "2032": 47755.82888557855, "2033": 44965.82597937714, "2034": 42175.82307317667, "2035": 39385.82016697526, "2036": 36595.817260774784, "2037": 33805.81435457431, "2038": 31015.8114483729, "2039": 28225.808542172424, "2040": 25435.805635971017, "2041": 22645.80272977054, "2042": 19855.799823570065, "2043": 17065.796917368658, "2044": 14275.794011168182, "2045": 11485.791104966775, "2046": 8695.788198766299, "2047": 5905.785292564891, "2048": 3115.7823863644153, "2049": 325.7794801639393, "2050": 0}, "trendEmission": 880183.2849319419, "historicalEmissionChangePercent": -2.9993954006946755, "neededEmissionChangePercent": 32.244137377838406, "hitNetZero": "2049-02-05", "budgetRunsOut": "2026-09-19", "electricCarChangePercent": 0.060342276769392376, "electricCarChangeYearly": {"2015": 0.005649717514124294, "2016": 0.015432098765432098, "2017": 0.027056277056277056, "2018": 0.033236994219653176, "2019": 0.07579462102689487, "2020": 0.18666666666666668, "2021": 0.30409356725146197, "2022": 0.4490861618798956}, "climatePlanLink": "https://www.falkoping.se/download/18.1adde54a17861a73b1e11aae/1626330208751/Klimatstrategi%202021-2030.pdf", "climatePlanYear": 2021, "climatePlanComment": "Klimatstrategi 2021–2030. Kommunen står även bakom Västra Götalandsregionens kraftsamling för klimatet, Klimat 2030", "bicycleMetrePerCapita": 3.429514807, "totalConsumptionEmission": 5721.4, "electricVehiclePerChargePoints": 40.84615384615385, "procurementScore": "2", "procurementLink": "https://www.falkoping.se/download/18.1adde54a17861a73b1e11aae/1626330208751/Klimatstrategi%202021-2030.pdf"}, {"kommun": "Falun", "län": "Dalarnas län", "emissions": {"1990": 183924.184500519, "2000": 206775.787657648, "2005": 224429.521372378, "2010": 151294.917729408, "2015": 126726.418359808, "2016": 125606.797492231, "2017": 108831.713339335, "2018": 103674.334207622, "2019": 101489.311791759, "2020": 92888.2394794106, "2021": 94224.9197475128}, "budget": 223193.74461059953, "emissionBudget": {"2024": 71145.10204321519, "2025": 51726.079405994795, "2026": 37607.46999969254, "2027": 27342.528488904984, "2028": 19879.398007169657, "2029": 14453.325532341345, "2030": 10508.297025316831, "2031": 7640.062221333954, "2032": 5554.710778085794, "2033": 4038.5550450131336, "2034": 2936.23331676354, "2035": 2134.789793472825, "2036": 1552.0999085110354, "2037": 1128.4549576569962, "2038": 820.4436998403443, "2039": 596.5039721260327, "2040": 433.68848932763575, "2041": 315.3134171176098, "2042": 229.24876601756796, "2043": 166.67542155675224, "2044": 121.18144247281198, "2045": 88.10502389994731, "2046": 64.0567984504052, "2047": 46.57252499443773, "2048": 33.860575876842134, "2049": 24.618347380742563, "2050": 17.89878087021583}, "approximatedHistoricalEmission": {"2021": 94224.9197475128, "2022": 83308.24585822225, "2023": 77226.67395071872, "2024": 71145.10204321519}, "totalApproximatedHistoricalEmission": 243219.93070430495, "trend": {"2024": 71145.10204321519, "2025": 65063.530135711655, "2026": 58981.958228208125, "2027": 52900.386320704594, "2028": 46818.8144131992, "2029": 40737.24250569567, "2030": 34655.67059819214, "2031": 28574.09869068861, "2032": 22492.52678318508, "2033": 16410.95487568155, "2034": 10329.382968176156, "2035": 4247.811060672626, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 416784.927601723, "historicalEmissionChangePercent": -4.686834235151939, "neededEmissionChangePercent": 27.294953664448762, "hitNetZero": "2035-09-09", "budgetRunsOut": "2027-09-25", "electricCarChangePercent": 0.07338052290831522, "electricCarChangeYearly": {"2015": 0.0176678445229682, "2016": 0.028381642512077296, "2017": 0.033408833522083806, "2018": 0.056958624395486296, "2019": 0.08071505958829903, "2020": 0.27162629757785467, "2021": 0.41537267080745344, "2022": 0.5163249810174639}, "climatePlanLink": "https://www.falun.se/download/18.7eb630aa16a59ef02cf6d5b8/1557238559519/energi_och_klimatprogram_2013_webb.pdf", "climatePlanYear": 2012, "climatePlanComment": "Energi– och klimatprogram, vision 2050", "bicycleMetrePerCapita": 3.120604367, "totalConsumptionEmission": 6238.4, "electricVehiclePerChargePoints": 23.121739130434783, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Filipstad", "län": "Värmlands län", "emissions": {"1990": 80898.3011829295, "2000": 68139.5277028786, "2005": 64565.6430873131, "2010": 58212.4632278906, "2015": 46606.7936270816, "2016": 43672.1766447972, "2017": 47248.3659373472, "2018": 44386.0394981695, "2019": 43251.0075129882, "2020": 39585.6758114165, "2021": 39073.6294879557}, "budget": 90002.37661979141, "emissionBudget": {"2024": 35952.701393858064, "2025": 24112.739555555283, "2026": 16171.919948506773, "2027": 10846.175077632675, "2028": 7274.3072058999605, "2029": 4878.728671357353, "2030": 3272.063273519607, "2031": 2194.5057385077175, "2032": 1471.8099968657114, "2033": 987.1127830118579, "2034": 662.036301194059, "2035": 444.0141710670621, "2036": 297.79119929343784, "2037": 199.7224506675264, "2038": 133.94975202519868, "2039": 89.8373518232097, "2040": 60.252069605092586, "2041": 40.40982751629842, "2042": 27.102042645170304, "2043": 18.176784230132558, "2044": 12.190796438277816, "2045": 8.17611717881097, "2046": 5.483554127091266, "2047": 3.6777073037390795, "2048": 2.46656287117756, "2049": 1.6542731367681762, "2050": 1.1094870692374987}, "approximatedHistoricalEmission": {"2021": 39073.6294879557, "2022": 38436.262287321966, "2023": 37194.481840590015, "2024": 35952.701393858064}, "totalApproximatedHistoricalEmission": 113143.90956881887, "trend": {"2024": 35952.701393858064, "2025": 34710.92094712565, "2026": 33469.140500393696, "2027": 32227.360053661745, "2028": 30985.57960692933, "2029": 29743.799160197377, "2030": 28502.018713465426, "2031": 27260.238266733475, "2032": 26018.45782000106, "2033": 24776.677373269107, "2034": 23534.896926537156, "2035": 22293.116479805205, "2036": 21051.33603307279, "2037": 19809.555586340837, "2038": 18567.775139608886, "2039": 17325.99469287647, "2040": 16084.214246144518, "2041": 14842.433799412567, "2042": 13600.653352680616, "2043": 12358.8729059482, "2044": 11117.092459216248, "2045": 9875.312012484297, "2046": 8633.531565752346, "2047": 7391.751119019929, "2048": 6149.970672287978, "2049": 4908.190225556027, "2050": 3666.4097788236104}, "trendEmission": 515048.44524486177, "historicalEmissionChangePercent": -2.74852132459015, "neededEmissionChangePercent": 32.932050664558524, "hitNetZero": "2052-12-06", "budgetRunsOut": "2026-08-16", "electricCarChangePercent": 0.04838530752286105, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.01015228426395939, "2017": 0.0, "2018": 0.0125, "2019": 0.04838709677419355, "2020": 0.1308411214953271, "2021": 0.2706766917293233, "2022": 0.3333333333333333}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.736768242, "totalConsumptionEmission": 5901.1, "electricVehiclePerChargePoints": 9.75, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Finspång", "län": "Östergötlands län", "emissions": {"1990": 93647.6082996311, "2000": 78850.0748491237, "2005": 84070.7974772392, "2010": 96847.6327441013, "2015": 82368.648864944, "2016": 82873.181246245, "2017": 81920.7385911041, "2018": 74639.739002663, "2019": 79582.3576457115, "2020": 73506.3678113782, "2021": 73237.1079251592}, "budget": 162373.23570913388, "emissionBudget": {"2024": 67918.31359078363, "2025": 44702.10357151797, "2026": 29421.78564324485, "2027": 19364.669697302434, "2028": 12745.332218533096, "2029": 8388.65293857332, "2030": 5521.197636693213, "2031": 3633.9116144923205, "2032": 2391.74803926258, "2033": 1574.1876220937143, "2034": 1036.0901854515976, "2035": 681.9281623885238, "2036": 448.82774220653323, "2037": 295.406984613493, "2038": 194.42935084498498, "2039": 127.96844502327173, "2040": 84.22557011328165, "2041": 55.435124335669244, "2042": 36.48598645254542, "2043": 24.01414668711695, "2044": 15.805499513091494, "2045": 10.4027770844073, "2046": 6.84684283329573, "2047": 4.506417507890304, "2048": 2.9660091884488438, "2049": 1.9521516793683455, "2050": 1.2848564981195032}, "approximatedHistoricalEmission": {"2021": 73237.1079251592, "2022": 71380.21577896085, "2023": 69649.26468487224, "2024": 67918.31359078363}, "totalApproximatedHistoricalEmission": 211607.1912218045, "trend": {"2024": 67918.31359078363, "2025": 66187.36249669502, "2026": 64456.411402606405, "2027": 62725.46030851733, "2028": 60994.50921442872, "2029": 59263.55812034011, "2030": 57532.6070262515, "2031": 55801.65593216289, "2032": 54070.70483807428, "2033": 52339.75374398567, "2034": 50608.80264989706, "2035": 48877.85155580845, "2036": 47146.90046171984, "2037": 45415.94936763123, "2038": 43684.99827354262, "2039": 41954.047179454006, "2040": 40223.096085365396, "2041": 38492.14499127632, "2042": 36761.19389718771, "2043": 35030.2428030991, "2044": 33299.29170901049, "2045": 31568.34061492188, "2046": 29837.38952083327, "2047": 28106.43842674466, "2048": 26375.48733265605, "2049": 24644.536238567438, "2050": 22913.585144478828}, "trendEmission": 1180814.6835584086, "historicalEmissionChangePercent": -1.8006322130368002, "neededEmissionChangePercent": 34.182547816405226, "hitNetZero": "2063-03-18", "budgetRunsOut": "2026-06-20", "electricCarChangePercent": 0.06605029780674963, "electricCarChangeYearly": {"2015": 0.011037527593818985, "2016": 0.009153318077803204, "2017": 0.020151133501259445, "2018": 0.06128133704735376, "2019": 0.09444444444444444, "2020": 0.20761245674740483, "2021": 0.3343195266272189, "2022": 0.4863013698630137}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbetet med att ta fram en ny energi– och klimatstrategi påbörjas under 2023.", "bicycleMetrePerCapita": 3.168529867, "totalConsumptionEmission": 6127.4, "electricVehiclePerChargePoints": 24.869565217391305, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Flen", "län": "Södermanlands län", "emissions": {"1990": 85340.052887282, "2000": 73871.6410271733, "2005": 65239.0099612904, "2010": 61896.4937669453, "2015": 51724.2419570964, "2016": 49116.868289776, "2017": 46386.8938434383, "2018": 44078.8910450118, "2019": 43363.0479166387, "2020": 39741.6792685766, "2021": 40493.1623118517}, "budget": 93284.95471812328, "emissionBudget": {"2024": 33100.51289642742, "2025": 23213.093641793366, "2026": 16279.134952039558, "2027": 11416.411740552569, "2028": 8006.227444751133, "2029": 5614.695698946798, "2030": 3937.535875581363, "2031": 2761.3586920478265, "2032": 1936.5161530172122, "2033": 1358.061457823688, "2034": 952.3963538091941, "2035": 667.9070446507052, "2036": 468.3972366229914, "2037": 328.4827926778221, "2038": 230.36204454013367, "2039": 161.55084146754265, "2040": 113.29416020321955, "2041": 79.45218124247025, "2042": 55.71910408147365, "2043": 39.07530933817278, "2044": 27.403164947542177, "2045": 19.217594482575606, "2046": 13.47712712760373, "2047": 9.451388714559313, "2048": 6.6281743718761, "2049": 4.648279404307995, "2050": 3.2597967718218333}, "approximatedHistoricalEmission": {"2021": 40493.1623118517, "2022": 37062.47453249432, "2023": 35081.4937144611, "2024": 33100.51289642742}, "totalApproximatedHistoricalEmission": 108940.80585109498, "trend": {"2024": 33100.51289642742, "2025": 31119.5320783942, "2026": 29138.551260360982, "2027": 27157.570442327764, "2028": 25176.58962429408, "2029": 23195.60880626086, "2030": 21214.627988227643, "2031": 19233.64717019396, "2032": 17252.66635216074, "2033": 15271.685534127522, "2034": 13290.704716094304, "2035": 11309.72389806062, "2036": 9328.743080027401, "2037": 7347.762261994183, "2038": 5366.781443960965, "2039": 3385.8006259272806, "2040": 1404.8198078940623, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 276745.0715385203, "historicalEmissionChangePercent": -3.9431574493629404, "neededEmissionChangePercent": 29.870894404482804, "hitNetZero": "2040-09-11", "budgetRunsOut": "2027-02-09", "electricCarChangePercent": 0.06586217303091861, "electricCarChangeYearly": {"2015": 0.010638297872340425, "2016": 0.00974025974025974, "2017": 0.026490066225165563, "2018": 0.02242152466367713, "2019": 0.07142857142857142, "2020": 0.1796116504854369, "2021": 0.3470319634703196, "2022": 0.48743718592964824}, "climatePlanLink": "https://flen.se/nedladdning/forfattningssamling/planer_och_program/planer/Energi-och-klimatplan-for-Flens-kommun-2019-2023.pdf", "climatePlanYear": 2019, "climatePlanComment": "Energi– och klimatplan 2019–2023", "bicycleMetrePerCapita": 2.556806018, "totalConsumptionEmission": 6102.8, "electricVehiclePerChargePoints": 47.22222222222222, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1hhIx6EKV79wTPibNR4KA--taYA-_vuff/view?usp=drive_link"}, {"kommun": "Forshaga", "län": "Värmlands län", "emissions": {"1990": 50311.4007127443, "2000": 42229.6608027275, "2005": 33502.2248173012, "2010": 26866.2551410348, "2015": 22430.506415624, "2016": 21783.2198301299, "2017": 21256.2628398496, "2018": 20207.8621362078, "2019": 19877.3151738519, "2020": 17978.7524882313, "2021": 18740.6365816607}, "budget": 42146.312510427124, "emissionBudget": {"2024": 16026.902526861057, "2025": 10957.240986879997, "2026": 7491.224822971298, "2027": 5121.5857546162, "2028": 3501.515608162397, "2029": 2393.909258114855, "2030": 1636.6631417346603, "2031": 1118.9506162076302, "2032": 765.0019418072905, "2033": 523.0150128987741, "2034": 357.5738684679217, "2035": 244.4653944108882, "2036": 167.1356168182423, "2037": 114.2669475838506, "2038": 78.12180047972471, "2039": 53.410157873653255, "2040": 36.51535098488832, "2041": 24.964742862280964, "2042": 17.067845970800946, "2043": 11.668911139602635, "2044": 7.97777806390368, "2045": 5.454231511019123, "2046": 3.7289382002734404, "2047": 2.549393085600872, "2048": 1.7429640170579728, "2049": 1.191626188176803, "2050": 0.8146886329561849}, "approximatedHistoricalEmission": {"2021": 18740.6365816607, "2022": 17459.580516267102, "2023": 16743.24152156408, "2024": 16026.902526861057}, "totalApproximatedHistoricalEmission": 51586.59159209206, "trend": {"2024": 16026.902526861057, "2025": 15310.563532158034, "2026": 14594.224537455011, "2027": 13877.885542751988, "2028": 13161.546548048966, "2029": 12445.207553345943, "2030": 11728.868558642687, "2031": 11012.529563939665, "2032": 10296.190569236642, "2033": 9579.851574533619, "2034": 8863.512579830596, "2035": 8147.1735851275735, "2036": 7430.834590424551, "2037": 6714.495595721528, "2038": 5998.156601018505, "2039": 5281.817606315482, "2040": 4565.47861161246, "2041": 3849.139616909437, "2042": 3132.8006222061813, "2043": 2416.4616275031585, "2044": 1700.1226328001358, "2045": 983.783638097113, "2046": 267.44464339409024, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 179371.5411945039, "historicalEmissionChangePercent": -2.8644136209681306, "neededEmissionChangePercent": 31.632197996364635, "hitNetZero": "2046-05-11", "budgetRunsOut": "2026-10-22", "electricCarChangePercent": 0.07085106106291314, "electricCarChangeYearly": {"2015": 0.012345679012345678, "2016": 0.0, "2017": 0.06280193236714976, "2018": 0.10666666666666667, "2019": 0.09774436090225563, "2020": 0.23148148148148148, "2021": 0.44242424242424244, "2022": 0.4755244755244755}, "climatePlanLink": "https://www.forshaga.se/download/18.658f116617a76142ce5bbc71/1626679776148/Milj%C3%B6-%20och%20klimatplan%20(2021-06-08).pdf", "climatePlanYear": 2021, "climatePlanComment": "Miljö– och klimatplan 2021–2030", "bicycleMetrePerCapita": 6.449194915, "totalConsumptionEmission": 5927.7, "electricVehiclePerChargePoints": 142.5, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1ho5nKkvRMkY4_upel84VnHwFSDesAw03/view?usp=drive_link"}, {"kommun": "Färgelanda", "län": "Västra Götalands län", "emissions": {"1990": 37783.0477097424, "2000": 35944.7375915302, "2005": 29376.1312922679, "2010": 26236.8859522581, "2015": 22616.9321912413, "2016": 21724.2893464626, "2017": 21957.0545247504, "2018": 22692.1663533043, "2019": 22462.223167009, "2020": 21405.9556195313, "2021": 20970.6401639379}, "budget": 45569.18910464783, "emissionBudget": {"2024": 20889.099860852177, "2025": 13208.00990667553, "2026": 8351.31847982473, "2027": 5280.471535398537, "2028": 3338.7997001330236, "2029": 2111.0962085258197, "2030": 1334.8291607533477, "2031": 844.0017471499777, "2032": 533.655519475007, "2033": 337.4260947063338, "2034": 213.35180698735374, "2035": 134.90063234257207, "2036": 85.29658531321697, "2037": 53.93234516217226, "2038": 34.10098826360606, "2039": 21.561780728389927, "2040": 13.633340611284797, "2041": 8.62025166495544, "2042": 5.450515826301523, "2043": 3.4463173382208825, "2044": 2.1790787467139854, "2045": 1.377813973112495, "2046": 0.8711806984335707, "2047": 0.5508405518697977, "2048": 0.3482920525326119, "2049": 0.22022226476538195, "2050": 0.1392447675614216}, "approximatedHistoricalEmission": {"2021": 20970.6401639379, "2022": 21251.269496103167, "2023": 21070.1846784777, "2024": 20889.099860852177}, "totalApproximatedHistoricalEmission": 63251.32418697591, "trend": {"2024": 20889.099860852177, "2025": 20708.01504322671, "2026": 20526.930225601187, "2027": 20345.84540797572, "2028": 20164.760590350197, "2029": 19983.67577272473, "2030": 19802.590955099207, "2031": 19621.50613747374, "2032": 19440.421319848218, "2033": 19259.33650222275, "2034": 19078.251684597228, "2035": 18897.166866971762, "2036": 18716.082049346238, "2037": 18534.997231720772, "2038": 18353.912414095248, "2039": 18172.827596469782, "2040": 17991.74277884426, "2041": 17810.657961218792, "2042": 17629.57314359327, "2043": 17448.488325967803, "2044": 17267.40350834228, "2045": 17086.318690716813, "2046": 16905.23387309129, "2047": 16724.149055465823, "2048": 16543.0642378403, "2049": 16361.979420214775, "2050": 16180.89460258931}, "trendEmission": 481909.92802473967, "historicalEmissionChangePercent": -1.2127895558462491, "neededEmissionChangePercent": 36.770803937663274, "hitNetZero": "2139-04-12", "budgetRunsOut": "2026-03-15", "electricCarChangePercent": 0.05543863728702094, "electricCarChangeYearly": {"2015": 0.019801980198019802, "2016": 0.02702702702702703, "2017": 0.04424778761061947, "2018": 0.03571428571428571, "2019": 0.05555555555555555, "2020": 0.25, "2021": 0.234375, "2022": 0.44594594594594594}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.231146482, "totalConsumptionEmission": 5767.2, "electricVehiclePerChargePoints": 7.4375, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Gagnef", "län": "Dalarnas län", "emissions": {"1990": 46932.492718333, "2000": 44855.1124618532, "2005": 39367.7192578598, "2010": 37680.3699150072, "2015": 31367.0694827718, "2016": 30036.6097671721, "2017": 28542.6132177175, "2018": 25393.167875366, "2019": 26015.2632042333, "2020": 24147.5641569895, "2021": 23598.9801315176}, "budget": 56017.89514818605, "emissionBudget": {"2024": 18955.24341490632, "2025": 13513.676300843434, "2026": 9634.244370629729, "2027": 6868.498440148187, "2028": 4896.727652677806, "2029": 3491.00198732551, "2030": 2488.8243210434784, "2031": 1774.3463118916757, "2032": 1264.9767233083032, "2033": 901.834157056879, "2034": 642.9405631334063, "2035": 458.36871944542025, "2036": 326.7827463585301, "2037": 232.97175131589427, "2038": 166.09150120687863, "2039": 118.41086576951227, "2040": 84.41812513224959, "2041": 60.18383367549886, "2042": 42.906589434505086, "2043": 30.589201525901718, "2044": 21.807821649878008, "2045": 15.54735205200389, "2046": 11.084103662884708, "2047": 7.902140094250924, "2048": 5.633637140932025, "2049": 4.016363549259158, "2050": 2.863367972817094}, "approximatedHistoricalEmission": {"2021": 23598.9801315176, "2022": 21641.651221164502, "2023": 20298.447318035644, "2024": 18955.24341490632}, "totalApproximatedHistoricalEmission": 63217.210312412106, "trend": {"2024": 18955.24341490632, "2025": 17612.03951177746, "2026": 16268.835608648136, "2027": 14925.631705519278, "2028": 13582.427802390419, "2029": 12239.223899261095, "2030": 10896.019996132236, "2031": 9552.816093003377, "2032": 8209.612189874053, "2033": 6866.408286745194, "2034": 5523.20438361587, "2035": 4180.000480487011, "2036": 2836.7965773581527, "2037": 1493.5926742288284, "2038": 150.38877109996974, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 133814.61968759424, "historicalEmissionChangePercent": -4.541812620417315, "neededEmissionChangePercent": 28.70745046609986, "hitNetZero": "2038-02-06", "budgetRunsOut": "2027-05-10", "electricCarChangePercent": 0.07890026754016323, "electricCarChangeYearly": {"2015": 0.007352941176470588, "2016": 0.006097560975609756, "2017": 0.006097560975609756, "2018": 0.02962962962962963, "2019": 0.09316770186335403, "2020": 0.3103448275862069, "2021": 0.40601503759398494, "2022": 0.5290322580645161}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete med plan pågår. ", "bicycleMetrePerCapita": 0.9615165799, "totalConsumptionEmission": 5892.4, "electricVehiclePerChargePoints": 36.55555555555556, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Gislaved", "län": "Jönköpings län", "emissions": {"1990": 126085.005546744, "2000": 119378.672250313, "2005": 106829.149803114, "2010": 99684.8853551172, "2015": 83065.0879771132, "2016": 81071.6589452112, "2017": 75583.8912408087, "2018": 74475.956352902, "2019": 73496.4778334183, "2020": 65341.2396607991, "2021": 66254.0238426647}, "budget": 153829.9551473582, "emissionBudget": {"2024": 56188.02418336738, "2025": 38995.37406295349, "2026": 27063.403997747282, "2027": 18782.42877636881, "2028": 13035.301500459145, "2029": 9046.704621164694, "2030": 6278.55554393735, "2031": 4357.416470311527, "2032": 3024.115684391184, "2033": 2098.7839319216905, "2034": 1456.5891164905836, "2035": 1010.8957963748985, "2036": 701.5776100198857, "2037": 486.9059151757266, "2038": 337.92037665853115, "2039": 234.52206556133495, "2040": 162.7620085507103, "2041": 112.95939835790479, "2042": 78.39560221084612, "2043": 54.40778310918775, "2044": 37.759858708590514, "2045": 26.20593687545312, "2046": 18.18733308353176, "2047": 12.622295713501753, "2048": 8.760072097835359, "2049": 6.079628056660727, "2050": 4.2193576599066605}, "approximatedHistoricalEmission": {"2021": 66254.0238426647, "2022": 62186.69878190756, "2023": 59187.361482637, "2024": 56188.02418336738}, "totalApproximatedHistoricalEmission": 182595.08427756059, "trend": {"2024": 56188.02418336738, "2025": 53188.686884097755, "2026": 50189.3495848272, "2027": 47190.012285557576, "2028": 44190.67498628702, "2029": 41191.337687017396, "2030": 38192.00038774684, "2031": 35192.66308847722, "2032": 32193.32578920666, "2033": 29193.988489937037, "2034": 26194.651190666482, "2035": 23195.313891396858, "2036": 20195.976592126302, "2037": 17196.63929285668, "2038": 14197.301993587054, "2039": 11197.964694316499, "2040": 8198.627395046875, "2041": 5199.2900957763195, "2042": 2199.9527965066954, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 526591.7692171182, "historicalEmissionChangePercent": -3.6081688163051173, "neededEmissionChangePercent": 30.59842443348134, "hitNetZero": "2042-09-20", "budgetRunsOut": "2026-12-22", "electricCarChangePercent": 0.07401713658926597, "electricCarChangeYearly": {"2015": 0.020512820512820513, "2016": 0.014616321559074299, "2017": 0.028465346534653466, "2018": 0.04648074369189907, "2019": 0.08104738154613467, "2020": 0.259581881533101, "2021": 0.37834036568213786, "2022": 0.5449275362318841}, "climatePlanLink": "https://www.gislaved.se/download/18.6c7bb61c1851412f92b21f8c/1672839511150/Strategi%20f%C3%B6r%20h%C3%A5llbar%20utveckling%20Gislaveds%20kommun%20antagen%20den%2014%20juni%202021.pdf", "climatePlanYear": 2021, "climatePlanComment": "Strategi för hållbar utveckling", "bicycleMetrePerCapita": 4.057533422, "totalConsumptionEmission": 5973.2, "electricVehiclePerChargePoints": 11.956140350877194, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Gnesta", "län": "Södermanlands län", "emissions": {"1990": 50915.4332630129, "2000": 46762.3107495375, "2005": 36920.2761460816, "2010": 31192.1353247618, "2015": 26498.8622913046, "2016": 25402.8708211209, "2017": 21979.538463164, "2018": 20115.9910674198, "2019": 19793.09636451, "2020": 17166.2155678372, "2021": 17725.0476255144}, "budget": 44044.29234257746, "emissionBudget": {"2024": 11601.403899568599, "2025": 8914.890774635098, "2026": 6850.48794194893, "2027": 5264.1346068212015, "2028": 4045.129835065286, "2029": 3108.407479043609, "2030": 2388.5999831247195, "2031": 1835.4768214426135, "2032": 1410.4392471969513, "2033": 1083.826745613687, "2034": 832.8472260269754, "2035": 639.9865151030907, "2036": 491.78616043146013, "2037": 377.9042556122599, "2038": 290.3937481375298, "2039": 223.14786802476888, "2040": 171.4739773957423, "2041": 131.7661028276186, "2042": 101.25329871079111, "2043": 77.8062815838839, "2044": 59.788841756179245, "2045": 45.943663233559214, "2046": 35.30458408822651, "2047": 27.12917451328137, "2048": 20.846927637862105, "2049": 16.019447688152056, "2050": 12.309857293664843}, "approximatedHistoricalEmission": {"2021": 17725.0476255144, "2022": 14814.346514039207, "2023": 13207.875206803903, "2024": 11601.403899568599}, "totalApproximatedHistoricalEmission": 42685.44748338461, "trend": {"2024": 11601.403899568599, "2025": 9994.932592332829, "2026": 8388.461285097525, "2027": 6781.98997786222, "2028": 5175.51867062645, "2029": 3569.047363391146, "2030": 1962.5760561553761, "2031": 356.10474892007187, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 42029.33264416992, "historicalEmissionChangePercent": -6.285360315497887, "neededEmissionChangePercent": 23.156793334584265, "hitNetZero": "2031-03-20", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.07878057228987029, "electricCarChangeYearly": {"2015": 0.014285714285714285, "2016": 0.009345794392523364, "2017": 0.02912621359223301, "2018": 0.04945054945054945, "2019": 0.11173184357541899, "2020": 0.2689655172413793, "2021": 0.4157303370786517, "2022": 0.5576923076923077}, "climatePlanLink": "https://www.gnesta.se/kommunverksamhet/styrningochekonomi/styrdokument/plan.4.34b79a7b16653c9fa8492dbf.html", "climatePlanYear": 2013, "climatePlanComment": "Miljö– och hållbarhetsplan, gäller tills vidare", "bicycleMetrePerCapita": 1.698479193, "totalConsumptionEmission": 6087.3, "electricVehiclePerChargePoints": 14.923076923076923, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Gnosjö", "län": "Jönköpings län", "emissions": {"1990": 42695.8777349031, "2000": 40414.5497784328, "2005": 31621.5955692958, "2010": 31246.9957710159, "2015": 29691.6312846588, "2016": 30340.5454824779, "2017": 31172.2719659445, "2018": 30071.9787474749, "2019": 29601.1369773846, "2020": 22566.0429332755, "2021": 21233.9116098986}, "budget": 57669.76060987956, "emissionBudget": {"2024": 18705.36719060596, "2025": 13523.88486140636, "2026": 9777.69962390411, "2027": 7069.226846800636, "2028": 5111.014874025442, "2029": 3695.237627624258, "2030": 2671.637915593784, "2031": 1931.580556194768, "2032": 1396.5228683470211, "2033": 1009.6788951211303, "2034": 729.9926799334756, "2035": 527.7809760424158, "2036": 381.582947787462, "2037": 275.88252068878523, "2038": 199.4616522119619, "2039": 144.20975494857777, "2040": 104.26291566174878, "2041": 75.38155505614182, "2042": 54.500478972955214, "2043": 39.40356770392101, "2044": 28.488578028239974, "2045": 20.597096287561715, "2046": 14.891595328434786, "2047": 10.766547300154055, "2048": 7.784158661974497, "2049": 5.627906921834224, "2050": 4.068947935960426}, "approximatedHistoricalEmission": {"2021": 21233.9116098986, "2022": 21740.60284140939, "2023": 20222.985016007442, "2024": 18705.36719060596}, "totalApproximatedHistoricalEmission": 61933.22725766911, "trend": {"2024": 18705.36719060596, "2025": 17187.74936520448, "2026": 15670.131539802533, "2027": 14152.513714401051, "2028": 12634.89588899957, "2029": 11117.278063597623, "2030": 9599.660238196142, "2031": 8082.042412794661, "2032": 6564.424587392714, "2033": 5046.806761991233, "2034": 3529.1889365897514, "2035": 2011.5711111878045, "2036": 493.95328578632325, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 115442.89950124687, "historicalEmissionChangePercent": -4.9730284720090365, "neededEmissionChangePercent": 27.700511176288455, "hitNetZero": "2036-04-25", "budgetRunsOut": "2027-08-12", "electricCarChangePercent": 0.08002508252892905, "electricCarChangeYearly": {"2015": 0.020080321285140562, "2016": 0.026936026936026935, "2017": 0.03215434083601286, "2018": 0.06093189964157706, "2019": 0.09904153354632587, "2020": 0.3374485596707819, "2021": 0.4161290322580645, "2022": 0.5661016949152542}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 4.272521996, "totalConsumptionEmission": 5800.6, "electricVehiclePerChargePoints": 34.05882352941177, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Gotland", "län": "Gotlands län", "emissions": {"1990": 1971790.54948669, "2000": 2054398.60038359, "2005": 2058956.90203607, "2010": 401665.1739916699, "2015": 269367.9092786899, "2016": 220902.02188846003, "2017": 267272.31793093006, "2018": 402598.50127022015, "2019": 429824.7581961099, "2020": 195590.1005935201, "2021": 119802.94296870008}, "budget": 564428.6620300532, "emissionBudget": {"2024": 200029.87146352977, "2025": 140340.718985549, "2026": 98462.88087512869, "2027": 69081.43965849341, "2028": 48467.455581989925, "2029": 34004.708966764425, "2030": 23857.663209867933, "2031": 16738.50802228008, "2032": 11743.717242854213, "2033": 8239.37799572921, "2034": 5780.737764085269, "2035": 4055.758713150781, "2036": 2845.5154706194094, "2037": 1996.41025667529, "2038": 1400.6790523935206, "2039": 982.7147507653324, "2040": 689.4714957873506, "2041": 483.7323782237221, "2042": 339.3860589911151, "2043": 238.11285376528912, "2044": 167.05969389784, "2045": 117.20888177145697, "2046": 82.23361150485746, "2047": 57.69500364586376, "2048": 40.47874567079681, "2049": 28.399839631494974, "2050": 19.92529357638955}, "approximatedHistoricalEmission": {"2021": 119802.94296870008, "2022": 224084.60726743191, "2023": 212057.23936548084, "2024": 200029.87146352977}, "totalApproximatedHistoricalEmission": 596058.2538490277, "trend": {"2024": 200029.87146352977, "2025": 188002.5035615787, "2026": 175975.13565963134, "2027": 163947.76775768027, "2028": 151920.3998557292, "2029": 139893.03195377812, "2030": 127865.66405183077, "2031": 115838.2961498797, "2032": 103810.92824792862, "2033": 91783.56034597754, "2034": 79756.1924440302, "2035": 67728.82454207912, "2036": 55701.456640128046, "2037": 43674.08873817697, "2038": 31646.720836229622, "2039": 19619.352934278548, "2040": 7591.985032327473, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 1664770.844483029, "historicalEmissionChangePercent": -5.474915172472286, "neededEmissionChangePercent": 29.840119398798652, "hitNetZero": "2040-08-14", "budgetRunsOut": "2027-02-11", "electricCarChangePercent": 0.06565393185052729, "electricCarChangeYearly": {"2015": 0.035050071530758224, "2016": 0.036933797909407665, "2017": 0.03789004457652303, "2018": 0.06887755102040816, "2019": 0.08268059181897303, "2020": 0.23824130879345604, "2021": 0.3936781609195402, "2022": 0.48024316109422494}, "climatePlanLink": "https://www.gotland.se/115066", "climatePlanYear": 2022, "climatePlanComment": "Kommer under 2023 ta fram ett internt hållbarhetsprogram.", "bicycleMetrePerCapita": 2.965998404, "totalConsumptionEmission": 6204.3, "electricVehiclePerChargePoints": 4.86848635235732, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1XJ1UVRwbdwDQ8OxsECSV9_xrk9IzKZYr/view?usp=drive_link"}, {"kommun": "Grums", "län": "Värmlands län", "emissions": {"1990": 103910.023063223, "2000": 156729.591170014, "2005": 141503.02757081, "2010": 82142.9832031392, "2015": 57340.008300058, "2016": 52691.5573292281, "2017": 50084.7495932462, "2018": 68386.6665676316, "2019": 65557.799687692, "2020": 56964.6029848481, "2021": 52270.3371590495}, "budget": 119469.20137595324, "emissionBudget": {"2024": 59501.55908510729, "2025": 36159.98631230616, "2026": 21974.96385323179, "2027": 13354.513803742817, "2028": 8115.737533198676, "2029": 4932.054934812373, "2030": 2997.283460745403, "2031": 1821.493933623369, "2032": 1106.949073612681, "2033": 672.7094880489107, "2034": 408.8156050703461, "2035": 248.44335023989092, "2036": 150.98273527939338, "2037": 91.75446366520303, "2038": 55.760558231442374, "2039": 33.886524209080235, "2040": 20.59334697128404, "2041": 12.51488458547942, "2042": 7.605482314568355, "2043": 4.621965216069633, "2044": 2.8088373064305876, "2045": 1.7069723905679353, "2046": 1.0373526211327477, "2047": 0.6304146842193186, "2048": 0.383112420967688, "2049": 0.23282314129703913, "2050": 0.14149010096436673}, "approximatedHistoricalEmission": {"2021": 52270.3371590495, "2022": 58872.26422920264, "2023": 59186.91165715491, "2024": 59501.55908510729}, "totalApproximatedHistoricalEmission": 173945.12400843593, "trend": {"2024": 59501.55908510729, "2025": 59816.20651305956, "2026": 60130.85394101194, "2027": 60445.501368964324, "2028": 60760.14879691659, "2029": 61074.79622486897, "2030": 61389.44365282124, "2031": 61704.09108077362, "2032": 62018.738508726005, "2033": 62333.38593667827, "2034": 62648.03336463065, "2035": 62962.68079258292, "2036": 63277.3282205353, "2037": 63591.975648487685, "2038": 63906.62307643995, "2039": 64221.270504392334, "2040": 64535.9179323446, "2041": 64850.56536029698, "2042": 65165.21278824925, "2043": 65479.86021620163, "2044": 65794.50764415401, "2045": 66109.15507210628, "2046": 66423.80250005866, "2047": 66738.44992801093, "2048": 67053.09735596331, "2049": 67367.7447839157, "2050": 67682.39221186796}, "trendEmission": 1653391.3668606782, "historicalEmissionChangePercent": -0.33288103412763304, "neededEmissionChangePercent": 39.2285061630315, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-12-31", "electricCarChangePercent": 0.07597880990069575, "electricCarChangeYearly": {"2015": 0.007518796992481203, "2016": 0.016216216216216217, "2017": 0.02027027027027027, "2018": 0.01652892561983471, "2019": 0.09375, "2020": 0.24761904761904763, "2021": 0.32456140350877194, "2022": 0.5905511811023622}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.282694987, "totalConsumptionEmission": 6226.9, "electricVehiclePerChargePoints": 8.178571428571429, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Grästorp", "län": "Västra Götalands län", "emissions": {"1990": 33517.9626611005, "2000": 32908.1970335994, "2005": 29626.817707551, "2010": 29799.6363399913, "2015": 25868.1791262035, "2016": 24879.2294912534, "2017": 24822.0129266479, "2018": 23799.7243098762, "2019": 23805.4904435504, "2020": 22066.1526689903, "2021": 22395.1016488455}, "budget": 49659.15803229864, "emissionBudget": {"2024": 20291.861110831378, "2025": 13485.25865536034, "2026": 8961.829573380137, "2027": 5955.717376647139, "2028": 3957.960724432548, "2029": 2630.321774094949, "2030": 1748.0195274726784, "2031": 1161.6724229404133, "2032": 772.0067178948277, "2033": 513.0485674835675, "2034": 340.95407008206837, "2035": 226.5861075798667, "2036": 150.58117398580086, "2037": 100.07096287202731, "2038": 66.50364946071528, "2039": 44.19599117128084, "2040": 29.37110446496277, "2041": 19.51900510950246, "2042": 12.971645683916094, "2043": 8.620500420236235, "2044": 5.728882002029687, "2045": 3.80721389632278, "2046": 2.5301407233065483, "2047": 1.6814427174467972, "2048": 1.117427811825439, "2049": 0.7426033023218331, "2050": 0.4935080895457784}, "approximatedHistoricalEmission": {"2021": 22395.1016488455, "2022": 21510.568865095498, "2023": 20901.214987963438, "2024": 20291.861110831378}, "totalApproximatedHistoricalEmission": 63755.26523289738, "trend": {"2024": 20291.861110831378, "2025": 19682.507233699318, "2026": 19073.153356567258, "2027": 18463.799479435198, "2028": 17854.445602303138, "2029": 17245.091725171078, "2030": 16635.737848039018, "2031": 16026.383970906958, "2032": 15417.030093774898, "2033": 14807.676216642838, "2034": 14198.322339510778, "2035": 13588.968462378485, "2036": 12979.614585246425, "2037": 12370.260708114365, "2038": 11760.906830982305, "2039": 11151.552953850245, "2040": 10542.199076718185, "2041": 9932.845199586125, "2042": 9323.491322454065, "2043": 8714.137445322005, "2044": 8104.783568189945, "2045": 7495.429691057885, "2046": 6886.075813925825, "2047": 6276.721936793765, "2048": 5667.368059661705, "2049": 5058.014182529645, "2050": 4448.660305397585}, "trendEmission": 321626.77841097594, "historicalEmissionChangePercent": -2.3271628427001234, "neededEmissionChangePercent": 33.54350997325629, "hitNetZero": "2057-04-11", "budgetRunsOut": "2026-07-18", "electricCarChangePercent": 0.06330140371433526, "electricCarChangeYearly": {"2015": 0.018691588785046728, "2016": 0.0078125, "2017": 0.007462686567164179, "2018": 0.05660377358490566, "2019": 0.038461538461538464, "2020": 0.22727272727272727, "2021": 0.41346153846153844, "2022": 0.3969465648854962}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.834894831, "totalConsumptionEmission": 6103.6, "electricVehiclePerChargePoints": 52.25, "procurementScore": "2", "procurementLink": "https://www.grastorp.se/bygga-bo-och-miljo/klimat-och-hallbarhet.html"}, {"kommun": "Gullspång", "län": "Västra Götalands län", "emissions": {"1990": 42941.6181121248, "2000": 39637.5390224922, "2005": 35437.3722056415, "2010": 33125.8114579755, "2015": 27177.9320842219, "2016": 25947.2425098195, "2017": 26330.3334489161, "2018": 24119.1117964731, "2019": 24567.7484747064, "2020": 22368.028248005, "2021": 22545.4803600213}, "budget": 51264.73280243922, "emissionBudget": {"2024": 19832.617702357238, "2025": 13469.949575049204, "2026": 9148.54227905593, "2027": 6213.521837283354, "2028": 4220.109875950771, "2029": 2866.221095133986, "2030": 1946.6847090895271, "2031": 1322.1524895747189, "2032": 897.9816800976544, "2033": 609.8926592426429, "2034": 414.2278891008238, "2035": 281.3359720085763, "2036": 191.078223433539, "2037": 129.77681883283825, "2038": 88.14203106838768, "2039": 59.864448140523976, "2040": 40.65883333671901, "2041": 27.614732610957365, "2042": 18.755419046566484, "2043": 12.738336038522071, "2044": 8.651643806381161, "2045": 5.876037523750068, "2046": 3.990896730521001, "2047": 2.7105437379029, "2048": 1.8409515081903631, "2049": 1.2503404420732434, "2050": 0.8492082567784046}, "approximatedHistoricalEmission": {"2021": 22545.4803600213, "2022": 21462.501178817358, "2023": 20647.55944058718, "2024": 19832.617702357238}, "totalApproximatedHistoricalEmission": 63299.10965059381, "trend": {"2024": 19832.617702357238, "2025": 19017.675964127295, "2026": 18202.73422589712, "2027": 17387.792487667175, "2028": 16572.85074943723, "2029": 15757.909011207055, "2030": 14942.967272977112, "2031": 14128.025534746936, "2032": 13313.083796516992, "2033": 12498.142058287049, "2034": 11683.200320056872, "2035": 10868.258581826929, "2036": 10053.316843596753, "2037": 9238.37510536681, "2038": 8423.433367136866, "2039": 7608.49162890669, "2040": 6793.549890676746, "2041": 5978.608152446803, "2042": 5163.666414216626, "2043": 4348.724675986683, "2044": 3533.7829377567396, "2045": 2718.8411995265633, "2046": 1903.8994612966198, "2047": 1088.9577230664436, "2048": 274.01598483650014, "2049": 0, "2050": 0}, "trendEmission": 241416.61223874323, "historicalEmissionChangePercent": -2.958353319528445, "neededEmissionChangePercent": 32.08183721784637, "hitNetZero": "2048-04-26", "budgetRunsOut": "2026-09-27", "electricCarChangePercent": 0.0465946550369637, "electricCarChangeYearly": {"2015": 0.011111111111111112, "2016": 0.00909090909090909, "2017": 0.0, "2018": 0.05, "2019": 0.030927835051546393, "2020": 0.14942528735632185, "2021": 0.2597402597402597, "2022": 0.32989690721649484}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 4.147110951, "totalConsumptionEmission": 6029.8, "electricVehiclePerChargePoints": 14.25, "procurementScore": "2", "procurementLink": "https://klimat2030.se/undertecknare/gullspang-kommun/"}, {"kommun": "Gällivare", "län": "Norrbottens län", "emissions": {"1990": 324711.701031407, "2000": 369252.297040743, "2005": 370361.00533347, "2010": 405390.685409249, "2015": 346796.559187039, "2016": 341903.588784558, "2017": 428127.488910943, "2018": 440605.626225736, "2019": 444491.22807391, "2020": 397222.623608863, "2021": 379312.20194903}, "budget": 823069.2710840038, "emissionBudget": {"2024": 445040.34605520405, "2025": 259162.8665131011, "2026": 150919.78058761454, "2027": 87885.97100758766, "2028": 51179.13549750031, "2029": 29803.4359778008, "2030": 17355.60375235831, "2031": 10106.78707761201, "2032": 5885.542588416446, "2033": 3427.3613655911968, "2034": 1995.8747649649965, "2035": 1162.2690613882646, "2036": 676.8307284470565, "2037": 394.14267331782816, "2038": 229.52333633929558, "2039": 133.6596250308595, "2040": 77.83476681857282, "2041": 45.32596080755775, "2042": 26.394923593938707, "2043": 15.370705421730255, "2044": 8.9509099854285, "2045": 5.212434131616104, "2046": 3.0353863038134343, "2047": 1.7676137061364685, "2048": 1.0293445055728703, "2049": 0.5994240186499529, "2050": 0.3490659853811419}, "approximatedHistoricalEmission": {"2021": 379312.20194903, "2022": 429001.1505482346, "2023": 437020.74830172025, "2024": 445040.34605520405}, "totalApproximatedHistoricalEmission": 1278198.172852072, "trend": {"2024": 445040.34605520405, "2025": 453059.9438086897, "2026": 461079.5415621735, "2027": 469099.1393156592, "2028": 477118.737069143, "2029": 485138.33482262865, "2030": 493157.93257611245, "2031": 501177.5303295981, "2032": 509197.1280830819, "2033": 517216.7258365676, "2034": 525236.3235900514, "2035": 533255.921343537, "2036": 541275.5190970208, "2037": 549295.1168505065, "2038": 557314.7146039903, "2039": 565334.312357476, "2040": 573353.9101109598, "2041": 581373.5078644454, "2042": 589393.1056179293, "2043": 597412.7033714149, "2044": 605432.3011248987, "2045": 613451.8988783844, "2046": 621471.4966318682, "2047": 629491.0943853538, "2048": 637510.6921388377, "2049": 645530.2898923215, "2050": 653549.8876458071}, "trendEmission": 14281673.038113154, "historicalEmissionChangePercent": 2.0768505734167655, "neededEmissionChangePercent": 41.76643335592011, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-10-27", "electricCarChangePercent": 0.05977188843177565, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.012578616352201259, "2017": 0.03065134099616858, "2018": 0.03515625, "2019": 0.06031746031746032, "2020": 0.19166666666666668, "2021": 0.22950819672131148, "2022": 0.4897119341563786}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.568772462, "totalConsumptionEmission": 6701.6, "electricVehiclePerChargePoints": 6.612903225806452, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Gävle", "län": "Gävleborgs län", "emissions": {"1990": 500920.9621634, "2000": 429883.747720515, "2005": 471914.440500508, "2010": 520118.690235872, "2015": 288014.417124067, "2016": 278383.639304741, "2017": 245067.120285995, "2018": 244747.787556423, "2019": 243868.296274071, "2020": 225946.939828441, "2021": 235613.396453782}, "budget": 521855.06416314695, "emissionBudget": {"2024": 195246.9527663514, "2025": 134306.56587461132, "2026": 92386.86382274746, "2027": 63551.11942160351, "2028": 43715.57397475476, "2029": 30071.089625726006, "2030": 20685.31530206265, "2031": 14229.02443746804, "2032": 9787.86803515022, "2033": 6732.883276329718, "2034": 4631.418920840065, "2035": 3185.862629718478, "2036": 2191.492686996177, "2037": 1507.4850222221016, "2038": 1036.96950745423, "2039": 713.3110734359527, "2040": 490.672757326771, "2041": 337.5242075283355, "2042": 232.17631092521108, "2043": 159.70955016704937, "2044": 109.86108062840927, "2045": 75.57129191221007, "2046": 51.98401589182664, "2047": 35.75878934795692, "2048": 24.597772867190194, "2049": 16.920327591024765, "2050": 11.639162916634325}, "approximatedHistoricalEmission": {"2021": 235613.396453782, "2022": 214052.33026459068, "2023": 204649.64151547104, "2024": 195246.9527663514}, "totalApproximatedHistoricalEmission": 634132.1463901284, "trend": {"2024": 195246.9527663514, "2025": 185844.26401722804, "2026": 176441.5752681084, "2027": 167038.88651898876, "2028": 157636.1977698654, "2029": 148233.50902074575, "2030": 138830.82027162611, "2031": 129428.13152250648, "2032": 120025.44277338311, "2033": 110622.75402426347, "2034": 101220.06527514383, "2035": 91817.37652602047, "2036": 82414.68777690083, "2037": 73011.99902778119, "2038": 63609.310278657824, "2039": 54206.621529538184, "2040": 44803.932780418545, "2041": 35401.24403129518, "2042": 25998.55528217554, "2043": 16595.8665330559, "2044": 7193.177783932537, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 2027997.8943948112, "historicalEmissionChangePercent": -3.1453223055461392, "neededEmissionChangePercent": 31.211952877270438, "hitNetZero": "2044-10-01", "budgetRunsOut": "2026-11-15", "electricCarChangePercent": 0.061005134062167454, "electricCarChangeYearly": {"2015": 0.02557272242940863, "2016": 0.02381530984204131, "2017": 0.03963873557451079, "2018": 0.0438106439282564, "2019": 0.0630550621669627, "2020": 0.2134387351778656, "2021": 0.30794430794430794, "2022": 0.47745013009540327}, "climatePlanLink": "https://app.climateview.global/public/board/505eb0d1-3347-4e97-8a55-4138713941d2", "climatePlanYear": 2021, "climatePlanComment": "Klimatplan 2035", "bicycleMetrePerCapita": 2.8248516, "totalConsumptionEmission": 6330.1, "electricVehiclePerChargePoints": 12.942307692307692, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1jLax0svJUbW27r9Cyolt06suLnk_t6mL/view?usp=drive_link"}, {"kommun": "Göteborg", "län": "Västra Götalands län", "emissions": {"1990": 2402471.45205336, "2000": 2370472.07095794, "2005": 2425469.75800417, "2010": 2894615.41887103, "2015": 2190035.40402056, "2016": 2425555.09657673, "2017": 2125741.6912483, "2018": 2316218.76627259, "2019": 2252193.90619921, "2020": 2009257.9360872, "2021": 2043704.69976698}, "budget": 4550929.4981790995, "emissionBudget": {"2024": 1949286.595998302, "2025": 1270151.67426062, "2026": 827628.5687999785, "2027": 539281.3014183006, "2028": 351394.73554072354, "2029": 228968.1838420678, "2030": 149195.26079769406, "2031": 97215.36621806536, "2032": 63345.35948650344, "2033": 41275.72342291593, "2034": 26895.187870045058, "2035": 17524.85651562004, "2036": 11419.165293696677, "2037": 7440.707767766456, "2038": 4848.351929528579, "2039": 3159.177482335079, "2040": 2058.51442097427, "2041": 1341.324330479507, "2042": 874.0045448332497, "2043": 569.4998048056711, "2044": 371.0850585285864, "2045": 241.7983632323685, "2046": 157.55538283778236, "2047": 102.66280684995625, "2048": 66.89490210031705, "2049": 43.588599068318786, "2050": 28.402253521343294}, "approximatedHistoricalEmission": {"2021": 2043704.69976698, "2022": 2031081.8973403722, "2023": 1990184.2466693372, "2024": 1949286.595998302}, "totalApproximatedHistoricalEmission": 6017761.791892351, "trend": {"2024": 1949286.595998302, "2025": 1908388.945327267, "2026": 1867491.294656232, "2027": 1826593.643985197, "2028": 1785695.993314162, "2029": 1744798.3426431417, "2030": 1703900.6919721067, "2031": 1663003.0413010716, "2032": 1622105.3906300366, "2033": 1581207.7399590015, "2034": 1540310.0892879665, "2035": 1499412.4386169314, "2036": 1458514.7879458964, "2037": 1417617.1372748762, "2038": 1376719.4866038412, "2039": 1335821.8359328061, "2040": 1294924.185261771, "2041": 1254026.534590736, "2042": 1213128.883919701, "2043": 1172231.233248666, "2044": 1131333.5825776309, "2045": 1090435.9319066107, "2046": 1049538.2812355757, "2047": 1008640.6305645406, "2048": 967742.9798935056, "2049": 926845.3292224705, "2050": 885947.6785514355}, "trendEmission": 36858045.56914661, "historicalEmissionChangePercent": -0.7470653488961477, "neededEmissionChangePercent": 34.84017810063848, "hitNetZero": "2071-08-18", "budgetRunsOut": "2026-05-25", "electricCarChangePercent": 0.08139978209978142, "electricCarChangeYearly": {"2015": 0.02079287642684602, "2016": 0.03159101329665291, "2017": 0.045966015215707715, "2018": 0.06642745857136112, "2019": 0.12735198366716327, "2020": 0.3041364066940322, "2021": 0.4498621640248105, "2022": 0.5794771968854282}, "climatePlanLink": "https://www4.goteborg.se/prod/Stadsledningskontoret/LIS/Verksamhetshandbok/Forfattn.nsf//6B3CA866EF066429C12586B200449D53/$File/C12574360024D6C7WEBVCP4393.pdf?OpenElement", "climatePlanYear": 2021, "climatePlanComment": "Miljö– och klimatprogram 2021–2030", "bicycleMetrePerCapita": 1.303877809, "totalConsumptionEmission": 6268.6, "electricVehiclePerChargePoints": 6.87375, "procurementScore": "2", "procurementLink": "https://goteborg.se/wps/portal/start/foretag-och-organisationer/upphandling-och-inkop/hallbar-upphandling/ekologisk-hallbarhet-i-upphandling"}, {"kommun": "Götene", "län": "Västra Götalands län", "emissions": {"1990": 125898.433665682, "2000": 127226.625493231, "2005": 152396.784885105, "2010": 117354.271229577, "2015": 100280.325730626, "2016": 109482.933782744, "2017": 114070.34032074, "2018": 115669.448163133, "2019": 107719.196012143, "2020": 102457.848211941, "2021": 101111.400908884}, "budget": 222408.65765556297, "emissionBudget": {"2024": 103418.47975100926, "2025": 64961.22922899998, "2026": 40804.71220523331, "2027": 25631.050365170988, "2028": 16099.874434053138, "2029": 10112.96662053704, "2030": 6352.35350977513, "2031": 3990.163977324542, "2032": 2506.3794924886065, "2033": 1574.3558901505519, "2034": 988.9150770184115, "2035": 621.1765939788942, "2036": 390.1855375393739, "2037": 245.0909373930192, "2038": 153.9512919187253, "2039": 96.70288316470253, "2040": 60.74289793750464, "2041": 38.1550118165751, "2042": 23.96666896302494, "2043": 15.054410779495424, "2044": 9.456269632940403, "2045": 5.939856210956121, "2046": 3.7310581419898927, "2047": 2.343624889981686, "2048": 1.4721233001242646, "2049": 0.9246987519345261, "2050": 0.580839785469798}, "approximatedHistoricalEmission": {"2021": 101111.400908884, "2022": 104697.62903068285, "2023": 104058.05439084605, "2024": 103418.47975100926}, "totalApproximatedHistoricalEmission": 311020.62375147553, "trend": {"2024": 103418.47975100926, "2025": 102778.90511117247, "2026": 102139.33047133568, "2027": 101499.75583149889, "2028": 100860.18119166186, "2029": 100220.60655182507, "2030": 99581.03191198828, "2031": 98941.45727215149, "2032": 98301.8826323147, "2033": 97662.3079924779, "2034": 97022.73335264111, "2035": 96383.15871280432, "2036": 95743.5840729673, "2037": 95104.0094331305, "2038": 94464.43479329371, "2039": 93824.86015345692, "2040": 93185.28551362013, "2041": 92545.71087378333, "2042": 91906.13623394654, "2043": 91266.56159410975, "2044": 90626.98695427272, "2045": 89987.41231443593, "2046": 89347.83767459914, "2047": 88708.26303476235, "2048": 88068.68839492556, "2049": 87429.11375508877, "2050": 86789.53911525197}, "trendEmission": 2472704.2452613944, "historicalEmissionChangePercent": 0.28284877448952517, "neededEmissionChangePercent": 37.186052835623876, "hitNetZero": "2185-08-04", "budgetRunsOut": "2026-03-02", "electricCarChangePercent": 0.057968732887074007, "electricCarChangeYearly": {"2015": 0.00468384074941452, "2016": 0.010893246187363835, "2017": 0.022222222222222223, "2018": 0.03902439024390244, "2019": 0.04176904176904177, "2020": 0.14869888475836432, "2021": 0.28895184135977336, "2022": 0.447098976109215}, "climatePlanLink": "https://www.gotene.se/download/18.6b0120a216ade1dd99f5d17a/1560261659657/Antaget%20klimat%20och%20milj%C3%B6politiskt%20program,%20KF%2029%20april%202019%20%C2%A7%2070.pdf", "climatePlanYear": 2019, "climatePlanComment": "Klimat– och miljöpolitiskt program 2019–2024", "bicycleMetrePerCapita": 3.76946887, "totalConsumptionEmission": 5959.1, "electricVehiclePerChargePoints": 10000000000.0, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Habo", "län": "Jönköpings län", "emissions": {"1990": 48883.490587102, "2000": 45283.1807669867, "2005": 38945.8434604974, "2010": 39679.0819130585, "2015": 34697.039058938, "2016": 33840.573043111, "2017": 36523.3789203481, "2018": 34994.2432867874, "2019": 37631.9692249418, "2020": 32283.1789475432, "2021": 33448.1706049408}, "budget": 72108.42708770953, "emissionBudget": {"2024": 33541.33545911597, "2025": 21065.30085182419, "2026": 13229.851879891741, "2027": 8308.876383729315, "2028": 5218.3068553492885, "2029": 3277.3055199027135, "2030": 2058.2790105136237, "2031": 1292.6815822916328, "2032": 811.8557613717352, "2033": 509.8779052023212, "2034": 320.223727641281, "2035": 201.11331496858597, "2036": 126.30720951122801, "2037": 79.32598185756713, "2038": 49.81989089947947, "2039": 31.28888506785331, "2040": 19.650671872498293, "2041": 12.341408273359377, "2042": 7.750898247041928, "2043": 4.867874257565957, "2044": 3.057219825652702, "2045": 1.9200563876186527, "2046": 1.2058722440242302, "2047": 0.7573360231943567, "2048": 0.47563732797578134, "2049": 0.29871927497879297, "2050": 0.18760765817858463}, "approximatedHistoricalEmission": {"2021": 33448.1706049408, "2022": 33952.249976868276, "2023": 33746.79271799215, "2024": 33541.33545911597}, "totalApproximatedHistoricalEmission": 101193.79572688881, "trend": {"2024": 33541.33545911597, "2025": 33335.87820023979, "2026": 33130.42094136367, "2027": 32924.96368248749, "2028": 32719.50642361137, "2029": 32514.04916473519, "2030": 32308.591905859008, "2031": 32103.134646982886, "2032": 31897.677388106706, "2033": 31692.220129230525, "2034": 31486.762870354403, "2035": 31281.305611478223, "2036": 31075.8483526021, "2037": 30870.39109372592, "2038": 30664.93383484974, "2039": 30459.47657597362, "2040": 30254.019317097438, "2041": 30048.562058221258, "2042": 29843.104799345136, "2043": 29637.647540468955, "2044": 29432.190281592833, "2045": 29226.733022716653, "2046": 29021.275763840473, "2047": 28815.81850496435, "2048": 28610.36124608817, "2049": 28404.90398721199, "2050": 28199.446728335868}, "trendEmission": 802630.1684368737, "historicalEmissionChangePercent": -0.29908687846669246, "neededEmissionChangePercent": 37.1959984196187, "hitNetZero": "2187-02-22", "budgetRunsOut": "2026-03-01", "electricCarChangePercent": 0.0777714944006703, "electricCarChangeYearly": {"2015": 0.009456264775413711, "2016": 0.01059322033898305, "2017": 0.008316008316008316, "2018": 0.023809523809523808, "2019": 0.05429864253393665, "2020": 0.2271186440677966, "2021": 0.3662420382165605, "2022": 0.5905511811023622}, "climatePlanLink": "https://habokommun.se/contentassets/9b46e0c7ebec45209de948336c8fe7e5/klimatprogram-2021-2025.tga.pdf", "climatePlanYear": 2021, "climatePlanComment": "Klimatprogram 2021–2025", "bicycleMetrePerCapita": 1.781741558, "totalConsumptionEmission": 6088.9, "electricVehiclePerChargePoints": 35.888888888888886, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Hagfors", "län": "Värmlands län", "emissions": {"1990": 144176.618979768, "2000": 154632.817821695, "2005": 102784.581737691, "2010": 98129.2255796478, "2015": 83660.462691986, "2016": 78746.3488084873, "2017": 81377.7294624902, "2018": 81601.7518503302, "2019": 72966.6635714358, "2020": 68280.2344353904, "2021": 79688.3208022694}, "budget": 161838.05378735234, "emissionBudget": {"2024": 69204.56159468461, "2025": 45125.64244147023, "2026": 29424.702054782218, "2027": 19186.720546653698, "2028": 12510.92516247087, "2029": 8157.894833582987, "2030": 5319.450580316343, "2031": 3468.60986242941, "2032": 2261.747561348165, "2033": 1474.798906234292, "2034": 961.6598470137783, "2035": 627.0615318802309, "2036": 408.8827936249979, "2037": 266.6167998239048, "2038": 173.8505974245873, "2039": 113.36131198352209, "2040": 73.91856712025292, "2041": 48.199464786589296, "2042": 31.429023805808214, "2043": 20.49366194748482, "2044": 13.36313156313086, "2045": 8.713585967756279, "2046": 5.681795472773904, "2047": 3.7048810804063033, "2048": 2.4158109678050987, "2049": 1.575257749306055, "2050": 1.0271652086269398}, "approximatedHistoricalEmission": {"2021": 79688.3208022694, "2022": 72151.68447371293, "2023": 70678.12303419877, "2024": 69204.56159468461}, "totalApproximatedHistoricalEmission": 217276.2487063887, "trend": {"2024": 69204.56159468461, "2025": 67731.00015516998, "2026": 66257.43871565582, "2027": 64783.87727614166, "2028": 63310.3158366275, "2029": 61836.75439711334, "2030": 60363.19295759918, "2031": 58889.63151808502, "2032": 57416.07007857086, "2033": 55942.5086390567, "2034": 54468.94719954254, "2035": 52995.385760027915, "2036": 51521.824320513755, "2037": 50048.262880999595, "2038": 48574.701441485435, "2039": 47101.140001971275, "2040": 45627.578562457114, "2041": 44154.017122942954, "2042": 42680.455683428794, "2043": 41206.894243914634, "2044": 39733.33280440001, "2045": 38259.77136488585, "2046": 36786.20992537169, "2047": 35312.64848585753, "2048": 33839.08704634337, "2049": 32365.525606829207, "2050": 30891.964167315047}, "trendEmission": 1301254.8349059916, "historicalEmissionChangePercent": -0.4256575094313015, "neededEmissionChangePercent": 34.79383236937349, "hitNetZero": "2070-12-06", "budgetRunsOut": "2026-05-26", "electricCarChangePercent": 0.024103974436047428, "electricCarChangeYearly": {"2015": 0.12315270935960591, "2016": 0.014925373134328358, "2017": 0.014492753623188406, "2018": 0.004651162790697674, "2019": 0.025974025974025976, "2020": 0.1724137931034483, "2021": 0.20270270270270271, "2022": 0.20754716981132076}, "climatePlanLink": "https://www.hagfors.se/undersidor/miljo-och-energi/miljomal-och-hallbarhetsarbete/miljoverenskommelsen-2022-2025.html", "climatePlanYear": 2022, "climatePlanComment": "Miljööverenskommelse 2022–2025", "bicycleMetrePerCapita": 5.447849972, "totalConsumptionEmission": 6389.1, "electricVehiclePerChargePoints": 11.5, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Hallsberg", "län": "Örebro län", "emissions": {"1990": 88287.0879328005, "2000": 76951.5065093057, "2005": 74175.4370123522, "2010": 72161.4623308618, "2015": 56256.3207997535, "2016": 53538.9638275592, "2017": 51407.9078539467, "2018": 49046.3289189396, "2019": 48200.1554008007, "2020": 44025.6709436254, "2021": 45571.0255636995}, "budget": 103102.56229283934, "emissionBudget": {"2024": 38087.291059223004, "2025": 26323.681610075644, "2026": 18193.370918167126, "2027": 12574.18131205919, "2028": 8690.529994672765, "2029": 6006.380034927199, "2030": 4151.254428220921, "2031": 2869.1013934539833, "2032": 1982.9530924336564, "2033": 1370.4998281913338, "2034": 947.2083763551346, "2035": 654.6543748359173, "2036": 452.4583620564629, "2037": 312.71244379315095, "2038": 216.12833512154538, "2039": 149.3751149644338, "2040": 103.23923958461796, "2041": 71.35285279979797, "2042": 49.31486926050743, "2043": 34.08351922528637, "2044": 23.556511457909753, "2045": 16.280866667516815, "2046": 11.25237155421231, "2047": 7.776973313507153, "2048": 5.374983720330609, "2049": 3.7148706610117537, "2050": 2.5674987583398785}, "approximatedHistoricalEmission": {"2021": 45571.0255636995, "2022": 41965.164197021164, "2023": 40026.227628122084, "2024": 38087.291059223004}, "totalApproximatedHistoricalEmission": 123820.55013660449, "trend": {"2024": 38087.291059223004, "2025": 36148.35449032392, "2026": 34209.41792142484, "2027": 32270.481352525763, "2028": 30331.544783626217, "2029": 28392.608214727137, "2030": 26453.671645828057, "2031": 24514.735076928977, "2032": 22575.798508029897, "2033": 20636.861939130817, "2034": 18697.92537023127, "2035": 16758.98880133219, "2036": 14820.05223243311, "2037": 12881.11566353403, "2038": 10942.17909463495, "2039": 9003.24252573587, "2040": 7064.305956836324, "2041": 5125.369387937244, "2042": 3186.432819038164, "2043": 1247.4962501390837, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 374304.2275640094, "historicalEmissionChangePercent": -3.3800603676402745, "neededEmissionChangePercent": 30.885917905938214, "hitNetZero": "2043-08-18", "budgetRunsOut": "2026-12-04", "electricCarChangePercent": 0.06981823238845705, "electricCarChangeYearly": {"2015": 0.006944444444444444, "2016": 0.012738853503184714, "2017": 0.01509433962264151, "2018": 0.047244094488188976, "2019": 0.05365853658536585, "2020": 0.1411042944785276, "2021": 0.3333333333333333, "2022": 0.5608465608465608}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.284930497, "totalConsumptionEmission": 6134.7, "electricVehiclePerChargePoints": 24.8125, "procurementScore": "2", "procurementLink": "https://www.orebro.se/fordjupning/fordjupning/sa-arbetar-vi-med/maltider-i-kommunens-kok-och-serveringar.html"}, {"kommun": "Hallstahammar", "län": "Västmanlands län", "emissions": {"1990": 73129.3098478903, "2000": 57244.7550450608, "2005": 53493.3858953871, "2010": 45884.715119414, "2015": 38362.8054134091, "2016": 37449.1367773915, "2017": 37259.2742064617, "2018": 37676.3684815123, "2019": 38100.7933788433, "2020": 35362.624504384, "2021": 35566.2660676553}, "budget": 76954.40635448444, "emissionBudget": {"2024": 34599.369101902004, "2025": 22070.16656404651, "2026": 14078.067456379718, "2027": 8980.085525464185, "2028": 5728.196451289706, "2029": 3653.8888734995526, "2030": 2330.734291921477, "2031": 1486.7234685043509, "2032": 948.3477715425804, "2033": 604.9299112057076, "2034": 385.8713105595299, "2035": 246.1387105427765, "2036": 157.0063986871969, "2037": 100.15088311124843, "2038": 63.88401665046834, "2039": 40.75019067843782, "2040": 25.99363858748332, "2041": 16.580762832460053, "2042": 10.576499137703314, "2043": 6.746513121268865, "2044": 4.303450385884174, "2045": 2.7450751063363406, "2046": 1.7510222411636478, "2047": 1.1169380691888773, "2048": 0.7124699053361612, "2049": 0.4544686764758125, "2050": 0.28989544168918285}, "approximatedHistoricalEmission": {"2021": 35566.2660676553, "2022": 35436.592202680185, "2023": 35017.980652291095, "2024": 34599.369101902004}, "totalApproximatedHistoricalEmission": 105537.39043974993, "trend": {"2024": 34599.369101902004, "2025": 34180.757551512914, "2026": 33762.14600112382, "2027": 33343.53445073473, "2028": 32924.92290034576, "2029": 32506.311349956668, "2030": 32087.699799567577, "2031": 31669.088249178487, "2032": 31250.476698789396, "2033": 30831.865148400306, "2034": 30413.253598011215, "2035": 29994.642047622125, "2036": 29576.030497233034, "2037": 29157.418946843944, "2038": 28738.807396454853, "2039": 28320.195846065762, "2040": 27901.584295676672, "2041": 27482.97274528758, "2042": 27064.36119489849, "2043": 26645.7496445094, "2044": 26227.13809412031, "2045": 25808.52654373122, "2046": 25389.91499334213, "2047": 24971.303442953038, "2048": 24552.691892563947, "2049": 24134.080342174857, "2050": 23715.468791785766}, "trendEmission": 758092.8926179421, "historicalEmissionChangePercent": -1.2089132837078023, "neededEmissionChangePercent": 36.212228324032466, "hitNetZero": "2106-08-07", "budgetRunsOut": "2026-04-04", "electricCarChangePercent": 0.08123456469983636, "electricCarChangeYearly": {"2015": 0.011363636363636364, "2016": 0.015105740181268883, "2017": 0.03503184713375796, "2018": 0.058823529411764705, "2019": 0.046296296296296294, "2020": 0.28095238095238095, "2021": 0.405982905982906, "2022": 0.6033755274261603}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 1.03456596, "totalConsumptionEmission": 6200.3, "electricVehiclePerChargePoints": 79.16666666666667, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Halmstad", "län": "Hallands län", "emissions": {"1990": 607658.925796055, "2000": 590431.427749749, "2005": 592836.111457245, "2010": 579832.494123395, "2015": 361260.187872938, "2016": 362912.790497176, "2017": 344683.628991093, "2018": 341172.371066685, "2019": 330878.761426481, "2020": 306959.855974128, "2021": 323846.285250688}, "budget": 702578.1531363257, "emissionBudget": {"2024": 287826.45919471234, "2025": 191078.80271789985, "2026": 126851.12046424687, "2027": 84212.41149805195, "2028": 55905.933068333004, "2029": 37114.16520014072, "2030": 24638.91009241695, "2031": 16356.986268410099, "2032": 10858.881289042893, "2033": 7208.864818652637, "2034": 4785.735343294117, "2035": 3177.0969982393353, "2036": 2109.1733270134264, "2037": 1400.212875417462, "2038": 929.5566520656822, "2039": 617.1030023859356, "2040": 409.674993673035, "2041": 271.9701569950203, "2042": 180.55230960699123, "2043": 119.86291755170657, "2044": 79.57316655367177, "2045": 52.826086371933336, "2046": 35.06955324559971, "2047": 23.281557452254997, "2048": 15.45588315900949, "2049": 10.260667685778687, "2050": 6.8117298943614815}, "approximatedHistoricalEmission": {"2021": 323846.285250688, "2022": 304823.0623716749, "2023": 296324.7607831955, "2024": 287826.45919471234}, "totalApproximatedHistoricalEmission": 906984.1953775706, "trend": {"2024": 287826.45919471234, "2025": 279328.1576062329, "2026": 270829.85601774976, "2027": 262331.5544292703, "2028": 253833.2528407909, "2029": 245334.95125230774, "2030": 236836.6496638283, "2031": 228338.34807534888, "2032": 219840.04648686573, "2033": 211341.7448983863, "2034": 202843.44330990314, "2035": 194345.14172142372, "2036": 185846.8401329443, "2037": 177348.53854446113, "2038": 168850.2369559817, "2039": 160351.93536749855, "2040": 151853.63377901912, "2041": 143355.3321905397, "2042": 134857.03060205653, "2043": 126358.7290135771, "2044": 117860.42742509767, "2045": 109362.12583661452, "2046": 100863.82424813509, "2047": 92365.52265965194, "2048": 83867.2210711725, "2049": 75368.91948269308, "2050": 66870.61789420992}, "trendEmission": 4611062.002156012, "historicalEmissionChangePercent": -1.7215160851177878, "neededEmissionChangePercent": 33.61319065227546, "hitNetZero": "2057-11-05", "budgetRunsOut": "2026-07-15", "electricCarChangePercent": 0.06722475368112807, "electricCarChangeYearly": {"2015": 0.012723845428840716, "2016": 0.016216216216216217, "2017": 0.02810077519379845, "2018": 0.058524173027989825, "2019": 0.07479589149328417, "2020": 0.24431818181818182, "2021": 0.33992746455654466, "2022": 0.49320943531093636}, "climatePlanLink": "https://www.halmstad.se/download/18.1ab5eabc17db948137827c20/1643015898074/Plan-for-energi-och-klimat-anpassad.pdf", "climatePlanYear": 2021, "climatePlanComment": "Plan för energi och klimat. Gäller tills vidare.", "bicycleMetrePerCapita": 2.855029528, "totalConsumptionEmission": 6215.6, "electricVehiclePerChargePoints": 11.330143540669857, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1N2X0IxEXtbzKbUT3oTSQDL3KqpgSTx0v/view?usp=drive_link"}, {"kommun": "Hammarö", "län": "Värmlands län", "emissions": {"1990": 139358.545133385, "2000": 268969.818569945, "2005": 278723.604932501, "2010": 124457.119867858, "2015": 72442.0358038133, "2016": 72163.2340816464, "2017": 72579.9382627036, "2018": 65165.6119649118, "2019": 70878.8132235381, "2020": 58698.3802797512, "2021": 60909.6622028492}, "budget": 140069.7713415473, "emissionBudget": {"2024": 53999.39223577641, "2025": 36724.899162758804, "2026": 24976.544414165306, "2027": 16986.50738584927, "2028": 11552.496149381945, "2029": 7856.833912347665, "2030": 5343.420013130136, "2031": 3634.051292830262, "2032": 2471.5123958943896, "2033": 1680.8715757840384, "2034": 1143.1580351254072, "2035": 777.4599273964302, "2036": 528.7492368812796, "2037": 359.60149925512343, "2038": 244.56439697059523, "2039": 166.32785010486484, "2040": 113.11930135044412, "2041": 76.93225355792853, "2042": 52.3215009891693, "2043": 35.58376804467753, "2044": 24.20046298976632, "2045": 16.458695666622912, "2046": 11.19353225436486, "2047": 7.612703148986228, "2048": 5.177387076540227, "2049": 3.5211325616834848, "2050": 2.3947165498069842}, "approximatedHistoricalEmission": {"2021": 60909.6622028492, "2022": 58515.67462476529, "2023": 56257.53343027085, "2024": 53999.39223577641}, "totalApproximatedHistoricalEmission": 172227.73527434893, "trend": {"2024": 53999.39223577641, "2025": 51741.25104128197, "2026": 49483.10984678753, "2027": 47224.968652292155, "2028": 44966.82745779771, "2029": 42708.68626330327, "2030": 40450.54506880883, "2031": 38192.40387431439, "2032": 35934.26267981995, "2033": 33676.12148532458, "2034": 31417.980290830135, "2035": 29159.839096335694, "2036": 26901.697901841253, "2037": 24643.556707346812, "2038": 22385.41551285237, "2039": 20127.274318357, "2040": 17869.133123862557, "2041": 15610.991929368116, "2042": 13352.850734873675, "2043": 11094.709540379234, "2044": 8836.568345884793, "2045": 6578.42715138942, "2046": 4320.285956894979, "2047": 2062.1447624005377, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 645738.7478602352, "historicalEmissionChangePercent": -2.4455472248417798, "neededEmissionChangePercent": 31.990162032921294, "hitNetZero": "2047-11-24", "budgetRunsOut": "2026-10-02", "electricCarChangePercent": 0.0712436857988574, "electricCarChangeYearly": {"2015": 0.005434782608695652, "2016": 0.027649769585253458, "2017": 0.015184381778741865, "2018": 0.3464163822525597, "2019": 0.12445730824891461, "2020": 0.31900138696255204, "2021": 0.46029173419773095, "2022": 0.4528301886792453}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.259755972, "totalConsumptionEmission": 6432.4, "electricVehiclePerChargePoints": 59.1875, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1hniLkbvsciBRv7cP5rklYnwggrPZpDTC/view?usp=drive_link"}, {"kommun": "Haninge", "län": "Stockholms län", "emissions": {"1990": 208258.327223284, "2000": 170476.605591408, "2005": 154950.37936986, "2010": 159443.913909494, "2015": 141095.3670928, "2016": 136570.796830567, "2017": 115923.591761438, "2018": 122747.837961976, "2019": 120952.837918138, "2020": 111395.316708932, "2021": 107898.699030336}, "budget": 253747.94311969623, "emissionBudget": {"2024": 91316.69569903426, "2025": 63717.67321661019, "2026": 44460.017404918646, "2027": 31022.68252837545, "2028": 21646.568927116514, "2029": 15104.236904330133, "2030": 10539.220937519638, "2031": 7353.908620038191, "2032": 5131.30641367876, "2033": 3580.450461311829, "2034": 2498.3161153140704, "2035": 1743.2397067019203, "2036": 1216.3731628654082, "2037": 848.7436728586347, "2038": 592.2243635502456, "2039": 413.2339456519403, "2040": 288.3405417760779, "2041": 201.19418771503757, "2042": 140.38643654123882, "2043": 97.95686340930146, "2044": 68.35095558658062, "2045": 47.692963688291215, "2046": 33.27852209017606, "2047": 23.220616771572523, "2048": 16.202553760985946, "2049": 11.305588949688419, "2050": 7.888654059404203}, "approximatedHistoricalEmission": {"2021": 107898.699030336, "2022": 101667.53271860257, "2023": 96492.11420881748, "2024": 91316.69569903426}, "totalApproximatedHistoricalEmission": 297767.3442921052, "trend": {"2024": 91316.69569903426, "2025": 86141.27718924917, "2026": 80965.85867946409, "2027": 75790.44016968086, "2028": 70615.02165989578, "2029": 65439.60315011069, "2030": 60264.18464032747, "2031": 55088.76613054238, "2032": 49913.3476207573, "2033": 44737.92911097407, "2034": 39562.51060118899, "2035": 34387.0920914039, "2036": 29211.67358162068, "2037": 24036.255071835592, "2038": 18860.836562050506, "2039": 13685.418052267283, "2040": 8509.999542482197, "2041": 3334.581032698974, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 806203.1427360671, "historicalEmissionChangePercent": -4.156891058175606, "neededEmissionChangePercent": 30.22341344170643, "hitNetZero": "2041-08-19", "budgetRunsOut": "2027-01-15", "electricCarChangePercent": 0.0666633859450445, "electricCarChangeYearly": {"2015": 0.011811023622047244, "2016": 0.020225593154414623, "2017": 0.04060324825986079, "2018": 0.06451612903225806, "2019": 0.07324595219737856, "2020": 0.2308457711442786, "2021": 0.3701392222755641, "2022": 0.47905372104484967}, "climatePlanLink": "https://www.haninge.se/globalassets/globala-katalogen/styrdokument/regler-och-styrande-dokument/bygga-bo-och-miljo/klimat-miljopolitiskt-program/haninge-kommun-klimat-och-miljopolitiskt-program.pdf", "climatePlanYear": 2017, "climatePlanComment": "Klimat– och miljöpolitisk program. ", "bicycleMetrePerCapita": 2.076686121, "totalConsumptionEmission": 5779.9, "electricVehiclePerChargePoints": 47.013513513513516, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1K3YjGk-sbfjZ8quF6OQ_3QcW1yy9Fyb8/view?usp=drive_link"}, {"kommun": "Haparanda", "län": "Norrbottens län", "emissions": {"1990": 61232.8560006957, "2000": 61343.6423654567, "2005": 42906.7893909288, "2010": 34151.1480106581, "2015": 30646.9097967199, "2016": 30366.5687169065, "2017": 28473.3431860238, "2018": 28646.0984306816, "2019": 29051.5958989258, "2020": 28457.5268879606, "2021": 26695.9585691294}, "budget": 59939.042617100014, "emissionBudget": {"2024": 25671.282077814918, "2025": 16727.985798419268, "2026": 10900.332442450992, "2027": 7102.902213557437, "2028": 4628.411116974608, "2029": 3015.976965985146, "2030": 1965.2785436438724, "2031": 1280.6197784887204, "2032": 834.4807011507681, "2033": 543.7664264524017, "2034": 354.3304550111977, "2035": 230.8897078614184, "2036": 150.45293579025378, "2037": 98.03852279761452, "2038": 63.88411034888567, "2039": 41.62832566840659, "2040": 27.125954928245253, "2041": 17.675883402815657, "2042": 11.51800387844061, "2043": 7.5053908379278065, "2044": 4.890681773036283, "2045": 3.186878434662991, "2046": 2.076641791194434, "2047": 1.3531865797043692, "2048": 0.8817668638166029, "2049": 0.5745791554442041, "2050": 0.3744087234600827}, "approximatedHistoricalEmission": {"2021": 26695.9585691294, "2022": 26749.33097979799, "2023": 26210.306528806454, "2024": 25671.282077814918}, "totalApproximatedHistoricalEmission": 79143.2578320766, "trend": {"2024": 25671.282077814918, "2025": 25132.257626823382, "2026": 24593.233175831847, "2027": 24054.208724840544, "2028": 23515.18427384901, "2029": 22976.159822857473, "2030": 22437.135371865937, "2031": 21898.110920874402, "2032": 21359.0864698831, "2033": 20820.062018891564, "2034": 20281.037567900028, "2035": 19742.013116908493, "2036": 19202.98866591719, "2037": 18663.964214925654, "2038": 18124.93976393412, "2039": 17585.915312942583, "2040": 17046.890861951048, "2041": 16507.866410959745, "2042": 15968.84195996821, "2043": 15429.817508976674, "2044": 14890.793057985138, "2045": 14351.768606993603, "2046": 13812.7441560023, "2047": 13273.719705010764, "2048": 12734.695254019229, "2049": 12195.670803027693, "2050": 11656.646352036158}, "trendEmission": 485263.06958806526, "historicalEmissionChangePercent": -2.2270151852603046, "neededEmissionChangePercent": 34.83774691223714, "hitNetZero": "2071-08-05", "budgetRunsOut": "2026-05-25", "electricCarChangePercent": 0.03895314311746793, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.006289308176100629, "2017": 0.005813953488372093, "2018": 0.03076923076923077, "2019": 0.030303030303030304, "2020": 0.09803921568627451, "2021": 0.1651376146788991, "2022": 0.31451612903225806}, "climatePlanLink": "/data/climatePlans/Haparanda klimatstrategi 2020_2050.pdf", "climatePlanYear": 2012, "climatePlanComment": "Klimatstrategi 2020–2050", "bicycleMetrePerCapita": 2.869357799, "totalConsumptionEmission": 6173.1, "electricVehiclePerChargePoints": 3.3333333333333335, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Heby", "län": "Uppsala län", "emissions": {"1990": 93031.7724892031, "2000": 83081.4631290114, "2005": 79795.9806252522, "2010": 69353.5585430307, "2015": 57937.4738947193, "2016": 56029.4589727667, "2017": 52939.4052150503, "2018": 47714.7032588512, "2019": 46888.4636573012, "2020": 44694.1297931206, "2021": 46040.8639867489}, "budget": 104346.18247107483, "emissionBudget": {"2024": 36518.19347387459, "2025": 25734.668569629717, "2026": 18135.430682311355, "2027": 12780.185808223618, "2028": 9006.301099429067, "2029": 6346.81378743206, "2030": 4472.6514034592155, "2031": 3151.9138967774293, "2032": 2221.179411615923, "2033": 1565.283234301132, "2034": 1103.0678524981197, "2035": 777.3409058189216, "2036": 547.7984717720813, "2037": 386.0380476950364, "2038": 272.04415847695043, "2039": 191.71173567818158, "2040": 135.1008226109548, "2041": 95.20665078530158, "2042": 67.09290275645868, "2043": 47.28091538939611, "2044": 33.319246421247335, "2045": 23.48034450975935, "2046": 16.54679014425161, "2047": 11.660657873401377, "2048": 8.21736063944427, "2049": 5.790841015301231, "2050": 4.0808528596796325}, "approximatedHistoricalEmission": {"2021": 46040.8639867489, "2022": 41119.00987679977, "2023": 38818.60167533718, "2024": 36518.19347387459}, "totalApproximatedHistoricalEmission": 121217.1402824487, "trend": {"2024": 36518.19347387459, "2025": 34217.785272412, "2026": 31917.377070949413, "2027": 29616.968869486824, "2028": 27316.560668024234, "2029": 25016.152466561645, "2030": 22715.744265099056, "2031": 20415.336063635536, "2032": 18114.927862172946, "2033": 15814.519660710357, "2034": 13514.111459247768, "2035": 11213.703257785179, "2036": 8913.29505632259, "2037": 6612.88685486, "2038": 4312.478653397411, "2039": 2012.070451934822, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 289983.0146695371, "historicalEmissionChangePercent": -3.6792994931285694, "neededEmissionChangePercent": 29.52918498544978, "hitNetZero": "2039-11-12", "budgetRunsOut": "2027-03-05", "electricCarChangePercent": 0.07250361450039211, "electricCarChangeYearly": {"2015": 0.004545454545454545, "2016": 0.0, "2017": 0.029850746268656716, "2018": 0.05759162303664921, "2019": 0.07425742574257425, "2020": 0.21604938271604937, "2021": 0.4319526627218935, "2022": 0.4838709677419355}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete med handlingsplan pågår 2023", "bicycleMetrePerCapita": 2.222548283, "totalConsumptionEmission": 6058.8, "electricVehiclePerChargePoints": 20.8, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Hedemora", "län": "Dalarnas län", "emissions": {"1990": 84059.691877911, "2000": 76338.4706051928, "2005": 70672.2523658026, "2010": 71587.3777378244, "2015": 55731.8626122277, "2016": 55058.6970512133, "2017": 57269.8436265632, "2018": 55419.4380823729, "2019": 60329.8119198529, "2020": 60331.1230276874, "2021": 58791.6820261748}, "budget": 119361.5910763499, "emissionBudget": {"2024": 62444.12515403051, "2025": 37007.5241725053, "2026": 21932.517142329838, "2027": 12998.310990930242, "2028": 7703.451798099912, "2029": 4565.452361238034, "2030": 2705.7163215943065, "2031": 1603.543358616184, "2032": 950.3403155904156, "2033": 563.2193919694708, "2034": 333.79209351271675, "2035": 197.82195584920763, "2036": 117.23922458491342, "2037": 69.48185160877239, "2038": 41.17843426614331, "2039": 24.404407904365645, "2040": 14.463277581497133, "2041": 8.571664562368534, "2042": 5.079998842292779, "2043": 3.0106624040086296, "2044": 1.7842697197978232, "2045": 1.0574478323270275, "2046": 0.6266966847477716, "2047": 0.3714119246994543, "2048": 0.22011735687491785, "2049": 0.13045259878720075, "2050": 0.07731276066523379}, "approximatedHistoricalEmission": {"2021": 58791.6820261748, "2022": 60816.676690596156, "2023": 61630.40092231333, "2024": 62444.12515403051}, "totalApproximatedHistoricalEmission": 183064.98120301214, "trend": {"2024": 62444.12515403051, "2025": 63257.849385747686, "2026": 64071.57361746463, "2027": 64885.29784918181, "2028": 65699.02208089898, "2029": 66512.74631261616, "2030": 67326.47054433334, "2031": 68140.19477605051, "2032": 68953.91900776769, "2033": 69767.64323948487, "2034": 70581.36747120204, "2035": 71395.09170291899, "2036": 72208.81593463616, "2037": 73022.54016635334, "2038": 73836.26439807052, "2039": 74649.9886297877, "2040": 75463.71286150487, "2041": 76277.43709322205, "2042": 77091.16132493922, "2043": 77904.8855566564, "2044": 78718.60978837335, "2045": 79532.33402009052, "2046": 80346.0582518077, "2047": 81159.78248352488, "2048": 81973.50671524205, "2049": 82787.23094695923, "2050": 83600.9551786764}, "trendEmission": 1898586.0443251883, "historicalEmissionChangePercent": 0.9813313647620255, "neededEmissionChangePercent": 40.734978540864994, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-11-21", "electricCarChangePercent": 0.07311584698923557, "electricCarChangeYearly": {"2015": 0.005780346820809248, "2016": 0.005, "2017": 0.02185792349726776, "2018": 0.046822742474916385, "2019": 0.059027777777777776, "2020": 0.23214285714285715, "2021": 0.40425531914893614, "2022": 0.5061224489795918}, "climatePlanLink": "https://hedemora.se/wp-content/uploads/2022/10/Energi-_och_klimatstrategi_2020-2025.pdf", "climatePlanYear": 2020, "climatePlanComment": "Energi– och klimatstrategi 2020–2025 ", "bicycleMetrePerCapita": 1.72905197, "totalConsumptionEmission": 6114.4, "electricVehiclePerChargePoints": 16.576923076923077, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Helsingborg", "län": "Skåne län", "emissions": {"1990": 980634.250640479, "2000": 730080.51304034, "2005": 679152.080551871, "2010": 530525.886311344, "2015": 473581.331344682, "2016": 464511.702751077, "2017": 438266.82116507, "2018": 441900.17502892, "2019": 447991.34143769, "2020": 426845.992195317, "2021": 433330.272411755}, "budget": 926148.7113491021, "emissionBudget": {"2024": 406698.21712542884, "2025": 262156.8562438424, "2026": 168985.78449990836, "2027": 108927.89825221365, "2028": 70214.7050579337, "2029": 45260.258257782276, "2030": 29174.671827944756, "2031": 18805.93503069375, "2032": 12122.268057182404, "2033": 7813.989711776854, "2034": 5036.882118736652, "2035": 3246.764126117589, "2036": 2092.857653235713, "2037": 1349.05185180325, "2038": 869.5961218576028, "2039": 560.5399185650193, "2040": 361.32290888520066, "2041": 232.90802342762942, "2042": 150.13204544470287, "2043": 96.77481581657051, "2044": 62.38085245951462, "2045": 40.210572562096424, "2046": 25.919654541768104, "2047": 16.707757407012995, "2048": 10.769786963084849, "2049": 6.942183107204266, "2050": 4.4749173274405925}, "approximatedHistoricalEmission": {"2021": 433330.272411755, "2022": 420009.65124240704, "2023": 413353.93418391794, "2024": 406698.21712542884}, "totalApproximatedHistoricalEmission": 1253377.830194917, "trend": {"2024": 406698.21712542884, "2025": 400042.50006693974, "2026": 393386.7830084525, "2027": 386731.0659499634, "2028": 380075.3488914743, "2029": 373419.6318329852, "2030": 366763.914774498, "2031": 360108.1977160089, "2032": 353452.4806575198, "2033": 346796.7635990307, "2034": 340141.04654054344, "2035": 333485.32948205434, "2036": 326829.61242356524, "2037": 320173.89536507614, "2038": 313518.1783065889, "2039": 306862.4612480998, "2040": 300206.7441896107, "2041": 293551.0271311216, "2042": 286895.31007263437, "2043": 280239.59301414527, "2044": 273583.87595565617, "2045": 266928.1588971671, "2046": 260272.44183867984, "2047": 253616.72478019074, "2048": 246961.00772170164, "2049": 240305.29066321254, "2050": 233649.57360472344}, "trendEmission": 8324521.279491996, "historicalEmissionChangePercent": -1.4264330686486872, "neededEmissionChangePercent": 35.5402002750872, "hitNetZero": "2085-01-23", "budgetRunsOut": "2026-04-28", "electricCarChangePercent": 0.06302096256173736, "electricCarChangeYearly": {"2015": 0.019943019943019943, "2016": 0.047507225433526014, "2017": 0.050354345393509886, "2018": 0.07745415318230853, "2019": 0.07881475508969965, "2020": 0.2603010115963484, "2021": 0.3439040068566531, "2022": 0.4743110695936478}, "climatePlanLink": "https://helsingborg.se/bo-bygga-och-miljo/klimat-och-miljo/helsingborgs-klimat-och-energiplan/", "climatePlanYear": 2018, "climatePlanComment": "Klimat– och energiplan 2018–2024 ", "bicycleMetrePerCapita": 3.099622293, "totalConsumptionEmission": 6386.7, "electricVehiclePerChargePoints": 9.923913043478262, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1gjtYP7sEOFc76vDxpxdCi8Qoow--iDmS/view?usp=drive_link"}, {"kommun": "Herrljunga", "län": "Västra Götalands län", "emissions": {"1990": 45510.575936091, "2000": 37577.5855076866, "2005": 31767.7828417623, "2010": 30225.8428770312, "2015": 25988.0341386979, "2016": 25283.9936728749, "2017": 24969.9888472132, "2018": 23801.644870395, "2019": 23530.005353935, "2020": 20804.7144727432, "2021": 21156.8159179098}, "budget": 49036.86490494457, "emissionBudget": {"2024": 18313.843205701327, "2025": 12606.169160259245, "2026": 8677.343095718921, "2027": 5972.971030580108, "2028": 4111.440856792974, "2029": 2830.073313994425, "2030": 1948.0554972231444, "2031": 1340.9264705249218, "2032": 923.0146686875715, "2033": 635.3488407749301, "2034": 437.336656900611, "2035": 301.03675208680687, "2036": 207.21593920165844, "2037": 142.6352269667183, "2038": 98.18167487612091, "2039": 67.58247234205027, "2040": 46.51978664681386, "2041": 32.02147649633365, "2042": 22.041695177797553, "2043": 15.172202517475139, "2044": 10.44364906484839, "2045": 7.188791849046541, "2046": 4.948340175739929, "2047": 3.4061454287467607, "2048": 2.344589553210663, "2049": 1.6138771194649641, "2050": 1.1108977915413003}, "approximatedHistoricalEmission": {"2021": 21156.8159179098, "2022": 20091.85724540893, "2023": 19202.850225555245, "2024": 18313.843205701327}, "totalApproximatedHistoricalEmission": 59030.03703276974, "trend": {"2024": 18313.843205701327, "2025": 17424.836185847642, "2026": 16535.829165993957, "2027": 15646.822146140039, "2028": 14757.815126286354, "2029": 13868.808106432436, "2030": 12979.801086578751, "2031": 12090.794066724833, "2032": 11201.787046871148, "2033": 10312.78002701723, "2034": 9423.773007163545, "2035": 8534.765987309627, "2036": 7645.758967455942, "2037": 6756.751947602024, "2038": 5867.744927748339, "2039": 4978.737907894421, "2040": 4089.7308880407363, "2041": 3200.7238681868184, "2042": 2311.7168483331334, "2043": 1422.7098284792155, "2044": 533.7028086255305, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 188742.3115475824, "historicalEmissionChangePercent": -3.2768408169689938, "neededEmissionChangePercent": 31.165899922443437, "hitNetZero": "2044-08-02", "budgetRunsOut": "2026-11-17", "electricCarChangePercent": 0.0742159424778129, "electricCarChangeYearly": {"2015": 0.0056179775280898875, "2016": 0.005405405405405406, "2017": 0.046153846153846156, "2018": 0.08552631578947369, "2019": 0.07100591715976332, "2020": 0.2608695652173913, "2021": 0.3614457831325301, "2022": 0.551948051948052}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Står bakom klimatlöften inom Västra Götalands klimat 2030. Har miljömål från 2014 (med målår 2020).", "bicycleMetrePerCapita": 3.29488126, "totalConsumptionEmission": 5999.6, "electricVehiclePerChargePoints": 28.90909090909091, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/1Hp5em_ksdYvvOUrcVLzaqOY2p7Ak0xaF/edit"}, {"kommun": "Hjo", "län": "Västra Götalands län", "emissions": {"1990": 34724.4962775096, "2000": 32271.2346918504, "2005": 28275.9749482549, "2010": 28445.0649875301, "2015": 23150.353856557, "2016": 22460.6712002234, "2017": 21354.8414578989, "2018": 20692.4586557533, "2019": 20599.2911400582, "2020": 18618.4349454047, "2021": 18812.6023604529}, "budget": 43157.67850720536, "emissionBudget": {"2024": 16215.533948951634, "2025": 11136.655883548501, "2026": 7648.536561239409, "2027": 5252.933388651669, "2028": 3607.65866315479, "2029": 2477.7015177754934, "2030": 1701.6589939300432, "2031": 1168.6812599698233, "2032": 802.6378330068658, "2033": 551.2431088272882, "2034": 378.58789174092436, "2035": 260.0101288844313, "2036": 178.57218521072605, "2037": 122.64147349854728, "2038": 84.2288568297781, "2039": 57.84748112093819, "2040": 39.729033468898386, "2041": 27.28547673619516, "2042": 18.739374601304398, "2043": 12.870002743334165, "2044": 8.838980709735083, "2045": 6.070517741539253, "2046": 4.169166882529291, "2047": 2.863339378029994, "2048": 1.9665109660478044, "2049": 1.3505787715066166, "2050": 0.9275631051833048}, "approximatedHistoricalEmission": {"2021": 18812.6023604529, "2022": 17747.910900079412, "2023": 16981.722424515523, "2024": 16215.533948951634}, "totalApproximatedHistoricalEmission": 52243.701479297204, "trend": {"2024": 16215.533948951634, "2025": 15449.345473387744, "2026": 14683.156997823622, "2027": 13916.968522259733, "2028": 13150.780046695843, "2029": 12384.591571131721, "2030": 11618.403095567832, "2031": 10852.214620003942, "2032": 10086.026144440053, "2033": 9319.83766887593, "2034": 8553.649193312041, "2035": 7787.460717748152, "2036": 7021.27224218403, "2037": 6255.0837666201405, "2038": 5488.895291056251, "2039": 4722.706815492362, "2040": 3956.5183399282396, "2041": 3190.32986436435, "2042": 2424.141388800461, "2043": 1657.9529132363386, "2044": 891.7644376724493, "2045": 125.5759621085599, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 171644.4420471856, "historicalEmissionChangePercent": -3.3379751986796222, "neededEmissionChangePercent": 31.321065845824304, "hitNetZero": "2045-02-23", "budgetRunsOut": "2026-11-08", "electricCarChangePercent": 0.0739392676549078, "electricCarChangeYearly": {"2015": 0.015151515151515152, "2016": 0.015151515151515152, "2017": 0.014492753623188406, "2018": 0.023696682464454975, "2019": 0.14659685863874344, "2020": 0.1597222222222222, "2021": 0.43147208121827413, "2022": 0.5252525252525253}, "climatePlanLink": "https://hjo.se/globalassets/dokument/styrdokument/ovrigt/hallbarhetsstrategi-for-hjo-kommun.pdf", "climatePlanYear": 2018, "climatePlanComment": "Hållbarhetsstrategi", "bicycleMetrePerCapita": 2.510562925, "totalConsumptionEmission": 6153.7, "electricVehiclePerChargePoints": 32.583333333333336, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1I_ntkS2087DySPdOKSaj0XiOlneNkryg/view?usp=drive_link"}, {"kommun": "Hofors", "län": "Gävleborgs län", "emissions": {"1990": 152849.079553738, "2000": 145840.783097756, "2005": 132563.270563869, "2010": 131983.968361946, "2015": 108607.062471678, "2016": 102151.316390874, "2017": 112356.401887878, "2018": 106411.729501505, "2019": 93703.8371939031, "2020": 75333.0951457577, "2021": 88139.5693861936}, "budget": 203423.5823121189, "emissionBudget": {"2024": 69452.25461668521, "2025": 49364.058776077654, "2026": 35086.122290731655, "2027": 24937.90032509947, "2028": 17724.924614678126, "2029": 12598.211898369573, "2030": 8954.336703062067, "2031": 6364.406825240111, "2032": 4523.581766063296, "2033": 3215.1923276036528, "2034": 2285.23816702836, "2035": 1624.2616142143606, "2036": 1154.46426086997, "2037": 820.5499150890802, "2038": 583.21611675126, "2039": 414.52815067501734, "2040": 294.6310685980862, "2041": 209.41271766921722, "2042": 148.8427087145695, "2043": 105.79181715450692, "2044": 75.19285743660407, "2045": 53.44426404193395, "2046": 37.9861792244313, "2047": 26.999152068750256, "2048": 19.189985076537127, "2049": 13.63952194868924, "2050": 9.694460847509227}, "approximatedHistoricalEmission": {"2021": 88139.5693861936, "2022": 79001.64650530554, "2023": 74226.95056099445, "2024": 69452.25461668521}, "totalApproximatedHistoricalEmission": 232024.5090677394, "trend": {"2024": 69452.25461668521, "2025": 64677.55867237598, "2026": 59902.86272806674, "2027": 55128.16678375751, "2028": 50353.47083944827, "2029": 45578.77489513904, "2030": 40804.078950829804, "2031": 36029.38300652057, "2032": 31254.687062211335, "2033": 26479.9911179021, "2034": 21705.295173592865, "2035": 16930.59922928363, "2036": 12155.903284974396, "2037": 7381.207340665162, "2038": 2606.511396355927, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 505714.61778946593, "historicalEmissionChangePercent": -2.6320628443981593, "neededEmissionChangePercent": 28.92374905822217, "hitNetZero": "2038-07-15", "budgetRunsOut": "2027-04-22", "electricCarChangePercent": 0.05644063397675594, "electricCarChangeYearly": {"2015": 0.027586206896551724, "2016": 0.006329113924050633, "2017": 0.021739130434782608, "2018": 0.048, "2019": 0.04672897196261682, "2020": 0.10891089108910891, "2021": 0.2702702702702703, "2022": 0.4791666666666667}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Hänvisar till Sandvikens kommun Energi- och klimatstrategi från 2007.", "bicycleMetrePerCapita": 3.464511233, "totalConsumptionEmission": 6425.2, "electricVehiclePerChargePoints": 25.857142857142858, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Huddinge", "län": "Stockholms län", "emissions": {"1990": 198892.114399642, "2000": 194913.096899972, "2005": 175815.477287792, "2010": 162737.202060496, "2015": 135713.218811943, "2016": 130530.464621246, "2017": 117852.19984323, "2018": 117965.103059443, "2019": 115992.028529849, "2020": 104635.056217558, "2021": 104930.608832851}, "budget": 245167.3485049594, "emissionBudget": {"2024": 86945.77897557989, "2025": 60986.114147065055, "2026": 42777.30515018416, "2027": 30005.155460458802, "2028": 21046.42522584022, "2029": 14762.530238198953, "2030": 10354.83682835445, "2031": 7263.161803008571, "2032": 5094.5775632339055, "2033": 3573.4740945816825, "2034": 2506.53110020382, "2035": 1758.148510385224, "2036": 1233.2127793341276, "2037": 865.0087009883945, "2038": 606.740430625153, "2039": 425.58410075476814, "2040": 298.5161655184677, "2041": 209.3872889466743, "2042": 146.86989127135146, "2043": 103.01850255844393, "2044": 72.25995592096045, "2045": 50.685081805930054, "2046": 35.55188326552302, "2047": 24.937049693732515, "2048": 17.491519163226418, "2049": 12.269023256364317, "2050": 8.605823785830763}, "approximatedHistoricalEmission": {"2021": 104930.608832851, "2022": 97374.26597972587, "2023": 92160.02247765288, "2024": 86945.77897557989}, "totalApproximatedHistoricalEmission": 285472.4823615942, "trend": {"2024": 86945.77897557989, "2025": 81731.5354735069, "2026": 76517.29197143391, "2027": 71303.04846936278, "2028": 66088.80496728979, "2029": 60874.5614652168, "2030": 55660.31796314381, "2031": 50446.07446107082, "2032": 45231.83095899783, "2033": 40017.5874569267, "2034": 34803.34395485371, "2035": 29589.100452780724, "2036": 24374.856950707734, "2037": 19160.613448634744, "2038": 13946.369946561754, "2039": 8732.126444490626, "2040": 3517.8829424176365, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 725468.2368151862, "historicalEmissionChangePercent": -4.102879391489345, "neededEmissionChangePercent": 29.85730317719741, "hitNetZero": "2040-08-30", "budgetRunsOut": "2027-02-10", "electricCarChangePercent": 0.06869420554248744, "electricCarChangeYearly": {"2015": 0.03406813627254509, "2016": 0.039336366069039334, "2017": 0.08998849252013809, "2018": 0.07303370786516854, "2019": 0.10006476683937823, "2020": 0.28342245989304815, "2021": 0.3985611510791367, "2022": 0.5150476190476191}, "climatePlanLink": "https://www.huddinge.se/organisation-och-styrning/sa-arbetar-vi-med/miljo-och-klimat/klimat-och-energi/", "climatePlanYear": 2022, "climatePlanComment": "Miljöprogram 2022–2025", "bicycleMetrePerCapita": 2.050996867, "totalConsumptionEmission": 6031.7, "electricVehiclePerChargePoints": 26.955555555555556, "procurementScore": "2", "procurementLink": "https://www.huddinge.se/organisation-och-styrning/sa-arbetar-vi-med/miljo-och-klimat/miljoprogram-2022-2025/"}, {"kommun": "Hudiksvall", "län": "Gävleborgs län", "emissions": {"1990": 317043.145346285, "2000": 337071.697333743, "2005": 268638.331148103, "2010": 216141.405198457, "2015": 149491.525882212, "2016": 151974.394519156, "2017": 135383.031548176, "2018": 141536.434797508, "2019": 125289.509697595, "2020": 116817.27677324, "2021": 118289.914595419}, "budget": 278097.5355902612, "emissionBudget": {"2024": 96823.31442987174, "2025": 68355.68026517046, "2026": 48257.99500902712, "2027": 34069.35712229181, "2028": 24052.410269202675, "2029": 16980.60922257667, "2030": 11988.033063740606, "2031": 8463.355752057683, "2032": 5974.991076938003, "2033": 4218.24621525675, "2034": 2978.0130051083784, "2035": 2102.4285937881978, "2036": 1484.2802850074709, "2037": 1047.8776644167929, "2038": 739.7845344136374, "2039": 522.2758113297483, "2040": 368.71820159953654, "2041": 260.30903450161895, "2042": 183.7739312819707, "2043": 129.74139711858692, "2044": 91.59530956790428, "2045": 64.66479413021749, "2046": 45.65228961646148, "2047": 32.22977162856806, "2048": 22.75369292441993, "2049": 16.06373596640343, "2050": 11.340735504142433}, "approximatedHistoricalEmission": {"2021": 118289.914595419, "2022": 109252.78523007222, "2023": 103038.04982997105, "2024": 96823.31442987174}, "totalApproximatedHistoricalEmission": 319847.44957268867, "trend": {"2024": 96823.31442987174, "2025": 90608.57902977243, "2026": 84393.84362967126, "2027": 78179.10822957195, "2028": 71964.37282947265, "2029": 65749.63742937148, "2030": 59534.90202927217, "2031": 53320.16662917286, "2032": 47105.43122907169, "2033": 40890.695828972384, "2034": 34675.96042887308, "2035": 28461.225028771907, "2036": 22246.4896286726, "2037": 16031.754228573292, "2038": 9817.018828472123, "2039": 3602.2834283728153, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 754993.1256510206, "historicalEmissionChangePercent": -3.6152690571388657, "neededEmissionChangePercent": 29.401631551582692, "hitNetZero": "2039-07-27", "budgetRunsOut": "2027-03-15", "electricCarChangePercent": 0.0678566222826768, "electricCarChangeYearly": {"2015": 0.009016393442622951, "2016": 0.015003750937734433, "2017": 0.03383162863886703, "2018": 0.053784860557768925, "2019": 0.0663594470046083, "2020": 0.22959889349930843, "2021": 0.3163771712158809, "2022": 0.5223325062034739}, "climatePlanLink": "https://www.hudiksvall.se/Sidor/Kommun-och-politik/Forfattningssamling---Styrdokument/Policy-riktlinjer-planer-och-program/Energi--och-klimatstrategi-2017-2050.html", "climatePlanYear": 2017, "climatePlanComment": "Energi– och klimatstrategi 2017–2050", "bicycleMetrePerCapita": 2.080051418, "totalConsumptionEmission": 6218.1, "electricVehiclePerChargePoints": 28.245283018867923, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Hultsfred", "län": "Kalmar län", "emissions": {"1990": 107199.911638407, "2000": 83086.6705675924, "2005": 84120.6454661191, "2010": 70794.0928468489, "2015": 49581.0124805065, "2016": 46682.7057616999, "2017": 45614.2872271839, "2018": 43984.8500093569, "2019": 43617.8008977714, "2020": 39129.5890152036, "2021": 40751.1227109742}, "budget": 91642.81593461835, "emissionBudget": {"2024": 34853.25491517037, "2025": 23827.258726398013, "2026": 16289.389894761138, "2027": 11136.162417608439, "2028": 7613.1834398069805, "2029": 5204.715943842944, "2030": 3558.1788183971235, "2031": 2432.531696310379, "2032": 1662.9884993301755, "2033": 1136.8940240734119, "2034": 777.2320869894436, "2035": 531.3509476297137, "2036": 363.2554989341678, "2037": 248.33786049416685, "2038": 169.7749741869618, "2039": 116.06583789852927, "2040": 79.34784729964181, "2041": 54.24577106479541, "2042": 37.08485836171485, "2043": 25.35288360203603, "2044": 17.332375943545735, "2045": 11.849194772632396, "2046": 8.10064455196995, "2047": 5.537966369573181, "2048": 3.786003856083929, "2049": 2.588283178647605, "2050": 1.7694672450226965}, "approximatedHistoricalEmission": {"2021": 40751.1227109742, "2022": 37966.99699595617, "2023": 36410.125955563504, "2024": 34853.25491517037}, "totalApproximatedHistoricalEmission": 112179.31176459196, "trend": {"2024": 34853.25491517037, "2025": 33296.38387477724, "2026": 31739.51283438457, "2027": 30182.64179399144, "2028": 28625.770753598772, "2029": 27068.89971320564, "2030": 25512.028672812972, "2031": 23955.15763241984, "2032": 22398.286592026707, "2033": 20841.41555163404, "2034": 19284.544511240907, "2035": 17727.67347084824, "2036": 16170.802430455107, "2037": 14613.931390061975, "2038": 13057.060349669307, "2039": 11500.189309276175, "2040": 9943.318268883508, "2041": 8386.447228490375, "2042": 6829.576188097708, "2043": 5272.705147704575, "2044": 3715.8341073114425, "2045": 2158.9630669187754, "2046": 602.0920265256427, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 390309.86237192014, "historicalEmissionChangePercent": -3.1144719075942295, "neededEmissionChangePercent": 31.635484879700975, "hitNetZero": "2046-05-16", "budgetRunsOut": "2026-10-21", "electricCarChangePercent": 0.048090092273864106, "electricCarChangeYearly": {"2015": 0.00847457627118644, "2016": 0.008547008547008548, "2017": 0.008771929824561403, "2018": 0.03017241379310345, "2019": 0.019455252918287938, "2020": 0.15384615384615385, "2021": 0.21238938053097345, "2022": 0.3793103448275862}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.781709192, "totalConsumptionEmission": 5728.2, "electricVehiclePerChargePoints": 5.3584905660377355, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Hylte", "län": "Hallands län", "emissions": {"1990": 193378.973771992, "2000": 118682.85512001, "2005": 129891.043642742, "2010": 76457.7400944906, "2015": 49630.6127580872, "2016": 48437.5674554573, "2017": 43925.6170766203, "2018": 41833.8507574929, "2019": 40280.587209836, "2020": 38436.5647237512, "2021": 43088.441163385}, "budget": 90538.42447587111, "emissionBudget": {"2024": 34388.98799616704, "2025": 23521.357688734348, "2026": 16088.12296491678, "2027": 11003.943903214791, "2028": 7526.470408583451, "2029": 5147.950344851607, "2030": 3521.0917354879466, "2031": 2408.354039801623, "2032": 1647.2644329515085, "2033": 1126.6948576591192, "2034": 770.6360174370819, "2035": 527.0991230093679, "2036": 360.5249160313587, "2037": 246.59159806097458, "2038": 168.66356118636813, "2039": 115.36239310567892, "2040": 78.90549475807478, "2041": 53.96972908938447, "2042": 36.91418027238817, "2043": 25.24853706279582, "2044": 17.269477992125847, "2045": 11.81196634794233, "2046": 8.07914107586451, "2047": 5.525965669136176, "2048": 3.779646411633441, "2049": 2.5852000993713564, "2050": 1.7682234859904216}, "approximatedHistoricalEmission": {"2021": 43088.441163385, "2022": 37479.95586147439, "2023": 35934.471928820945, "2024": 34388.98799616704}, "totalApproximatedHistoricalEmission": 112153.14237007135, "trend": {"2024": 34388.98799616704, "2025": 32843.50406351313, "2026": 31298.020130859688, "2027": 29752.53619820578, "2028": 28207.05226555234, "2029": 26661.56833289843, "2030": 25116.084400244523, "2031": 23570.60046759108, "2032": 22025.116534937173, "2033": 20479.632602283265, "2034": 18934.148669629823, "2035": 17388.664736975916, "2036": 15843.180804322474, "2037": 14297.696871668566, "2038": 12752.212939014658, "2039": 11206.729006361216, "2040": 9661.245073707309, "2041": 8115.761141053401, "2042": 6570.277208399959, "2043": 5024.793275746051, "2044": 3479.309343092609, "2045": 1933.8254104387015, "2046": 388.3414777847938, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 382744.7949523644, "historicalEmissionChangePercent": -2.1115060897887843, "neededEmissionChangePercent": 31.602064907068467, "hitNetZero": "2046-03-27", "budgetRunsOut": "2026-10-23", "electricCarChangePercent": 0.07418984128266769, "electricCarChangeYearly": {"2015": 0.015625, "2016": 0.00980392156862745, "2017": 0.06565656565656566, "2018": 0.04205607476635514, "2019": 0.06779661016949153, "2020": 0.3511450381679389, "2021": 0.3595505617977528, "2022": 0.5300546448087432}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.649667798, "totalConsumptionEmission": 5849.4, "electricVehiclePerChargePoints": 17.0, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Hällefors", "län": "Örebro län", "emissions": {"1990": 94065.6820430102, "2000": 62696.5452609116, "2005": 53852.6459042066, "2010": 35048.8178361106, "2015": 39138.1734630077, "2016": 37184.1186301126, "2017": 38459.9352508168, "2018": 36648.5282864067, "2019": 34429.5445907693, "2020": 29768.6788320136, "2021": 31849.0491117575}, "budget": 73310.97454756538, "emissionBudget": {"2024": 26626.437599983998, "2025": 18517.312308691326, "2026": 12877.834439925879, "2027": 8955.868816032373, "2028": 6228.344262705304, "2029": 4331.491790649052, "2030": 3012.3288535612937, "2031": 2094.919155009685, "2032": 1456.9080865251528, "2033": 1013.2043365523427, "2034": 704.6312921887605, "2035": 490.03467515849184, "2036": 340.7938102092693, "2037": 237.0044957316299, "2038": 164.8243873986781, "2039": 114.62684957719932, "2040": 79.7170543228681, "2041": 55.43909453461201, "2042": 38.555027263920955, "2043": 26.81303040390812, "2044": 18.647077967797728, "2045": 12.968079754478127, "2046": 9.01862977185626, "2047": 6.271991266380468, "2048": 4.361846027687204, "2049": 3.0334386578682655, "2050": 2.109599933752983}, "approximatedHistoricalEmission": {"2021": 31849.0491117575, "2022": 29535.626407840755, "2023": 28081.032003912143, "2024": 26626.437599983998}, "totalApproximatedHistoricalEmission": 86854.40176762364, "trend": {"2024": 26626.437599983998, "2025": 25171.843196055386, "2026": 23717.248792126775, "2027": 22262.65438819863, "2028": 20808.059984270018, "2029": 19353.465580341406, "2030": 17898.87117641326, "2031": 16444.27677248465, "2032": 14989.682368556038, "2033": 13535.087964627892, "2034": 12080.49356069928, "2035": 10625.899156770669, "2036": 9171.304752842523, "2037": 7716.710348913912, "2038": 6262.1159449853, "2039": 4807.5215410571545, "2040": 3352.927137128543, "2041": 1898.3327332003973, "2042": 443.7383292717859, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 243853.45252793562, "historicalEmissionChangePercent": -3.145866745714621, "neededEmissionChangePercent": 30.45516419852405, "hitNetZero": "2042-04-17", "budgetRunsOut": "2026-12-31", "electricCarChangePercent": 0.02273222109920967, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.012295081967213115, "2017": 0.004366812227074236, "2018": 0.01092896174863388, "2019": 0.018072289156626505, "2020": 0.08391608391608392, "2021": 0.1450381679389313, "2022": 0.14285714285714285}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Saknar plan", "bicycleMetrePerCapita": 1.564050556, "totalConsumptionEmission": 6045.2, "electricVehiclePerChargePoints": 18.0, "procurementScore": "2", "procurementLink": "https://www.orebro.se/fordjupning/fordjupning/sa-arbetar-vi-med/maltider-i-kommunens-kok-och-serveringar.html"}, {"kommun": "Härjedalen", "län": "Jämtlands län", "emissions": {"1990": 129790.735120347, "2000": 125855.927927557, "2005": 116687.902314254, "2010": 100016.171616061, "2015": 86135.1220868306, "2016": 82471.1527291391, "2017": 73679.1523256813, "2018": 44104.7123920889, "2019": 46966.5873387135, "2020": 44292.8261846297, "2021": 41363.3668840834}, "budget": 124125.14248918142, "emissionBudget": {"2024": 8990.8849164024, "2025": 8362.665717895596, "2026": 7778.342016332876, "2027": 7234.846706066163, "2028": 6729.326989012202, "2029": 6259.129400361604, "2030": 5821.78588058503, "2031": 5415.000820628685, "2032": 5036.639012299564, "2033": 4684.71444059222, "2034": 4357.379859128163, "2035": 4052.917093989521, "2036": 3769.7280250519752, "2037": 3506.3261974781, "2038": 3261.3290193399885, "2039": 3033.450504416614, "2040": 2821.494522072977, "2041": 2624.3485187897677, "2042": 2440.9776783879624, "2043": 2270.419490295452, "2044": 2111.778697344633, "2045": 1964.222596582036, "2046": 1826.9766684240014, "2047": 1699.3205112159287, "2048": 1580.5840598556538, "2049": 1470.1440686325802, "2050": 1367.4208398210335}, "approximatedHistoricalEmission": {"2021": 41363.3668840834, "2022": 25946.91946527362, "2023": 17468.90219083801, "2024": 8990.8849164024}, "totalApproximatedHistoricalEmission": 68592.94755635453, "trend": {"2024": 8990.8849164024, "2025": 512.8676419630647, "2026": 0, "2027": 0, "2028": 0, "2029": 0, "2030": 0, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 5008.310100164264, "historicalEmissionChangePercent": -10.145311151887359, "neededEmissionChangePercent": 6.987289953636469, "hitNetZero": "2025-01-22", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.046836886718426424, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.02830188679245283, "2017": 0.008264462809917356, "2018": 0.0594059405940594, "2019": 0.027522935779816515, "2020": 0.12857142857142856, "2021": 0.1937984496124031, "2022": 0.3968253968253968}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.525898392, "totalConsumptionEmission": 6683.0, "electricVehiclePerChargePoints": 1.8918918918918919, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1YvVLwdKhsG7IxhG-71kaQjZfKz2cLTIR/view?usp=drive_link"}, {"kommun": "Härnösand", "län": "Västernorrlands län", "emissions": {"1990": 184667.092199817, "2000": 128241.831967433, "2005": 110079.393017511, "2010": 99019.4416818916, "2015": 77576.6971909888, "2016": 75394.6469951961, "2017": 67340.8138974701, "2018": 66580.4302765076, "2019": 66980.5378539768, "2020": 59234.9069116391, "2021": 59782.1249581941}, "budget": 140085.31828122708, "emissionBudget": {"2024": 49113.56410292536, "2025": 34589.0700954669, "2026": 24359.94601332264, "2027": 17155.909891019677, "2028": 12082.343861838532, "2029": 8509.197945375232, "2030": 5992.748634002228, "2031": 4220.496035099805, "2032": 2972.3567381462353, "2033": 2093.3332256037534, "2034": 1474.2658366604944, "2035": 1038.2770074828404, "2036": 731.2243948550351, "2037": 514.977324719337, "2038": 362.68161571341153, "2039": 255.42474991142353, "2040": 179.8872621072331, "2041": 126.68869042509787, "2042": 89.22268366094016, "2043": 62.8366056429228, "2044": 44.253757527949574, "2045": 31.166467941813863, "2046": 21.94951972958754, "2047": 15.458325828227066, "2048": 10.886791162428883, "2049": 7.667209446311244, "2050": 5.399763788661578}, "approximatedHistoricalEmission": {"2021": 59782.1249581941, "2022": 55260.95502499677, "2023": 52187.259563961066, "2024": 49113.56410292536}, "totalApproximatedHistoricalEmission": 161896.05911951757, "trend": {"2024": 49113.56410292536, "2025": 46039.868641890585, "2026": 42966.17318085488, "2027": 39892.47771981917, "2028": 36818.7822587844, "2029": 33745.08679774869, "2030": 30671.391336712986, "2031": 27597.69587567728, "2032": 24524.000414642505, "2033": 21450.3049536068, "2034": 18376.609492571093, "2035": 15302.914031535387, "2036": 12229.218570500612, "2037": 9155.523109464906, "2038": 6081.8276484292, "2039": 3008.1321873944253, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 392416.7882710956, "historicalEmissionChangePercent": -4.110568386525487, "neededEmissionChangePercent": 29.573284433237333, "hitNetZero": "2039-12-20", "budgetRunsOut": "2027-03-02", "electricCarChangePercent": 0.07240952545804048, "electricCarChangeYearly": {"2015": 0.01303538175046555, "2016": 0.014586709886547812, "2017": 0.026415094339622643, "2018": 0.03915171288743882, "2019": 0.07331975560081466, "2020": 0.2087912087912088, "2021": 0.37305699481865284, "2022": 0.5428571428571428}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Har eget klimatlöfte. ", "bicycleMetrePerCapita": 2.233581042, "totalConsumptionEmission": 6107.7, "electricVehiclePerChargePoints": 12.0, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1Uo30oDKp9v3A74kk-J-d1FKjRukx6Hit/view?usp=drive_link"}, {"kommun": "Härryda", "län": "Västra Götalands län", "emissions": {"1990": 177926.213568809, "2000": 165038.594365017, "2005": 160426.490900806, "2010": 161074.377398724, "2015": 143747.172470026, "2016": 139382.835857454, "2017": 136410.267370231, "2018": 141430.152052833, "2019": 142775.044744714, "2020": 130848.39525732, "2021": 131690.249963079}, "budget": 286244.52394768555, "emissionBudget": {"2024": 127995.97295653028, "2025": 81846.27102485062, "2026": 52336.1159413065, "2027": 33466.0210847019, "2028": 21399.650071429303, "2029": 13683.880196590251, "2030": 8750.076595160344, "2031": 5595.1849417865415, "2032": 3577.8080560015005, "2033": 2287.8082885142253, "2034": 1462.9255351512336, "2035": 935.4591169819588, "2036": 598.173822602804, "2037": 382.4987276853399, "2038": 244.58655854295483, "2039": 156.39943427236426, "2040": 100.00869706999755, "2041": 63.94997230118396, "2042": 40.89243312968894, "2043": 26.14842551284616, "2044": 16.72045668283921, "2045": 10.691797544190731, "2046": 6.836806966121193, "2047": 4.3717559464451385, "2048": 2.7954935907926575, "2049": 1.7875619114825878, "2050": 1.1430459357544918}, "approximatedHistoricalEmission": {"2021": 131690.249963079, "2022": 131344.17805271782, "2023": 129670.07550462382, "2024": 127995.97295653028}, "totalApproximatedHistoricalEmission": 390857.3650171463, "trend": {"2024": 127995.97295653028, "2025": 126321.87040843675, "2026": 124647.76786034275, "2027": 122973.66531224921, "2028": 121299.56276415568, "2029": 119625.46021606168, "2030": 117951.35766796814, "2031": 116277.25511987414, "2032": 114603.1525717806, "2033": 112929.05002368707, "2034": 111254.94747559307, "2035": 109580.84492749954, "2036": 107906.742379406, "2037": 106232.639831312, "2038": 104558.53728321847, "2039": 102884.43473512447, "2040": 101210.33218703093, "2041": 99536.2296389374, "2042": 97862.1270908434, "2043": 96188.02454274986, "2044": 94513.92199465632, "2045": 92839.81944656232, "2046": 91165.71689846879, "2047": 89491.61435037479, "2048": 87817.51180228125, "2049": 86143.40925418772, "2050": 84469.30670609372}, "trendEmission": 2762048.635614115, "historicalEmissionChangePercent": -1.3746573641529471, "neededEmissionChangePercent": 36.055588989001194, "hitNetZero": "2100-05-28", "budgetRunsOut": "2026-04-09", "electricCarChangePercent": 0.08968315530502405, "electricCarChangeYearly": {"2015": 0.016592920353982302, "2016": 0.025329280648429583, "2017": 0.031512605042016806, "2018": 0.06702702702702702, "2019": 0.1457286432160804, "2020": 0.3130227001194743, "2021": 0.45492227979274613, "2022": 0.6540483701366983}, "climatePlanLink": "https://www.harryda.se/download/18.c0a4fce181800179101eedd/1660123092984/Energi-%20och%20klimatplan.pdf", "climatePlanYear": 2021, "climatePlanComment": "Energi– och klimatplan.", "bicycleMetrePerCapita": 3.211264818, "totalConsumptionEmission": 6205.1, "electricVehiclePerChargePoints": 8.007142857142858, "procurementScore": "2", "procurementLink": "https://goteborg.se/wps/portal/start/foretag-och-organisationer/upphandling-och-inkop/hallbar-upphandling/ekologisk-hallbarhet-i-upphandling"}, {"kommun": "Hässleholm", "län": "Skåne län", "emissions": {"1990": 276612.279032317, "2000": 245996.775910537, "2005": 242108.811148532, "2010": 242125.433158102, "2015": 191806.911137593, "2016": 186680.954094786, "2017": 188135.843672401, "2018": 187638.562737101, "2019": 188366.2714246, "2020": 197529.288775962, "2021": 174606.772585002}, "budget": 389475.68463331176, "emissionBudget": {"2024": 181464.94665894425, "2025": 113879.55845039283, "2026": 71465.88953749997, "2027": 44848.9038496841, "2028": 28145.233894594767, "2029": 17662.732485869343, "2030": 11084.367606811671, "2031": 6956.070095112962, "2032": 4365.328982628621, "2033": 2739.491820239912, "2034": 1719.1866782609134, "2035": 1078.8872640075833, "2036": 677.0630223910524, "2037": 424.89549333125234, "2038": 266.6460496035415, "2039": 167.33553752650408, "2040": 105.01255188635722, "2041": 65.90133940878047, "2042": 41.35683266292951, "2043": 25.95376092889654, "2044": 16.28745875788741, "2045": 10.221305248077666, "2046": 6.414449456320916, "2047": 4.025431276052913, "2048": 2.526186708394307, "2049": 1.5853256081235325, "2050": 0.9948818412435236}, "approximatedHistoricalEmission": {"2021": 174606.772585002, "2022": 183584.46941203158, "2023": 182524.70803548815, "2024": 181464.94665894425}, "totalApproximatedHistoricalEmission": 544145.0370694929, "trend": {"2024": 181464.94665894425, "2025": 180405.1852824008, "2026": 179345.4239058569, "2027": 178285.66252931347, "2028": 177225.90115276957, "2029": 176166.13977622613, "2030": 175106.37839968223, "2031": 174046.61702313833, "2032": 172986.8556465949, "2033": 171927.094270051, "2034": 170867.33289350756, "2035": 169807.57151696365, "2036": 168747.81014042022, "2037": 167688.04876387632, "2038": 166628.28738733288, "2039": 165568.52601078898, "2040": 164508.76463424508, "2041": 163449.00325770164, "2042": 162389.24188115774, "2043": 161329.4805046143, "2044": 160269.7191280704, "2045": 159209.95775152696, "2046": 158150.19637498306, "2047": 157090.43499843962, "2048": 156030.67362189572, "2049": 154970.91224535182, "2050": 153911.15086880838}, "trendEmission": 4359889.267860786, "historicalEmissionChangePercent": -1.418292510141253, "neededEmissionChangePercent": 37.24432153586959, "hitNetZero": "2195-02-12", "budgetRunsOut": "2026-02-28", "electricCarChangePercent": 0.05603986261884942, "electricCarChangeYearly": {"2015": 0.009428032683846637, "2016": 0.016483516483516484, "2017": 0.03430232558139535, "2018": 0.03853211009174312, "2019": 0.04564032697547684, "2020": 0.20342205323193915, "2021": 0.30058774139378674, "2022": 0.4054794520547945}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Ny energi– och klimatplan hösten 2023.", "bicycleMetrePerCapita": 3.359049704, "totalConsumptionEmission": 6088.8, "electricVehiclePerChargePoints": 19.058139534883722, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1tXmK9utLkEmJ-DLafEMVVuZRr_L8idBL/view?usp=drive_link"}, {"kommun": "Håbo", "län": "Uppsala län", "emissions": {"1990": 100893.439927914, "2000": 99964.0002846107, "2005": 91853.5644896127, "2010": 85393.4883317571, "2015": 77333.3591624511, "2016": 74847.0464331836, "2017": 71279.731006438, "2018": 72928.0631004936, "2019": 72508.8565213722, "2020": 66571.6213817533, "2021": 70300.7397701479}, "budget": 149825.2154307345, "emissionBudget": {"2024": 64448.57760408381, "2025": 41917.744833903074, "2026": 27263.554872448705, "2027": 17732.38105313908, "2028": 11533.24793060944, "2029": 7501.2942385061, "2030": 4878.887160944904, "2031": 3173.2577302518366, "2032": 2063.9060282453515, "2033": 1342.3769688853613, "2034": 873.0901029083268, "2035": 567.8630857540969, "2036": 369.34158695419706, "2037": 240.22200293701806, "2038": 156.24184422597676, "2039": 101.62064086000755, "2040": 66.09467969325026, "2041": 42.98837959279745, "2042": 27.959902197743258, "2043": 18.185289566912356, "2044": 11.827822368389556, "2045": 7.692887235225309, "2046": 5.003500405286393, "2047": 3.254306938371212, "2048": 2.116620923612142, "2049": 1.3766630557949209, "2050": 0.8953899812897672}, "approximatedHistoricalEmission": {"2021": 70300.7397701479, "2022": 67049.97637300054, "2023": 65749.27698854217, "2024": 64448.57760408381}, "totalApproximatedHistoricalEmission": 200173.91204865856, "trend": {"2024": 64448.57760408381, "2025": 63147.87821962545, "2026": 61847.17883516662, "2027": 60546.479450708255, "2028": 59245.78006624989, "2029": 57945.08068179153, "2030": 56644.381297333166, "2031": 55343.6819128748, "2032": 54042.98252841644, "2033": 52742.28314395808, "2034": 51441.583759499714, "2035": 50140.884375040885, "2036": 48840.18499058252, "2037": 47539.48560612416, "2038": 46238.786221665796, "2039": 44938.08683720743, "2040": 43637.38745274907, "2041": 42336.68806829071, "2042": 41035.988683832344, "2043": 39735.28929937398, "2044": 38434.58991491515, "2045": 37133.89053045679, "2046": 35833.191145998426, "2047": 34532.49176154006, "2048": 33231.7923770817, "2049": 31931.092992623337, "2050": 30630.393608164974}, "trendEmission": 1236026.6257592307, "historicalEmissionChangePercent": -1.4716938806742024, "neededEmissionChangePercent": 34.959394928140455, "hitNetZero": "2073-07-07", "budgetRunsOut": "2026-05-20", "electricCarChangePercent": 0.06332352673472733, "electricCarChangeYearly": {"2015": 0.022900763358778626, "2016": 0.024691358024691357, "2017": 0.0328719723183391, "2018": 0.049910873440285206, "2019": 0.10841121495327102, "2020": 0.24161073825503357, "2021": 0.4116666666666667, "2022": 0.4085554866707998}, "climatePlanLink": "https://www.habo.se/download/18.385a44c917cdfc2502fd07bb/1637050665118/H%C3%A5llbarhetsstrategi_AntagenKF20211108.pdf", "climatePlanYear": 2021, "climatePlanComment": "Hållbarhetsstrategi 2021. Uppdateras senast 2026.", "bicycleMetrePerCapita": 3.741361443, "totalConsumptionEmission": 6181.4, "electricVehiclePerChargePoints": 129.66666666666666, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/12ilXQYvNJP-uJfo6HZEdGpzmcIXzxbrv/view?usp=drive_link"}, {"kommun": "Höganäs", "län": "Skåne län", "emissions": {"1990": 231489.050489962, "2000": 282729.431037201, "2005": 258192.569413089, "2010": 274512.067410078, "2015": 240468.569820765, "2016": 230889.280708248, "2017": 238396.418782253, "2018": 240397.727029552, "2019": 213741.521789884, "2020": 202471.831736101, "2021": 241295.112733841}, "budget": 476240.8854183951, "emissionBudget": {"2024": 212735.03047206998, "2025": 136094.72163549162, "2026": 87064.98979477513, "2027": 55698.79828452845, "2028": 35632.647952446736, "2029": 22795.565419868108, "2030": 14583.19357868002, "2031": 9329.42574733839, "2032": 5968.389866424484, "2033": 3818.2068824333637, "2034": 2442.6527293524896, "2035": 1562.6582162595275, "2036": 999.6921263100373, "2037": 639.5412234151047, "2038": 409.1389395623197, "2039": 261.74180136864936, "2040": 167.44622415307967, "2041": 107.12174301739843, "2042": 68.52986912738636, "2043": 43.841173886182325, "2044": 28.046872877368056, "2045": 17.942655464505503, "2046": 11.478601786573208, "2047": 7.343299838497616, "2048": 4.697789288339575, "2049": 3.00535517859955, "2050": 1.922640458130793}, "approximatedHistoricalEmission": {"2021": 241295.112733841, "2022": 218378.61377188656, "2023": 215556.8221219778, "2024": 212735.03047206998}, "totalApproximatedHistoricalEmission": 660950.5074968198, "trend": {"2024": 212735.03047206998, "2025": 209913.23882216122, "2026": 207091.44717225246, "2027": 204269.65552234463, "2028": 201447.86387243588, "2029": 198626.07222252805, "2030": 195804.2805726193, "2031": 192982.48892271053, "2032": 190160.6972728027, "2033": 187338.90562289394, "2034": 184517.11397298612, "2035": 181695.32232307736, "2036": 178873.5306731686, "2037": 176051.73902326077, "2038": 173229.947373352, "2039": 170408.1557234442, "2040": 167586.36407353543, "2041": 164764.57242362667, "2042": 161942.78077371884, "2043": 159120.98912381008, "2044": 156299.19747390132, "2045": 153477.4058239935, "2046": 150655.61417408474, "2047": 147833.8225241769, "2048": 145012.03087426815, "2049": 142190.2392243594, "2050": 139368.44757445157}, "trendEmission": 4577345.214604773, "historicalEmissionChangePercent": 0.4868331369381936, "neededEmissionChangePercent": 36.02618180302021, "hitNetZero": "2099-05-04", "budgetRunsOut": "2026-04-10", "electricCarChangePercent": 0.07286294683214967, "electricCarChangeYearly": {"2015": 0.018867924528301886, "2016": 0.016176470588235296, "2017": 0.0395738203957382, "2018": 0.044563279857397504, "2019": 0.09886547811993517, "2020": 0.24080882352941177, "2021": 0.3763779527559055, "2022": 0.5419354838709678}, "climatePlanLink": "https://www.hoganas.se/download/18.765ba991784b13246f10c29/1618312885309/Milj%C3%B6program%202015-2025_2021.pdf", "climatePlanYear": 2015, "climatePlanComment": "Miljöprogram 2015–2025", "bicycleMetrePerCapita": 3.869861408, "totalConsumptionEmission": 6602.1, "electricVehiclePerChargePoints": 18.057142857142857, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Högsby", "län": "Kalmar län", "emissions": {"1990": 37787.6807639273, "2000": 34180.236297579, "2005": 31147.9678376911, "2010": 28524.0103594017, "2015": 23709.582054178, "2016": 23119.2126309056, "2017": 22147.8109927882, "2018": 18941.5420639679, "2019": 19113.499278451, "2020": 16857.50467984, "2021": 17959.3007233107}, "budget": 42020.08704505275, "emissionBudget": {"2024": 13233.65642997669, "2025": 9658.389140440584, "2026": 7049.032992640939, "2027": 5144.632858422375, "2028": 3754.7344828135288, "2029": 2740.3376342684646, "2030": 1999.995042035846, "2031": 1459.6669104373937, "2032": 1065.3163856131494, "2033": 777.5054660352533, "2034": 567.450907428561, "2035": 414.1456830952972, "2036": 302.25812414982056, "2037": 220.59863797625513, "2038": 161.00066528851232, "2039": 117.50396313024241, "2040": 85.75853600710889, "2041": 62.58960380707134, "2042": 45.68010004743346, "2043": 33.338947899008424, "2044": 24.331939856932234, "2045": 17.758307760485028, "2046": 12.960639240864172, "2047": 9.459131568020547, "2048": 6.903607789576661, "2049": 5.038496416883756, "2050": 3.67727236493358}, "approximatedHistoricalEmission": {"2021": 17959.3007233107, "2022": 15577.125830624718, "2023": 14405.391130300704, "2024": 13233.65642997669}, "totalApproximatedHistoricalEmission": 45578.99553756912, "trend": {"2024": 13233.65642997669, "2025": 12061.921729652677, "2026": 10890.187029328663, "2027": 9718.452329004649, "2028": 8546.717628680635, "2029": 7374.982928356621, "2030": 6203.248228033073, "2031": 5031.513527709059, "2032": 3859.7788273850456, "2033": 2688.0441270610318, "2034": 1516.309426737018, "2035": 344.5747264130041, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 74852.55872334982, "historicalEmissionChangePercent": -4.254629183408467, "neededEmissionChangePercent": 27.01647355327635, "hitNetZero": "2035-04-15", "budgetRunsOut": "2027-10-27", "electricCarChangePercent": 0.04783248420472141, "electricCarChangeYearly": {"2015": 0.024390243902439025, "2016": 0.0, "2017": 0.031578947368421054, "2018": 0.02702702702702703, "2019": 0.12, "2020": 0.22448979591836735, "2021": 0.26229508196721313, "2022": 0.3150684931506849}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Hade en energi- och klimatstrategi fram till 2010. ", "bicycleMetrePerCapita": 2.926082874, "totalConsumptionEmission": 5669.7, "electricVehiclePerChargePoints": 9.875, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Hörby", "län": "Skåne län", "emissions": {"1990": 63647.0615682229, "2000": 69336.7623681881, "2005": 57405.3746447822, "2010": 55754.10584353, "2015": 47402.3518181614, "2016": 45610.7719429292, "2017": 46273.3861581273, "2018": 45858.0888251982, "2019": 45740.5318095739, "2020": 41774.7505546109, "2021": 41796.3025070363}, "budget": 93152.06462697052, "emissionBudget": {"2024": 39560.23086111271, "2025": 25871.446763046995, "2026": 16919.30868561035, "2027": 11064.824051813303, "2028": 7236.130835635829, "2029": 4732.256855169664, "2030": 3094.783034189365, "2031": 2023.9142383498013, "2032": 1323.5916052732287, "2033": 865.5973184803371, "2034": 566.0799862852571, "2035": 370.20279988309136, "2036": 242.1037951555812, "2037": 158.33010351960016, "2038": 103.54410869279344, "2039": 67.71537570338154, "2040": 44.28423948536296, "2041": 28.960835651083126, "2042": 18.93969528112293, "2043": 12.386108662868464, "2044": 8.100219434960687, "2045": 5.2973501751372165, "2046": 3.464340577850344, "2047": 2.265596051337036, "2048": 1.481645742526564, "2049": 0.9689609518217325, "2050": 0.633677335416394}, "approximatedHistoricalEmission": {"2021": 41796.3025070363, "2022": 41347.59122243873, "2023": 40453.91104177572, "2024": 39560.23086111271}, "totalApproximatedHistoricalEmission": 122479.76894828895, "trend": {"2024": 39560.23086111271, "2025": 38666.5506804497, "2026": 37772.87049978669, "2027": 36879.19031912368, "2028": 35985.510138460435, "2029": 35091.829957797425, "2030": 34198.149777134415, "2031": 33304.469596471405, "2032": 32410.789415808395, "2033": 31517.109235145384, "2034": 30623.429054482374, "2035": 29729.748873819364, "2036": 28836.06869315612, "2037": 27942.38851249311, "2038": 27048.7083318301, "2039": 26155.02815116709, "2040": 25261.34797050408, "2041": 24367.66778984107, "2042": 23473.98760917806, "2043": 22580.30742851505, "2044": 21686.627247851808, "2045": 20792.947067188798, "2046": 19899.266886525787, "2047": 19005.586705862777, "2048": 18111.906525199767, "2049": 17218.226344536757, "2050": 16324.546163873747}, "trendEmission": 726502.1013248229, "historicalEmissionChangePercent": -2.0165287383711914, "neededEmissionChangePercent": 34.60238679122988, "hitNetZero": "2068-03-27", "budgetRunsOut": "2026-06-03", "electricCarChangePercent": 0.07039356467764031, "electricCarChangeYearly": {"2015": 0.0015600624024961, "2016": 0.005597014925373134, "2017": 0.0166270783847981, "2018": 0.036827195467422094, "2019": 0.07641196013289037, "2020": 0.22983870967741934, "2021": 0.4134275618374558, "2022": 0.45794392523364486}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.95921921, "totalConsumptionEmission": 6171.6, "electricVehiclePerChargePoints": 73.57142857142857, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Höör", "län": "Skåne län", "emissions": {"1990": 73484.2597128744, "2000": 66156.285486373, "2005": 61423.1457885453, "2010": 62389.7402237666, "2015": 52712.3474348904, "2016": 50270.4135573662, "2017": 50252.8482781923, "2018": 47098.4777834348, "2019": 47043.3891488485, "2020": 43151.1995388947, "2021": 43181.7418189813}, "budget": 98855.78978245053, "emissionBudget": {"2024": 37807.2659342261, "2025": 25791.69725888143, "2026": 17594.80964984538, "2027": 12002.983886905251, "2028": 8188.30240602081, "2029": 5585.96903271636, "2030": 3810.686084520123, "2031": 2599.6077582431276, "2032": 1773.4235638485777, "2033": 1209.8098749093099, "2034": 825.3188709479965, "2035": 563.0233748868486, "2036": 384.08829826569024, "2037": 262.02077470457044, "2038": 178.74766476038732, "2039": 121.93967326948174, "2040": 83.18589189403038, "2041": 56.748492304982854, "2042": 38.713191691099745, "2043": 26.40970975682183, "2044": 18.016410917623226, "2045": 12.290595593115484, "2046": 8.384507920262168, "2047": 5.719818257165439, "2048": 3.9019965400641077, "2049": 2.6618987377087704, "2050": 1.8159177787736156}, "approximatedHistoricalEmission": {"2021": 43181.7418189813, "2022": 41095.81622094149, "2023": 39451.54107758356, "2024": 37807.2659342261}, "totalApproximatedHistoricalEmission": 121041.86117512875, "trend": {"2024": 37807.2659342261, "2025": 36162.99079086818, "2026": 34518.71564751072, "2027": 32874.44050415326, "2028": 31230.165360795334, "2029": 29585.890217437875, "2030": 27941.61507407995, "2031": 26297.33993072249, "2032": 24653.064787364565, "2033": 23008.789644007105, "2034": 21364.51450064918, "2035": 19720.23935729172, "2036": 18075.964213933796, "2037": 16431.689070576336, "2038": 14787.413927218877, "2039": 13143.138783860952, "2040": 11498.863640503492, "2041": 9854.588497145567, "2042": 8210.313353788108, "2043": 6566.0382104301825, "2044": 4921.763067072723, "2045": 3277.487923714798, "2046": 1633.2127803573385, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 434661.8722505956, "historicalEmissionChangePercent": -3.210717808799588, "neededEmissionChangePercent": 31.781109737605316, "hitNetZero": "2046-12-23", "budgetRunsOut": "2026-10-13", "electricCarChangePercent": 0.06332638122639997, "electricCarChangeYearly": {"2015": 0.017412935323383085, "2016": 0.00684931506849315, "2017": 0.0275, "2018": 0.061696658097686374, "2019": 0.0935483870967742, "2020": 0.23310810810810811, "2021": 0.4019607843137255, "2022": 0.4024390243902439}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Ny miljö– och klimatstrategi kommer under 2023.", "bicycleMetrePerCapita": 3.594365932, "totalConsumptionEmission": 6011.7, "electricVehiclePerChargePoints": 73.5, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Jokkmokk", "län": "Norrbottens län", "emissions": {"1990": 79485.7400189356, "2000": 78442.5715340555, "2005": 78971.9206901286, "2010": 48743.5705255833, "2015": 44207.0886942614, "2016": 41630.0821660033, "2017": 35898.7413144812, "2018": 32067.0297069838, "2019": 33180.3742108357, "2020": 30207.2420241308, "2021": 31891.2540988899}, "budget": 73786.06711474256, "emissionBudget": {"2024": 22187.783636474982, "2025": 16425.542706550495, "2026": 12159.774839393449, "2027": 9001.84102201868, "2028": 6664.033080874085, "2029": 4933.361608404107, "2030": 3652.151251938754, "2031": 2703.6754703559195, "2032": 2001.5219920379373, "2033": 1481.7200986345226, "2034": 1096.912479318831, "2035": 812.0406738048625, "2036": 601.1510201095903, "2037": 445.03010826480227, "2038": 329.45431453493455, "2039": 243.89393739872514, "2040": 180.55387371029764, "2041": 133.6634344399432, "2042": 98.95059762022726, "2043": 73.25279954406271, "2044": 54.228804778292044, "2045": 40.14540448946525, "2046": 29.7195099211909, "2047": 22.00125471864512, "2048": 16.28745596674723, "2049": 12.057549683469437, "2050": 8.92616407781262}, "approximatedHistoricalEmission": {"2021": 31891.2540988899, "2022": 26652.894434582442, "2023": 24420.339035528712, "2024": 22187.783636474982}, "totalApproximatedHistoricalEmission": 78112.75233779359, "trend": {"2024": 22187.783636474982, "2025": 19955.228237421252, "2026": 17722.67283836752, "2027": 15490.117439313792, "2028": 13257.562040260062, "2029": 11025.006641206332, "2030": 8792.451242152601, "2031": 6559.89584309794, "2032": 4327.34044404421, "2033": 2094.78504499048, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 110318.95158909168, "historicalEmissionChangePercent": -5.030681936292774, "neededEmissionChangePercent": 25.970331351401015, "hitNetZero": "2033-12-06", "budgetRunsOut": "2028-03-22", "electricCarChangePercent": 0.055159193566814764, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.013888888888888888, "2017": 0.012195121951219513, "2018": 0.023809523809523808, "2019": 0.0, "2020": 0.2727272727272727, "2021": 0.24324324324324326, "2022": 0.3898305084745763}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.773408665, "totalConsumptionEmission": 6223.4, "electricVehiclePerChargePoints": 2.5555555555555554, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Järfälla", "län": "Stockholms län", "emissions": {"1990": 121150.746538133, "2000": 121927.615725138, "2005": 107386.69150898, "2010": 90845.5993050477, "2015": 77441.9011063115, "2016": 74991.5815492753, "2017": 83548.8308583607, "2018": 82608.2329230938, "2019": 81230.127485373, "2020": 72636.2590316657, "2021": 72857.259205152}, "budget": 161539.65327045636, "emissionBudget": {"2024": 73448.46871310077, "2025": 46614.25575898371, "2026": 29583.85488540995, "2027": 18775.4680543692, "2028": 11915.898114903608, "2029": 7562.454766698694, "2030": 4799.530975078867, "2031": 3046.0344281566404, "2032": 1933.173425839405, "2033": 1226.893386307937, "2034": 778.6509793928877, "2035": 494.1728062729394, "2036": 313.62801681708504, "2037": 199.0448112158778, "2038": 126.32429103127926, "2039": 80.17202964034061, "2040": 50.88138064483672, "2041": 32.29199644737553, "2042": 20.494196921190092, "2043": 13.006693721429947, "2044": 8.25473094718665, "2045": 5.238885797562207, "2046": 3.324872073420283, "2047": 2.1101384400771193, "2048": 1.3392046785459144, "2049": 0.8499296240362886, "2050": 0.5394099777181297}, "approximatedHistoricalEmission": {"2021": 72857.259205152, "2022": 74932.9882925069, "2023": 74190.72850280371, "2024": 73448.46871310077}, "totalApproximatedHistoricalEmission": 222276.580754437, "trend": {"2024": 73448.46871310077, "2025": 72706.20892339782, "2026": 71963.94913369487, "2027": 71221.68934399192, "2028": 70479.42955428874, "2029": 69737.1697645858, "2030": 68994.90997488284, "2031": 68252.6501851799, "2032": 67510.39039547695, "2033": 66768.13060577377, "2034": 66025.87081607082, "2035": 65283.61102636787, "2036": 64541.35123666492, "2037": 63799.09144696174, "2038": 63056.831657258794, "2039": 62314.571867555846, "2040": 61572.3120778529, "2041": 60830.05228814995, "2042": 60087.79249844677, "2043": 59345.53270874382, "2044": 58603.27291904087, "2045": 57861.01312933792, "2046": 57118.75333963474, "2047": 56376.493549931794, "2048": 55634.233760228846, "2049": 54891.9739705259, "2050": 54149.71418082295}, "trendEmission": 1658776.377621008, "historicalEmissionChangePercent": -0.8037628370891697, "neededEmissionChangePercent": 36.534747999900404, "hitNetZero": "2122-11-20", "budgetRunsOut": "2026-03-23", "electricCarChangePercent": 0.08209290709034771, "electricCarChangeYearly": {"2015": 0.01383399209486166, "2016": 0.01273560876209883, "2017": 0.026525198938992044, "2018": 0.04708960104643558, "2019": 0.09398034398034398, "2020": 0.2443267776096823, "2021": 0.43021844660194175, "2022": 0.6007046388725779}, "climatePlanLink": "https://www.jarfalla.se/download/18.5e2d810118697502d1121381/1677764821650/Miljoplan-2023-2030-Jarfalla-kommun-med-bolag.pdf", "climatePlanYear": 2023, "climatePlanComment": "Miljöplan 2023–2030", "bicycleMetrePerCapita": 2.422133029, "totalConsumptionEmission": 5996.9, "electricVehiclePerChargePoints": 53.768115942028984, "procurementScore": "2", "procurementLink": "https://www.jarfalla.se/download/18.5e2d810118697502d1121381/1677764821650/Miljoplan-2023-2030-Jarfalla-kommun-med-bolag.pdf"}, {"kommun": "Jönköping", "län": "Jönköpings län", "emissions": {"1990": 484856.707441359, "2000": 446255.060935865, "2005": 450692.401044119, "2010": 543640.94184649, "2015": 440034.068911602, "2016": 412969.208399042, "2017": 408051.686344652, "2018": 403788.804557544, "2019": 400841.10993352, "2020": 379728.453382934, "2021": 385811.84637716}, "budget": 838700.2211672622, "emissionBudget": {"2024": 353812.4352623448, "2025": 232039.7943385945, "2026": 152177.99260439826, "2027": 99802.45629468074, "2028": 65453.158580853706, "2029": 42925.957208517284, "2030": 28152.00736250587, "2031": 18462.8502211089, "2032": 12108.438091029213, "2033": 7941.0422144171725, "2034": 5207.950932818906, "2035": 3415.5155187825667, "2036": 2239.9877436499237, "2037": 1469.0447354460698, "2038": 963.4393941929926, "2039": 631.8496938087542, "2040": 414.3841719287669, "2041": 271.764382617654, "2042": 178.23045536654968, "2043": 116.88836820408306, "2044": 76.65856316931975, "2045": 50.27476555173024, "2046": 32.971555254677895, "2047": 21.623640488063167, "2048": 14.181370103573293, "2049": 9.300527269011042, "2050": 6.099538115842738}, "approximatedHistoricalEmission": {"2021": 385811.84637716, "2022": 370695.20340853557, "2023": 362253.8193354383, "2024": 353812.4352623448}, "totalApproximatedHistoricalEmission": 1102761.1635637262, "trend": {"2024": 353812.4352623448, "2025": 345371.0511892475, "2026": 336929.66711615026, "2027": 328488.2830430567, "2028": 320046.89896995947, "2029": 311605.51489686593, "2030": 303164.1308237687, "2031": 294722.74675067514, "2032": 286281.3626775779, "2033": 277839.97860448435, "2034": 269398.5945313871, "2035": 260957.21045829356, "2036": 252515.8263851963, "2037": 244074.44231210276, "2038": 235633.0582390055, "2039": 227191.67416591197, "2040": 218750.2900928147, "2041": 210308.90601972118, "2042": 201867.52194662392, "2043": 193426.1378735304, "2044": 184984.75380043313, "2045": 176543.3697273396, "2046": 168101.98565424234, "2047": 159660.6015811488, "2048": 151219.21750805154, "2049": 142777.8334349543, "2050": 134336.44936186075}, "trendEmission": 6345935.500114646, "historicalEmissionChangePercent": -2.1301920111284915, "neededEmissionChangePercent": 34.41728689763499, "hitNetZero": "2065-11-19", "budgetRunsOut": "2026-06-11", "electricCarChangePercent": 0.060566948614435206, "electricCarChangeYearly": {"2015": 0.04287800345148016, "2016": 0.03979619939410631, "2017": 0.05429147465437788, "2018": 0.06259426847662142, "2019": 0.07340186315451333, "2020": 0.2023178157532901, "2021": 0.33393357342937174, "2022": 0.4945994599459946}, "climatePlanLink": "https://www.jonkoping.se/download/18.6751acba183a2e89e794ecfe/1666359577980/Program%20f%C3%B6r%20h%C3%A5llbarhet%20i%20J%C3%B6nk%C3%B6pings%20kommun%202022-2030.pdf", "climatePlanYear": 2022, "climatePlanComment": "Hållbarhetsprogram 2022–2030", "bicycleMetrePerCapita": 2.698136433, "totalConsumptionEmission": 6166.6, "electricVehiclePerChargePoints": 34.00888888888889, "procurementScore": "2", "procurementLink": "https://www.jonkoping.se/download/18.6751acba183a2e89e794ecfe/1666359577980/Program%20f%C3%B6r%20h%C3%A5llbarhet%20i%20J%C3%B6nk%C3%B6pings%20kommun%202022-2030.pdf"}, {"kommun": "Kalix", "län": "Norrbottens län", "emissions": {"1990": 156631.99232068, "2000": 147543.692771637, "2005": 105004.848214785, "2010": 87195.4463702249, "2015": 70164.4951257483, "2016": 65586.1037687898, "2017": 67289.2887141805, "2018": 64514.3913970966, "2019": 64617.1462337387, "2020": 58756.646458194, "2021": 64815.2841043127}, "budget": 135005.8823612679, "emissionBudget": {"2024": 58167.90293616429, "2025": 37806.42740081047, "2026": 24572.41675673525, "2027": 15970.9262889447, "2028": 10380.358149223992, "2029": 6746.749271565313, "2030": 4385.072757510773, "2031": 2850.0930321665637, "2032": 1852.4277112828356, "2033": 1203.9917247613635, "2034": 782.5385381921192, "2035": 508.61359855046544, "2036": 330.57514742736436, "2037": 214.85844737157723, "2038": 139.64798251226156, "2039": 90.76468371764224, "2040": 58.9928165245086, "2041": 38.34258280809595, "2042": 24.920892796920764, "2043": 16.19741948277111, "2044": 10.527568174976045, "2045": 6.842428931142763, "2046": 4.447260079400628, "2047": 2.890511894659505, "2048": 1.8786980891601286, "2049": 1.2210662466862763, "2050": 0.7936361820983499}, "approximatedHistoricalEmission": {"2021": 64815.2841043127, "2022": 60480.66651944583, "2023": 59324.284727805294, "2024": 58167.90293616429}, "totalApproximatedHistoricalEmission": 181296.54476748963, "trend": {"2024": 58167.90293616429, "2025": 57011.52114452375, "2026": 55855.13935288321, "2027": 54698.75756124221, "2028": 53542.37576960167, "2029": 52385.99397796113, "2030": 51229.612186320126, "2031": 50073.23039467959, "2032": 48916.84860303905, "2033": 47760.466811398044, "2034": 46604.085019757506, "2035": 45447.7032281165, "2036": 44291.32143647596, "2037": 43134.939644835424, "2038": 41978.55785319442, "2039": 40822.17606155388, "2040": 39665.79426991334, "2041": 38509.41247827234, "2042": 37353.0306866318, "2043": 36196.64889499126, "2044": 35040.267103350256, "2045": 33883.88531170972, "2046": 32727.50352006918, "2047": 31571.121728428174, "2048": 30414.739936787635, "2049": 29258.358145147096, "2050": 28101.976353506092}, "trendEmission": 1121508.4307657185, "historicalEmissionChangePercent": -1.1085133563885166, "neededEmissionChangePercent": 35.004658080418146, "hitNetZero": "2074-04-08", "budgetRunsOut": "2026-05-18", "electricCarChangePercent": 0.06042340263846041, "electricCarChangeYearly": {"2015": 0.01699029126213592, "2016": 0.011037527593818985, "2017": 0.019002375296912115, "2018": 0.01440922190201729, "2019": 0.0641025641025641, "2020": 0.18090452261306533, "2021": 0.2761904761904762, "2022": 0.47619047619047616}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Hade en miljöplan 2017–2019.", "bicycleMetrePerCapita": 2.483080714, "totalConsumptionEmission": 6289.7, "electricVehiclePerChargePoints": 18.291666666666668, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Kalmar", "län": "Kalmar län", "emissions": {"1990": 239883.40755098, "2000": 188020.639526944, "2005": 180725.254795366, "2010": 190508.108531532, "2015": 149200.411496865, "2016": 145661.089744481, "2017": 138695.370985864, "2018": 128156.096132051, "2019": 127592.700657912, "2020": 114610.680333967, "2021": 116813.181802889}, "budget": 272749.7860078822, "emissionBudget": {"2024": 95025.96625823714, "2025": 67070.90881647155, "2026": 47339.76392560489, "2027": 33413.19341093579, "2028": 23583.588115714017, "2029": 16645.68907171901, "2030": 11748.804436069875, "2031": 8292.501745183705, "2032": 5852.985771280548, "2033": 4131.134787967856, "2034": 2915.8237014856727, "2035": 2058.0369062050954, "2036": 1452.5967071137245, "2037": 1025.2669362516083, "2038": 723.6504705145683, "2039": 510.76454819707845, "2040": 360.5061204609747, "2041": 254.4512209169144, "2042": 179.59590739629928, "2043": 126.76178104891945, "2044": 89.47057517985122, "2045": 63.14982131660132, "2046": 44.57219509657017, "2047": 31.459797261602677, "2048": 22.20484859668271, "2049": 15.672551768265404, "2050": 11.06194792815001}, "approximatedHistoricalEmission": {"2021": 116813.181802889, "2022": 107194.90756044537, "2023": 101110.43690934032, "2024": 95025.96625823714}, "totalApproximatedHistoricalEmission": 314224.91850034875, "trend": {"2024": 95025.96625823714, "2025": 88941.49560713209, "2026": 82857.02495602891, "2027": 76772.55430492386, "2028": 70688.08365382068, "2029": 64603.61300271563, "2030": 58519.14235161245, "2031": 52434.671700509265, "2032": 46350.20104940422, "2033": 40265.730398301035, "2034": 34181.25974719599, "2035": 28096.789096092805, "2036": 22012.31844498776, "2037": 15927.847793884575, "2038": 9843.37714277953, "2039": 3758.9064916763455, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 742765.9988701837, "historicalEmissionChangePercent": -3.907611830891281, "neededEmissionChangePercent": 29.418335369299488, "hitNetZero": "2039-08-10", "budgetRunsOut": "2027-03-14", "electricCarChangePercent": 0.05652943773447291, "electricCarChangeYearly": {"2015": 0.011147540983606558, "2016": 0.02457075192421551, "2017": 0.037132247929163094, "2018": 0.034261241970021415, "2019": 0.04354492486967188, "2020": 0.18652849740932642, "2021": 0.2855960264900662, "2022": 0.43770096463022506}, "climatePlanLink": "https://kalmar.se/download/18.27a4559e1709e0628a5856/1584024404535/handlingsplan-fossilbranslefri-kommun-2030.pdf", "climatePlanYear": 2019, "climatePlanComment": "Handlingsplan Fossilbränslefri kommun 2030", "bicycleMetrePerCapita": 2.898366807, "totalConsumptionEmission": 6169.9, "electricVehiclePerChargePoints": 16.114427860696516, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Karlsborg", "län": "Västra Götalands län", "emissions": {"1990": 35029.7720233554, "2000": 31326.042981827, "2005": 29301.9397507562, "2010": 27439.0510922527, "2015": 23136.9773298058, "2016": 22380.5165476161, "2017": 23183.6061348435, "2018": 20479.7674112495, "2019": 19917.3732951603, "2020": 17614.7184054177, "2021": 17780.8039766664}, "budget": 42803.71339432223, "emissionBudget": {"2024": 14456.3199036445, "2025": 10312.909925420203, "2026": 7357.066794227326, "2027": 5248.415064821479, "2028": 3744.1362791838087, "2029": 2671.0075906653174, "2030": 1905.4545607904417, "2031": 1359.321140054385, "2032": 969.7181973377773, "2033": 691.7816213837486, "2034": 493.5060649559338, "2035": 352.0594196491209, "2036": 251.15362052286665, "2037": 179.169019720054, "2038": 127.81634427811233, "2039": 91.1821579988941, "2040": 65.04790904709857, "2041": 46.40414927941194, "2042": 33.103985998793554, "2043": 23.615859918253573, "2044": 16.847180871176686, "2045": 12.018512317087417, "2046": 8.573816558419445, "2047": 6.116425098047578, "2048": 4.363360905277271, "2049": 3.1127526430070263, "2050": 2.2205884928813844}, "approximatedHistoricalEmission": {"2021": 17780.8039766664, "2022": 16518.201988179935, "2023": 15487.260945912218, "2024": 14456.3199036445}, "totalApproximatedHistoricalEmission": 48124.0248742476, "trend": {"2024": 14456.3199036445, "2025": 13425.37886137655, "2026": 12394.437819108833, "2027": 11363.496776840882, "2028": 10332.555734573165, "2029": 9301.614692305215, "2030": 8270.673650037497, "2031": 7239.732607769547, "2032": 6208.79156550183, "2033": 5177.850523234112, "2034": 4146.909480966162, "2035": 3115.9684386984445, "2036": 2085.027396430727, "2037": 1054.086354162544, "2038": 23.14531189482659, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 101367.82916472259, "historicalEmissionChangePercent": -4.118019672572016, "neededEmissionChangePercent": 28.661581964437065, "hitNetZero": "2038-01-05", "budgetRunsOut": "2027-05-14", "electricCarChangePercent": 0.06578073314142187, "electricCarChangeYearly": {"2015": 0.011627906976744186, "2016": 0.005714285714285714, "2017": 0.020512820512820513, "2018": 0.025477707006369428, "2019": 0.06557377049180328, "2020": 0.16666666666666666, "2021": 0.31297709923664124, "2022": 0.5131578947368421}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.403046603, "totalConsumptionEmission": 6340.2, "electricVehiclePerChargePoints": 18.25, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Karlshamn", "län": "Blekinge län", "emissions": {"1990": 218750.351070417, "2000": 238132.947918973, "2005": 257773.643762704, "2010": 301217.906920006, "2015": 111459.574227852, "2016": 103270.602098149, "2017": 89038.6810049438, "2018": 113920.538995508, "2019": 84900.6359585237, "2020": 87020.2138414585, "2021": 161074.659994972}, "budget": 222377.08314550453, "emissionBudget": {"2024": 131284.93710482214, "2025": 72747.842605012, "2026": 40311.163796788795, "2027": 22337.293704701297, "2028": 12377.580874751007, "2029": 6858.687105804462, "2030": 3800.5478850304553, "2031": 2105.9663465600406, "2032": 1166.9618136670051, "2033": 646.6389535527943, "2034": 358.31672583861507, "2035": 198.55110074995312, "2036": 110.02148871714641, "2037": 60.965302805252996, "2038": 33.78220190867991, "2039": 18.71945374312948, "2040": 10.372856967358569, "2041": 5.7478259324084044, "2042": 3.1849955179396923, "2043": 1.7648753752439073, "2044": 0.9779558786183811, "2045": 0.541906649013149, "2046": 0.3002822751671946, "2047": 0.1663929478329742, "2048": 0.09220195588677756, "2049": 0.05109111161298027, "2050": 0.028310697541551175}, "approximatedHistoricalEmission": {"2021": 161074.659994972, "2022": 123270.1916947104, "2023": 127277.5643997658, "2024": 131284.93710482214}, "totalApproximatedHistoricalEmission": 396727.55464437325, "trend": {"2024": 131284.93710482214, "2025": 135292.30980987754, "2026": 139299.68251493387, "2027": 143307.05521998927, "2028": 147314.4279250456, "2029": 151321.800630101, "2030": 155329.17333515733, "2031": 159336.54604021274, "2032": 163343.91874526907, "2033": 167351.29145032447, "2034": 171358.6641553808, "2035": 175366.0368604362, "2036": 179373.40956549253, "2037": 183380.78227054793, "2038": 187388.15497560427, "2039": 191395.52768065967, "2040": 195402.900385716, "2041": 199410.2730907714, "2042": 203417.64579582773, "2043": 207425.01850088313, "2044": 211432.39120593946, "2045": 215439.76391099487, "2046": 219447.1366160512, "2047": 223454.5093211066, "2048": 227461.88202616293, "2049": 231469.25473121926, "2050": 235476.62743627466}, "trendEmission": 4767900.339034253, "historicalEmissionChangePercent": 11.489963461414845, "neededEmissionChangePercent": 44.587822328065116, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-08-27", "electricCarChangePercent": 0.05164583397223511, "electricCarChangeYearly": {"2015": 0.010014306151645207, "2016": 0.017676767676767676, "2017": 0.02696793002915452, "2018": 0.031413612565445025, "2019": 0.043333333333333335, "2020": 0.14912280701754385, "2021": 0.26864035087719296, "2022": 0.39644970414201186}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas men har ett miljöråd. ", "bicycleMetrePerCapita": 3.701085608, "totalConsumptionEmission": 6011.4, "electricVehiclePerChargePoints": 4.831932773109243, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Karlskoga", "län": "Örebro län", "emissions": {"1990": 239819.536762397, "2000": 176808.624548812, "2005": 181294.408285385, "2010": 129053.674162172, "2015": 98010.7109463367, "2016": 104582.839388156, "2017": 91311.3997732019, "2018": 94763.0199892456, "2019": 88973.610679066, "2020": 81917.5169960221, "2021": 81092.8269941256}, "budget": 189781.764864751, "emissionBudget": {"2024": 70431.25659479853, "2025": 48594.97151875951, "2026": 33528.73952675504, "2027": 23133.59467283587, "2028": 15961.327805359757, "2029": 11012.727979076324, "2030": 7598.37646467013, "2031": 5242.599745362581, "2032": 3617.200624090034, "2033": 2495.735129596933, "2034": 1721.965266626909, "2035": 1188.0925761334152, "2036": 819.7400939615891, "2037": 565.5904557833854, "2038": 390.23657135922247, "2039": 269.24885324536825, "2040": 185.77178638445045, "2041": 128.1756865460803, "2042": 88.43650018824482, "2043": 61.01792606926037, "2044": 42.10012035605885, "2045": 29.047531572652897, "2046": 20.041726325916237, "2047": 13.828052587472898, "2048": 9.54084669416194, "2049": 6.582832619827067, "2050": 4.541911917227987}, "approximatedHistoricalEmission": {"2021": 81092.8269941256, "2022": 77461.40557587333, "2023": 73946.33108533546, "2024": 70431.25659479853}, "totalApproximatedHistoricalEmission": 227169.77845567086, "trend": {"2024": 70431.25659479853, "2025": 66916.18210426159, "2026": 63401.10761372466, "2027": 59886.03312318679, "2028": 56370.958632649854, "2029": 52855.88414211292, "2030": 49340.80965157598, "2031": 45825.735161038116, "2032": 42310.66067050118, "2033": 38795.586179964244, "2034": 35280.51168942731, "2035": 31765.43719888944, "2036": 28250.362708352506, "2037": 24735.28821781557, "2038": 21220.213727278635, "2039": 17705.139236740768, "2040": 14190.064746203832, "2041": 10674.990255666897, "2042": 7159.915765129961, "2043": 3644.841274592094, "2044": 129.7667840551585, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 705675.1171805668, "historicalEmissionChangePercent": -2.8751569774822503, "neededEmissionChangePercent": 31.003685198556663, "hitNetZero": "2044-01-09", "budgetRunsOut": "2026-11-27", "electricCarChangePercent": 0.06741071126861059, "electricCarChangeYearly": {"2015": 0.007761966364812419, "2016": 0.012376237623762377, "2017": 0.010869565217391304, "2018": 0.03894080996884735, "2019": 0.054441260744985676, "2020": 0.18574108818011256, "2021": 0.3378607809847199, "2022": 0.5070422535211268}, "climatePlanLink": "https://karlskoga.se/download/18.52754ae1775ea851a920ca/1666080772061/miljoprogram-karlskoga-kommun.pdf", "climatePlanYear": 2021, "climatePlanComment": "Miljöprogram 2021–2030. ", "bicycleMetrePerCapita": 3.623405516, "totalConsumptionEmission": 6230.6, "electricVehiclePerChargePoints": 48.04545454545455, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1ZK_q1FOAh3CuX-goDQHXk3gZzXvhaa-J/view?usp=drive_link"}, {"kommun": "Karlskrona", "län": "Blekinge län", "emissions": {"1990": 218198.945724246, "2000": 203552.226115188, "2005": 182258.079557121, "2010": 157679.732940153, "2015": 122624.231640475, "2016": 113066.52935583, "2017": 121964.491070716, "2018": 121403.701348345, "2019": 114517.091661267, "2020": 105707.184563507, "2021": 104241.611582051}, "budget": 238029.97631744976, "emissionBudget": {"2024": 98221.98820973374, "2025": 65012.830741461046, "2026": 43031.79194451494, "2027": 28482.610229969607, "2028": 18852.55177284749, "2029": 12478.445812312553, "2030": 8259.4447567085, "2031": 5466.900983919651, "2032": 3618.5248825239437, "2033": 2395.0904477616873, "2034": 1585.302972673788, "2035": 1049.3071430838986, "2036": 694.5331583336767, "2037": 459.70935317113634, "2038": 304.28020153861905, "2039": 201.4021259513406, "2040": 133.30744535007634, "2041": 88.23578649838626, "2042": 58.40299466052549, "2043": 38.65676185002051, "2044": 25.586791318069594, "2045": 16.935818175729977, "2046": 11.209765762181757, "2047": 7.419709348501308, "2048": 4.911082709860569, "2049": 3.250630482980189, "2050": 2.1515822805558074}, "approximatedHistoricalEmission": {"2021": 104241.611582051, "2022": 103744.41315040272, "2023": 100983.2006800687, "2024": 98221.98820973374}, "totalApproximatedHistoricalEmission": 305959.4137263638, "trend": {"2024": 98221.98820973374, "2025": 95460.77573939972, "2026": 92699.56326906476, "2027": 89938.35079873074, "2028": 87177.13832839578, "2029": 84415.92585806176, "2030": 81654.7133877268, "2031": 78893.50091739278, "2032": 76132.28844705783, "2033": 73371.0759767238, "2034": 70609.86350638885, "2035": 67848.65103605483, "2036": 65087.43856571987, "2037": 62326.22609538585, "2038": 59565.013625050895, "2039": 56803.80115471687, "2040": 54042.58868438192, "2041": 51281.376214047894, "2042": 48520.16374371294, "2043": 45758.951273378916, "2044": 42997.73880304396, "2045": 40236.52633270994, "2046": 37475.313862374984, "2047": 34714.10139204096, "2048": 31952.888921706006, "2049": 29191.67645137105, "2050": 26430.463981037028}, "trendEmission": 1620481.878480025, "historicalEmissionChangePercent": -2.522742820392277, "neededEmissionChangePercent": 33.810308744067655, "hitNetZero": "2059-07-19", "budgetRunsOut": "2026-07-06", "electricCarChangePercent": 0.07043528444297543, "electricCarChangeYearly": {"2015": 0.014041514041514042, "2016": 0.016884531590413945, "2017": 0.030786146234194612, "2018": 0.054213317619328225, "2019": 0.08313953488372093, "2020": 0.23233908948194662, "2021": 0.35057085292142376, "2022": 0.5304054054054054}, "climatePlanLink": "https://www.karlskrona.se/globalassets/kommun-och-politik/sa-arbetar-vi-med/hallbarhetsprogram_karlskrona_kommun_210517.pdf", "climatePlanYear": 2021, "climatePlanComment": "Hållbarhetsprogram 2021–2025", "bicycleMetrePerCapita": 1.512487322, "totalConsumptionEmission": 6165.4, "electricVehiclePerChargePoints": 22.198275862068964, "procurementScore": "2", "procurementLink": "https://www.karlskrona.se/kommun-och-politik/sa-fungerar-kommunen/forfattningssamling/styrande-dokument/"}, {"kommun": "Karlstad", "län": "Värmlands län", "emissions": {"1990": 424132.405580009, "2000": 357880.029915797, "2005": 288559.087098907, "2010": 290882.490135866, "2015": 219915.361551138, "2016": 219941.925214314, "2017": 216937.702417902, "2018": 206265.388731755, "2019": 205895.692588209, "2020": 193113.08003322, "2021": 196040.384620013}, "budget": 431939.0768226275, "emissionBudget": {"2024": 179088.94123980775, "2025": 118305.03778545393, "2026": 78151.57021156505, "2027": 51626.43992903693, "2028": 34104.104274952144, "2029": 22528.958611043745, "2030": 14882.489568004772, "2031": 9831.279801508295, "2032": 6494.482129074525, "2033": 4290.21439491504, "2034": 2834.0888755296487, "2035": 1872.1814378136614, "2036": 1236.7513829074921, "2037": 816.9902511744856, "2038": 539.6986651795604, "2039": 356.5215726599799, "2040": 235.5159276327946, "2041": 155.5803531183124, "2042": 102.77541107180865, "2043": 67.89279564718996, "2044": 44.84955742546737, "2045": 29.627337953692738, "2046": 19.57163469630768, "2047": 12.928899831784321, "2048": 8.54075060433495, "2049": 5.641966589154134, "2050": 3.7270479455254244}, "approximatedHistoricalEmission": {"2021": 196040.384620013, "2022": 188826.4148816131, "2023": 183957.67806071043, "2024": 179088.94123980775}, "totalApproximatedHistoricalEmission": 560348.7558722339, "trend": {"2024": 179088.94123980775, "2025": 174220.20441890508, "2026": 169351.46759800427, "2027": 164482.7307771016, "2028": 159613.99395619892, "2029": 154745.2571352981, "2030": 149876.52031439543, "2031": 145007.78349349275, "2032": 140139.04667259008, "2033": 135270.30985168926, "2034": 130401.57303078659, "2035": 125532.83620988391, "2036": 120664.0993889831, "2037": 115795.36256808043, "2038": 110926.62574717775, "2039": 106057.88892627507, "2040": 101189.15210537426, "2041": 96320.41528447159, "2042": 91451.67846356891, "2043": 86582.9416426681, "2044": 81714.20482176542, "2045": 76845.46800086275, "2046": 71976.73117996007, "2047": 67107.99435905926, "2048": 62239.257538156584, "2049": 57370.52071725391, "2050": 52501.783896353096}, "trendEmission": 3010679.4267700836, "historicalEmissionChangePercent": -1.8575075192348833, "neededEmissionChangePercent": 33.94062359940001, "hitNetZero": "2060-10-03", "budgetRunsOut": "2026-07-01", "electricCarChangePercent": 0.04989308453351107, "electricCarChangeYearly": {"2015": 0.0165016501650165, "2016": 0.03211009174311927, "2017": 0.06412918108419839, "2018": 0.04465525219805645, "2019": 0.08192219679633868, "2020": 0.23139339675433687, "2021": 0.30685920577617326, "2022": 0.3419607843137255}, "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab2cd964d14c504ed938/1670425390573/Viable-Cities-Klimatkontrakt-Karlstad-FINAL.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities. Ny Energi– och klimatplan samt handlingsplan beslutas maj 2023.", "bicycleMetrePerCapita": 2.913788973, "totalConsumptionEmission": 6351.9, "electricVehiclePerChargePoints": 18.075396825396826, "procurementScore": "2", "procurementLink": "https://drive.google.com/drive/u/0/folders/1W0ikrmofAruq9lzl1j562VHonpwsK4rB"}, {"kommun": "Katrineholm", "län": "Södermanlands län", "emissions": {"1990": 208000.404936604, "2000": 114215.158232253, "2005": 111887.847394823, "2010": 105152.077744385, "2015": 85105.4503117667, "2016": 81420.5539362881, "2017": 78318.2574589682, "2018": 73708.3527087122, "2019": 73140.8909856511, "2020": 67788.418975007, "2021": 70156.4487205661}, "budget": 156895.9700279148, "emissionBudget": {"2024": 59100.77304896247, "2025": 40550.8345980788, "2026": 27823.158679133594, "2027": 19090.313838347567, "2028": 13098.443877255462, "2029": 8987.239992931512, "2030": 6166.418198027318, "2031": 4230.966728703032, "2032": 2902.9947182496812, "2033": 1991.8328066760503, "2034": 1366.6569576616657, "2035": 937.7048282691572, "2036": 643.387749961589, "2037": 441.44786751787655, "2038": 302.89078358690415, "2039": 207.8225619204596, "2040": 142.59336890913124, "2041": 97.8376393254051, "2042": 67.12937454243065, "2043": 46.05950181882397, "2044": 31.60282249400846, "2045": 21.6836559265527, "2046": 14.877814613877135, "2047": 10.208120274304981, "2048": 7.004101223137945, "2049": 4.805726483008403, "2050": 3.297354834506717}, "approximatedHistoricalEmission": {"2021": 70156.4487205661, "2022": 64621.390275353566, "2023": 61861.08166215755, "2024": 59100.77304896247}, "totalApproximatedHistoricalEmission": 191111.0828222754, "trend": {"2024": 59100.77304896247, "2025": 56340.46443576645, "2026": 53580.155822570436, "2027": 50819.84720937442, "2028": 48059.538596179336, "2029": 45299.22998298332, "2030": 42538.921369787306, "2031": 39778.61275659129, "2032": 37018.304143395275, "2033": 34257.99553020019, "2034": 31497.686917004175, "2035": 28737.37830380816, "2036": 25977.069690612145, "2037": 23216.76107741706, "2038": 20456.452464221045, "2039": 17696.14385102503, "2040": 14935.835237829015, "2041": 12175.526624633, "2042": 9415.218011437915, "2043": 6654.9093982419, "2044": 3894.6007850458845, "2045": 1134.2921718498692, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 633035.3309044545, "historicalEmissionChangePercent": -3.103461539061256, "neededEmissionChangePercent": 31.386964152762992, "hitNetZero": "2045-05-24", "budgetRunsOut": "2026-11-04", "electricCarChangePercent": 0.06806819251218851, "electricCarChangeYearly": {"2015": 0.00998003992015968, "2016": 0.012808783165599268, "2017": 0.02662993572084481, "2018": 0.030526315789473683, "2019": 0.043568464730290454, "2020": 0.26734104046242774, "2021": 0.3618421052631579, "2022": 0.47246376811594204}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Ska påbörjas 2023", "bicycleMetrePerCapita": 2.805132199, "totalConsumptionEmission": 5768.7, "electricVehiclePerChargePoints": 27.195652173913043, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Kil", "län": "Värmlands län", "emissions": {"1990": 58934.3614561996, "2000": 53658.3197520476, "2005": 50228.7847903218, "2010": 46319.5670792933, "2015": 37093.8639772829, "2016": 36916.0742267188, "2017": 37584.023551899, "2018": 36309.192741783, "2019": 35714.1035763735, "2020": 33720.4095473731, "2021": 35690.6495938968}, "budget": 74955.14919339515, "emissionBudget": {"2024": 33474.568355537835, "2025": 21417.136026183995, "2026": 13702.752211536277, "2027": 8767.06474391373, "2028": 5609.196097063325, "2029": 3588.7816246769175, "2030": 2296.113975469967, "2031": 1469.0610741251567, "2032": 939.9099794547576, "2033": 601.3574146362404, "2034": 384.75039955184405, "2035": 246.16453768155222, "2036": 157.4968594770933, "2037": 100.76699503011399, "2038": 64.47104609648324, "2039": 41.24878174180644, "2040": 26.39110264531591, "2041": 16.885111982099925, "2042": 10.803148715677379, "2043": 6.911889142148737, "2044": 4.422248806408103, "2045": 2.829368947271385, "2046": 1.8102393126735428, "2047": 1.1581969089994604, "2048": 0.7410180911576606, "2049": 0.47410574761186736, "2050": 0.3033343755041788}, "approximatedHistoricalEmission": {"2021": 35690.6495938968, "2022": 34365.34639013605, "2023": 33919.957372837, "2024": 33474.568355537835}, "totalApproximatedHistoricalEmission": 102867.91273769038, "trend": {"2024": 33474.568355537835, "2025": 33029.17933823867, "2026": 32583.790320939617, "2027": 32138.40130364045, "2028": 31693.012286341283, "2029": 31247.623269042233, "2030": 30802.234251743066, "2031": 30356.845234444016, "2032": 29911.45621714485, "2033": 29466.067199845682, "2034": 29020.67818254663, "2035": 28575.289165247465, "2036": 28129.900147948298, "2037": 27684.511130649247, "2038": 27239.12211335008, "2039": 26793.73309605103, "2040": 26348.344078751863, "2041": 25902.955061452696, "2042": 25457.566044153646, "2043": 25012.17702685448, "2044": 24566.788009555312, "2045": 24121.39899225626, "2046": 23676.009974957095, "2047": 23230.620957658044, "2048": 22785.231940358877, "2049": 22339.84292305971, "2050": 21894.45390576066}, "trendEmission": 719797.2893968797, "historicalEmissionChangePercent": -0.5733871366737643, "neededEmissionChangePercent": 36.01967977985631, "hitNetZero": "2099-02-08", "budgetRunsOut": "2026-04-10", "electricCarChangePercent": 0.06355871073210718, "electricCarChangeYearly": {"2015": 0.02262443438914027, "2016": 0.0, "2017": 0.02880658436213992, "2018": 0.026041666666666668, "2019": 0.08426966292134831, "2020": 0.23417721518987342, "2021": 0.28921568627450983, "2022": 0.4824120603015075}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.45585916, "totalConsumptionEmission": 6153.6, "electricVehiclePerChargePoints": 39.0, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1ho5nKkvRMkY4_upel84VnHwFSDesAw03/view?usp=drive_link"}, {"kommun": "Kinda", "län": "Östergötlands län", "emissions": {"1990": 72572.6746077543, "2000": 61630.4404641393, "2005": 59248.0144682838, "2010": 55485.948395628, "2015": 48576.4574664306, "2016": 47326.4148415829, "2017": 46571.7165840146, "2018": 42816.1056510491, "2019": 43484.5621024737, "2020": 38285.9056131397, "2021": 38712.3814730806}, "budget": 90579.98662775644, "emissionBudget": {"2024": 32804.706050578505, "2025": 22837.61901115131, "2026": 15898.842114127163, "2027": 11068.280824131347, "2028": 7705.393859655874, "2029": 5364.256245014648, "2030": 3734.428841183696, "2031": 2599.7935469293598, "2032": 1809.8956424386377, "2033": 1259.9932176873638, "2034": 877.1682031783121, "2035": 610.6573002665021, "2036": 425.12067470937353, "2037": 295.95582986804567, "2038": 206.03527055644352, "2039": 143.43536578479905, "2040": 99.8552534343042, "2041": 69.51613072461542, "2042": 48.39497437259189, "2043": 33.691080330719636, "2044": 23.454685296699985, "2045": 16.328424525634198, "2046": 11.36734277679031, "2047": 7.913591516572112, "2048": 5.509196997123096, "2049": 3.8353320978914054, "2050": 2.670039265032188}, "approximatedHistoricalEmission": {"2021": 38712.3814730806, "2022": 36430.448973326944, "2023": 34617.577511952724, "2024": 32804.706050578505}, "totalApproximatedHistoricalEmission": 106806.57024710922, "trend": {"2024": 32804.706050578505, "2025": 30991.834589204285, "2026": 29178.963127830066, "2027": 27366.091666455846, "2028": 25553.220205081627, "2029": 23740.348743707407, "2030": 21927.477282333188, "2031": 20114.60582095897, "2032": 18301.73435958475, "2033": 16488.86289821053, "2034": 14675.99143683631, "2035": 12863.11997546209, "2036": 11050.24851408787, "2037": 9237.377052713651, "2038": 7424.505591339432, "2039": 5611.634129965212, "2040": 3798.7626685909927, "2041": 1985.8912072167732, "2042": 173.01974584255368, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 296886.0420407108, "historicalEmissionChangePercent": -3.585364809220387, "neededEmissionChangePercent": 30.383101205235246, "hitNetZero": "2042-01-30", "budgetRunsOut": "2027-01-05", "electricCarChangePercent": 0.07656595537898003, "electricCarChangeYearly": {"2015": 0.007272727272727273, "2016": 0.006289308176100629, "2017": 0.02877697841726619, "2018": 0.040145985401459854, "2019": 0.06545454545454546, "2020": 0.3192771084337349, "2021": 0.3177570093457944, "2022": 0.5754716981132075}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 1.666942945, "totalConsumptionEmission": 6124.1, "electricVehiclePerChargePoints": 38.1, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Kiruna", "län": "Norrbottens län", "emissions": {"1990": 278729.053745472, "2000": 543407.349444547, "2005": 607465.687371568, "2010": 705602.073394352, "2015": 669562.379461224, "2016": 697347.8312432, "2017": 705702.257008999, "2018": 695370.935933844, "2019": 711087.333820587, "2020": 702549.349758414, "2021": 685614.104946655}, "budget": 1441831.7643200788, "emissionBudget": {"2024": 709021.3039457691, "2025": 433605.5299881793, "2026": 265173.6338386674, "2027": 162168.26405585874, "2028": 99174.814200762, "2029": 60650.85440125193, "2030": 37091.33381541132, "2031": 22683.39098909508, "2032": 13872.14138280387, "2033": 8483.577549627056, "2034": 5188.174345581045, "2035": 3172.854009135403, "2036": 1940.374762436621, "2037": 1186.6459055035273, "2038": 725.6992475412492, "2039": 443.80500993551846, "2040": 271.4111768906997, "2041": 165.9828647538195, "2042": 101.5076523653245, "2043": 62.07751326621481, "2044": 37.96381419055938, "2045": 23.216960732860215, "2046": 14.198448632308793, "2047": 8.68313238256814, "2048": 5.310213103256699, "2049": 3.247487422696554, "2050": 1.9860172003463377}, "approximatedHistoricalEmission": {"2021": 685614.104946655, "2022": 704453.9260673183, "2023": 706737.6150065432, "2024": 709021.3039457691}, "totalApproximatedHistoricalEmission": 2108509.2455200735, "trend": {"2024": 709021.3039457691, "2025": 711304.992884994, "2026": 713588.681824219, "2027": 715872.3707634448, "2028": 718156.0597026697, "2029": 720439.7486418947, "2030": 722723.4375811196, "2031": 725007.1265203455, "2032": 727290.8154595704, "2033": 729574.5043987953, "2034": 731858.1933380212, "2035": 734141.8822772461, "2036": 736425.571216471, "2037": 738709.2601556969, "2038": 740992.9490949218, "2039": 743276.6380341467, "2040": 745560.3269733726, "2041": 747844.0159125975, "2042": 750127.7048518225, "2043": 752411.3937910474, "2044": 754695.0827302733, "2045": 756978.7716694982, "2046": 759262.4606087231, "2047": 761546.149547949, "2048": 763829.8384871739, "2049": 766113.5274263988, "2050": 768397.2163656247}, "trendEmission": 19206440.764048107, "historicalEmissionChangePercent": 0.42212568775620496, "neededEmissionChangePercent": 38.84449908978411, "hitNetZero": "Aldrig", "budgetRunsOut": "2026-01-10", "electricCarChangePercent": 0.03892288872701098, "electricCarChangeYearly": {"2015": 0.014586709886547812, "2016": 0.00697350069735007, "2017": 0.023255813953488372, "2018": 0.01037344398340249, "2019": 0.023985239852398525, "2020": 0.13190184049079753, "2021": 0.1697530864197531, "2022": 0.3168831168831169}, "climatePlanLink": "https://kiruna.se/download/18.22bd3f5d17597b58e4e4c2/1604915931895/atgardsplan-for-hallbar-energi-tillika-energiplan-for-kiruna-kommunkoncern.pdf", "climatePlanYear": 2015, "climatePlanComment": "Åtgärdsplan för hållbar energi för kommunkoncernen", "bicycleMetrePerCapita": 1.255295331, "totalConsumptionEmission": 6496.0, "electricVehiclePerChargePoints": 14.030303030303031, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1QuHFKI5cCG4xYCO5vSCGQjTPb9cuenNR/view?usp=drive_link"}, {"kommun": "Klippan", "län": "Skåne län", "emissions": {"1990": 147739.012774459, "2000": 128751.020330947, "2005": 116387.716031546, "2010": 91619.6267998664, "2015": 77655.3021279539, "2016": 74492.2456302469, "2017": 71802.5930582471, "2018": 73024.334246371, "2019": 67936.3283950764, "2020": 66384.8031012905, "2021": 67082.1645574866}, "budget": 147635.57138520578, "emissionBudget": {"2024": 60096.703923991416, "2025": 40000.576131879854, "2026": 26624.52325016041, "2027": 17721.37571122076, "2028": 11795.40959841799, "2029": 7851.065846223006, "2030": 5225.696861768705, "2031": 3478.2420917074096, "2032": 2315.130090502484, "2033": 1540.9586781577332, "2034": 1025.6674808603298, "2035": 682.687859321489, "2036": 454.3994247278113, "2037": 302.44984493818504, "2038": 201.31167366227854, "2039": 133.99375344692447, "2040": 89.18671051791783, "2041": 59.362986172020314, "2042": 39.51221103228716, "2043": 26.299465733343578, "2044": 17.505016292156494, "2045": 11.651400013049123, "2046": 7.755212562978828, "2047": 5.16189658149462, "2048": 3.435776402215242, "2049": 2.2868647791857, "2050": 1.5221451881758488}, "approximatedHistoricalEmission": {"2021": 67082.1645574866, "2022": 63796.744097740855, "2023": 61946.724010866135, "2024": 60096.703923991416}, "totalApproximatedHistoricalEmission": 189332.902349346, "trend": {"2024": 60096.703923991416, "2025": 58246.68383711716, "2026": 56396.66375024244, "2027": 54546.64366336819, "2028": 52696.62357649347, "2029": 50846.603489619214, "2030": 48996.583402744494, "2031": 47146.56331587024, "2032": 45296.54322899552, "2033": 43446.5231421208, "2034": 41596.50305524655, "2035": 39746.48296837183, "2036": 37896.46288149757, "2037": 36046.44279462285, "2038": 34196.4227077486, "2039": 32346.40262087388, "2040": 30496.38253399916, "2041": 28646.362447124906, "2042": 26796.342360250186, "2043": 24946.322273375932, "2044": 23096.302186501212, "2045": 21246.28209962696, "2046": 19396.26201275224, "2047": 17546.241925877985, "2048": 15696.221839003265, "2049": 13846.201752128545, "2050": 11996.181665254291}, "trendEmission": 937207.512660196, "historicalEmissionChangePercent": -2.363863138643421, "neededEmissionChangePercent": 33.43965056308009, "hitNetZero": "2056-06-17", "budgetRunsOut": "2026-07-23", "electricCarChangePercent": 0.06431778429002259, "electricCarChangeYearly": {"2015": 0.020080321285140562, "2016": 0.015625, "2017": 0.03932584269662921, "2018": 0.0321285140562249, "2019": 0.08917197452229299, "2020": 0.245136186770428, "2021": 0.3779527559055118, "2022": 0.43673469387755104}, "climatePlanLink": "https://www.klippan.se/download/18.1b71982c18529d736e712692/1673968304934/Ha%CC%8Allbarhetsstrategi.pdf?query=klimat", "climatePlanYear": "Saknar plan", "climatePlanComment": "Hållbarhetsstrategi 2021–2023", "bicycleMetrePerCapita": 2.953589832, "totalConsumptionEmission": 6164.1, "electricVehiclePerChargePoints": 29.1875, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1w-XpLcjZch_a49jJyc65AJSYXjl6kOfM/view?usp=sharing"}, {"kommun": "Knivsta", "län": "Uppsala län", "emissions": {"1990": 82605.9270022822, "2000": 79426.2432003221, "2005": 79042.6684531072, "2010": 78745.2637768465, "2015": 71217.5120526025, "2016": 69011.1076090503, "2017": 68599.7038887571, "2018": 68009.5838609182, "2019": 66746.2763657719, "2020": 58256.8793403496, "2021": 58815.7302393248}, "budget": 136461.4010518996, "emissionBudget": {"2024": 52829.42130092066, "2025": 35871.031802710444, "2026": 24356.331962482436, "2027": 16537.882431968916, "2028": 11229.17669848307, "2029": 7624.580102347661, "2030": 5177.068924827687, "2031": 3515.2155650071754, "2032": 2386.8217031474032, "2033": 1620.645373594277, "2034": 1100.4137525182914, "2035": 747.1779122448132, "2036": 507.3317479619907, "2037": 344.47686189877135, "2038": 233.89884205022278, "2039": 158.81667062013545, "2040": 107.83608266623565, "2041": 73.22040362257087, "2042": 49.71645273174253, "2043": 33.75733470370623, "2044": 22.92113744411365, "2045": 15.563389300230131, "2046": 10.56749854151419, "2047": 7.175302453126547, "2048": 4.872010636347503, "2049": 3.308081825922241, "2050": 2.2461784638469475}, "approximatedHistoricalEmission": {"2021": 58815.7302393248, "2022": 57155.65197950788, "2023": 54992.5366402138, "2024": 52829.42130092066}, "totalApproximatedHistoricalEmission": 167970.7643898444, "trend": {"2024": 52829.42130092066, "2025": 50666.30596162658, "2026": 48503.19062233344, "2027": 46340.07528304029, "2028": 44176.95994374622, "2029": 42013.84460445307, "2030": 39850.729265158996, "2031": 37687.61392586585, "2032": 35524.498586571775, "2033": 33361.38324727863, "2034": 31198.267907984555, "2035": 29035.15256869141, "2036": 26872.037229397334, "2037": 24708.92189010419, "2038": 22545.806550811045, "2039": 20382.69121151697, "2040": 18219.575872223824, "2041": 16056.460532929748, "2042": 13893.345193636604, "2043": 11730.229854342528, "2044": 9567.114515049383, "2045": 7403.999175755307, "2046": 5240.883836462162, "2047": 3077.7684971680865, "2048": 914.6531578749418, "2049": 0, "2050": 0}, "trendEmission": 645386.2200844833, "historicalEmissionChangePercent": -3.0286103671018156, "neededEmissionChangePercent": 32.10027496158599, "hitNetZero": "2048-05-28", "budgetRunsOut": "2026-09-26", "electricCarChangePercent": 0.09554434701457269, "electricCarChangeYearly": {"2015": 0.030211480362537766, "2016": 0.030612244897959183, "2017": 0.022900763358778626, "2018": 0.07828282828282829, "2019": 0.1293634496919918, "2020": 0.3317422434367542, "2021": 0.5384615384615384, "2022": 0.6743362831858407}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.840850954, "totalConsumptionEmission": 6273.3, "electricVehiclePerChargePoints": 47.48, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Kramfors", "län": "Västernorrlands län", "emissions": {"1990": 179418.960357908, "2000": 173337.317881884, "2005": 134611.202217196, "2010": 131165.000261707, "2015": 91755.4205560817, "2016": 97785.3247988768, "2017": 92984.7508979819, "2018": 89910.8784853485, "2019": 84611.7927809191, "2020": 80689.0754995074, "2021": 82433.5722273519}, "budget": 183714.599590052, "emissionBudget": {"2024": 73482.04467043933, "2025": 49257.505114465595, "2026": 33018.9751929653, "2027": 22133.738204160087, "2028": 14836.994910570984, "2029": 9945.740567896215, "2030": 6666.966999727158, "2031": 4469.093947506109, "2032": 2995.785146747104, "2033": 2008.1763218423146, "2034": 1346.148652878866, "2035": 902.3690678640895, "2036": 604.8885707358636, "2037": 405.47731082243234, "2038": 271.80518453469864, "2039": 182.2002276529213, "2040": 122.1349880194741, "2041": 81.87122206528103, "2042": 54.88105506174692, "2043": 36.78863132504484, "2044": 24.660666476753214, "2045": 16.530880578415186, "2046": 11.081209542954836, "2047": 7.428110338853195, "2048": 4.979314125618878, "2049": 3.3378030253405613, "2050": 2.2374424980845924}, "approximatedHistoricalEmission": {"2021": 82433.5722273519, "2022": 78519.97336343955, "2023": 76001.00901693944, "2024": 73482.04467043933}, "totalApproximatedHistoricalEmission": 232478.7908292746, "trend": {"2024": 73482.04467043933, "2025": 70963.08032394014, "2026": 68444.11597744003, "2027": 65925.15163093992, "2028": 63406.18728444073, "2029": 60887.22293794062, "2030": 58368.258591440506, "2031": 55849.294244941324, "2032": 53330.32989844121, "2033": 50811.3655519411, "2034": 48292.401205441914, "2035": 45773.4368589418, "2036": 43254.47251244169, "2037": 40735.508165942505, "2038": 38216.54381944239, "2039": 35697.57947294228, "2040": 33178.615126442164, "2041": 30659.650779942982, "2042": 28140.68643344287, "2043": 25621.722086942755, "2044": 23102.757740443572, "2045": 20583.79339394346, "2046": 18064.829047443345, "2047": 15545.864700944163, "2048": 13026.90035444405, "2049": 10507.936007943936, "2050": 7988.971661444753}, "trendEmission": 1059123.2123144935, "historicalEmissionChangePercent": -1.6685352661789654, "neededEmissionChangePercent": 32.966610638855684, "hitNetZero": "2053-02-24", "budgetRunsOut": "2026-08-14", "electricCarChangePercent": 0.08132507376740258, "electricCarChangeYearly": {"2015": 0.0029154518950437317, "2016": 0.013368983957219251, "2017": 0.04075235109717868, "2018": 0.04057971014492753, "2019": 0.060498220640569395, "2020": 0.28125, "2021": 0.4882154882154882, "2022": 0.533724340175953}, "climatePlanLink": "https://www.kramfors.se/download/18.22be0c416e405e2b6c7c6cb/1575389653000/Kramfors-kommun-Program-f%C3%B6r-ekologisk-h%C3%A5llbarhet-2020-2031.pdf", "climatePlanYear": 2019, "climatePlanComment": "Program för Ekologisk hållbarhet 2020–2031", "bicycleMetrePerCapita": 2.479463175, "totalConsumptionEmission": 6163.1, "electricVehiclePerChargePoints": 10.290322580645162, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1ammChocFfoS_N_xgvfsW7mMw3Ir34bKB/view?usp=drive_link"}, {"kommun": "Kristianstad", "län": "Skåne län", "emissions": {"1990": 383605.33709947, "2000": 339503.884302256, "2005": 306093.096778466, "2010": 288481.078418043, "2015": 242826.864884333, "2016": 229502.906328977, "2017": 231082.45640406, "2018": 223063.006033357, "2019": 218748.804854722, "2020": 199736.257528065, "2021": 196241.92700692}, "budget": 456553.8111960789, "emissionBudget": {"2024": 174824.22555218823, "2025": 119206.78111452039, "2026": 81283.10947067892, "2027": 55424.2285837344, "2028": 37791.924227629876, "2029": 25769.046738632762, "2030": 17571.04946067694, "2031": 11981.109828431961, "2032": 8169.517309833956, "2033": 5570.520096334969, "2034": 3798.3509878018053, "2035": 2589.968257367435, "2036": 1766.0125659037474, "2037": 1204.1847903186413, "2038": 821.0932567700552, "2039": 559.8759772865556, "2040": 381.76066769278054, "2041": 260.3098066532052, "2042": 177.49653427984734, "2043": 121.02893888792002, "2044": 82.52557779658568, "2045": 56.27142610055608, "2046": 38.36959982510241, "2047": 26.162944370872236, "2048": 17.839635056749724, "2049": 12.164249346198654, "2050": 8.294394010067442}, "approximatedHistoricalEmission": {"2021": 196241.92700692, "2022": 189940.06575100124, "2023": 182382.1456515938, "2024": 174824.22555218823}, "totalApproximatedHistoricalEmission": 557855.2876821491, "trend": {"2024": 174824.22555218823, "2025": 167266.3054527808, "2026": 159708.38535337336, "2027": 152150.46525396593, "2028": 144592.5451545585, "2029": 137034.62505515106, "2030": 129476.70495574363, "2031": 121918.78485633619, "2032": 114360.86475692876, "2033": 106802.94465752132, "2034": 99245.02455811575, "2035": 91687.10445870832, "2036": 84129.18435930088, "2037": 76571.26425989345, "2038": 69013.34416048601, "2039": 61455.42406107858, "2040": 53897.503961671144, "2041": 46339.58386226371, "2042": 38781.663762856275, "2043": 31223.74366344884, "2044": 23665.82356404327, "2045": 16107.903464635834, "2046": 8549.9833652284, "2047": 992.0632658209652, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 2022383.353040005, "historicalEmissionChangePercent": -3.4406998754813425, "neededEmissionChangePercent": 31.813350959798754, "hitNetZero": "2047-02-11", "budgetRunsOut": "2026-10-12", "electricCarChangePercent": 0.07535474375627423, "electricCarChangeYearly": {"2015": 0.01085915043117215, "2016": 0.017018779342723004, "2017": 0.032505366452008584, "2018": 0.03319783197831978, "2019": 0.0628997867803838, "2020": 0.2339688041594454, "2021": 0.4082941427960667, "2022": 0.5450490633363069}, "climatePlanLink": "https://www.kristianstad.se/sv/bygga-bo-och-miljo/samhallsutveckling-och-hallbarhet/klimat-och-miljo/klimat-och-miljoplan/", "climatePlanYear": 2023, "climatePlanComment": "Remissversion, kommer klubbas 2023", "bicycleMetrePerCapita": 4.197073098, "totalConsumptionEmission": 6072.5, "electricVehiclePerChargePoints": 14.435294117647059, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1mYF167j4UjKJXvjtAQRG-yUgdcWAIVoC/view?usp=sharing"}, {"kommun": "Kristinehamn", "län": "Värmlands län", "emissions": {"1990": 158504.862567709, "2000": 169071.916787885, "2005": 142251.2271408, "2010": 135955.328901623, "2015": 99976.8652132213, "2016": 93947.8612245658, "2017": 91200.3882881163, "2018": 92084.2413099675, "2019": 83192.3512407978, "2020": 80632.8444123013, "2021": 80865.1948404024}, "budget": 184226.76480425202, "emissionBudget": {"2024": 69134.30340627301, "2025": 47502.5605181743, "2026": 32639.270877184616, "2027": 22426.622728824135, "2028": 15409.455956094413, "2029": 10587.922030615242, "2030": 7275.019523453751, "2031": 4998.705970217449, "2032": 3434.6383945957, "2033": 2359.95895176002, "2034": 1621.5407894920022, "2035": 1114.1696045286656, "2036": 765.5520697968142, "2037": 526.0150422234107, "2038": 361.427831706775, "2039": 248.33905315730385, "2040": 170.63513075855377, "2041": 117.24433784703916, "2042": 80.55923007227271, "2043": 55.352690535078594, "2044": 38.03313843396249, "2045": 26.13277882527232, "2046": 17.955976215751168, "2047": 12.337650121954137, "2048": 8.47726732887003, "2049": 5.8247770567953925, "2050": 4.002236386462099}, "approximatedHistoricalEmission": {"2021": 80865.1948404024, "2022": 75703.8092484381, "2023": 72419.05632735603, "2024": 69134.30340627301}, "totalApproximatedHistoricalEmission": 223122.61469913184, "trend": {"2024": 69134.30340627301, "2025": 65849.55048519094, "2026": 62564.797564108856, "2027": 59280.044643025845, "2028": 55995.291721943766, "2029": 52710.53880086169, "2030": 49425.785879778676, "2031": 46141.032958696596, "2032": 42856.28003761452, "2033": 39571.52711653244, "2034": 36286.77419544943, "2035": 33002.02127436735, "2036": 29717.268353285268, "2037": 26432.515432202257, "2038": 23147.762511120178, "2039": 19863.0095900381, "2040": 16578.256668955088, "2041": 13293.503747873008, "2042": 10008.750826790929, "2043": 6723.997905708849, "2044": 3439.2449846258387, "2045": 154.4920635437593, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 727609.5984648499, "historicalEmissionChangePercent": -3.405073736539824, "neededEmissionChangePercent": 31.289449408317783, "hitNetZero": "2045-01-12", "budgetRunsOut": "2026-11-10", "electricCarChangePercent": 0.05632201864964928, "electricCarChangeYearly": {"2015": 0.012222222222222223, "2016": 0.024757804090419805, "2017": 0.03773584905660377, "2018": 0.036756756756756756, "2019": 0.051047120418848166, "2020": 0.1643598615916955, "2021": 0.31135531135531136, "2022": 0.4270650263620387}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.445690665, "totalConsumptionEmission": 5767.0, "electricVehiclePerChargePoints": 17.0, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Krokom", "län": "Jämtlands län", "emissions": {"1990": 83918.4081323876, "2000": 80322.453219623, "2005": 75466.4158521212, "2010": 67395.6596243179, "2015": 60831.2173563344, "2016": 58122.7331068045, "2017": 54523.4195770528, "2018": 41496.9592099231, "2019": 42839.2978264091, "2020": 39932.603862411, "2021": 39702.8662282482}, "budget": 99963.30727607019, "emissionBudget": {"2024": 24324.992390234023, "2025": 19070.928425239006, "2026": 14951.713248905566, "2027": 11722.225792722335, "2028": 9190.289784725703, "2029": 7205.237965956168, "2030": 5648.946372979432, "2031": 4428.805165848925, "2032": 3472.207718393495, "2033": 2722.2300345561466, "2034": 2134.243386933151, "2035": 1673.2586066741299, "2036": 1311.8439920913981, "2037": 1028.4929375064917, "2038": 806.3441452472914, "2039": 632.1782647831559, "2040": 495.63125226348205, "2041": 388.5776400498806, "2042": 304.6470166220786, "2043": 238.84494415278067, "2044": 187.25575579199867, "2045": 146.80954709597268, "2046": 115.09949602011424, "2047": 90.23864078419813, "2048": 70.74759292739658, "2049": 55.466503723060164, "2050": 43.48604536153591}, "approximatedHistoricalEmission": {"2021": 39702.8662282482, "2022": 32285.66622049734, "2023": 28305.32930536568, "2024": 24324.992390234023}, "totalApproximatedHistoricalEmission": 92604.92483510413, "trend": {"2024": 24324.992390234023, "2025": 20344.655475101434, "2026": 16364.318559969775, "2027": 12383.981644838117, "2028": 8403.644729706459, "2029": 4423.307814573869, "2030": 442.9708994422108, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 74525.37531874888, "historicalEmissionChangePercent": -6.443699806862473, "neededEmissionChangePercent": 21.599447517625595, "hitNetZero": "2030-02-08", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.0929713150065911, "electricCarChangeYearly": {"2015": 0.04975124378109453, "2016": 0.010638297872340425, "2017": 0.06666666666666667, "2018": 0.05333333333333334, "2019": 0.11594202898550725, "2020": 0.30526315789473685, "2021": 0.5, "2022": 0.7046632124352331}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 1.078378995, "totalConsumptionEmission": 6107.5, "electricVehiclePerChargePoints": 6.552238805970149, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Kumla", "län": "Örebro län", "emissions": {"1990": 149435.591000509, "2000": 141729.340107194, "2005": 178567.799414359, "2010": 183040.797142535, "2015": 190780.299923389, "2016": 194299.288310504, "2017": 202851.522333662, "2018": 196725.355222654, "2019": 187473.137967606, "2020": 177000.848891856, "2021": 191950.953151967}, "budget": 397271.5700701852, "emissionBudget": {"2024": 181626.63578931475, "2025": 114981.13197577078, "2026": 72790.31873808125, "2027": 46080.86919085095, "2028": 29172.100661147488, "2029": 18467.782225624433, "2030": 11691.272572198577, "2031": 7401.313957871365, "2032": 4685.499201621987, "2033": 2966.216930313044, "2034": 1877.8026628688704, "2035": 1188.767687434541, "2036": 752.5650286007451, "2037": 476.42119504028517, "2038": 301.6047071781099, "2039": 190.93482896851702, "2040": 120.87380616280645, "2041": 76.52075367921903, "2042": 48.44247012250918, "2043": 30.667143209378548, "2044": 19.41423858540062, "2045": 12.290439226031044, "2046": 7.780624293056495, "2047": 4.925626600999066, "2048": 3.1182327405425587, "2049": 1.9740382720483487, "2050": 1.2496909062771215}, "approximatedHistoricalEmission": {"2021": 191950.953151967, "2022": 184945.44318343047, "2023": 183286.03948637238, "2024": 181626.63578931475}, "totalApproximatedHistoricalEmission": 555020.2771404437, "trend": {"2024": 181626.63578931475, "2025": 179967.23209225666, "2026": 178307.82839519903, "2027": 176648.42469814094, "2028": 174989.0210010833, "2029": 173329.61730402522, "2030": 171670.2136069676, "2031": 170010.8099099095, "2032": 168351.40621285187, "2033": 166692.00251579378, "2034": 165032.59881873615, "2035": 163373.19512167806, "2036": 161713.79142462043, "2037": 160054.38772756234, "2038": 158394.9840305047, "2039": 156735.58033344662, "2040": 155076.176636389, "2041": 153416.7729393309, "2042": 151757.36924227327, "2043": 150097.96554521518, "2044": 148438.56184815755, "2045": 146779.15815109946, "2046": 145119.75445404183, "2047": 143460.35075698374, "2048": 141800.9470599261, "2049": 140141.54336286848, "2050": 138482.1396658104}, "trendEmission": 4161414.0809166245, "historicalEmissionChangePercent": 0.23054793517035935, "neededEmissionChangePercent": 36.69368400946003, "hitNetZero": "2133-05-19", "budgetRunsOut": "2026-03-18", "electricCarChangePercent": 0.07362269170409613, "electricCarChangeYearly": {"2015": 0.01834862385321101, "2016": 0.02142857142857143, "2017": 0.035916824196597356, "2018": 0.060948081264108354, "2019": 0.1038961038961039, "2020": 0.2626865671641791, "2021": 0.3817204301075269, "2022": 0.5411471321695761}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Nya handlingsplanen för ökad ekologisk hållbarhet förväntas hösten 2023.", "bicycleMetrePerCapita": 3.84927185, "totalConsumptionEmission": 6108.8, "electricVehiclePerChargePoints": 45.705882352941174, "procurementScore": "2", "procurementLink": "https://www.orebro.se/fordjupning/fordjupning/sa-arbetar-vi-med/maltider-i-kommunens-kok-och-serveringar.html"}, {"kommun": "Kungsbacka", "län": "Hallands län", "emissions": {"1990": 252923.434702942, "2000": 240822.485181889, "2005": 227569.636573946, "2010": 240139.945458325, "2015": 199859.118908086, "2016": 192309.658500629, "2017": 190809.092456781, "2018": 185553.640890128, "2019": 186077.90382155, "2020": 170648.221239489, "2021": 170972.7920826}, "budget": 383985.2637107224, "emissionBudget": {"2024": 156308.69463547133, "2025": 104038.74208980135, "2026": 69247.97037599908, "2027": 46091.30507418269, "2028": 30678.2768058959, "2029": 20419.397243458498, "2030": 13591.108341066554, "2031": 9046.213447744383, "2032": 6021.14085831277, "2033": 4007.6588337281814, "2034": 2667.4893854019883, "2035": 1775.475387612518, "2036": 1181.7527257161964, "2037": 786.5721566636789, "2038": 523.5407917198525, "2039": 348.4676622132799, "2040": 231.93935129579316, "2041": 154.37834988139457, "2042": 102.7539086358329, "2043": 68.39278790097737, "2044": 45.5220973972458, "2045": 30.299413359850988, "2046": 20.167226521655458, "2047": 13.423264033048682, "2048": 8.934496625376726, "2049": 5.9467823736711605, "2050": 3.9581659809866374}, "approximatedHistoricalEmission": {"2021": 170972.7920826, "2022": 165931.0548950415, "2023": 161119.87476525642, "2024": 156308.69463547133}, "totalApproximatedHistoricalEmission": 490691.6730193336, "trend": {"2024": 156308.69463547133, "2025": 151497.51450568624, "2026": 146686.334375903, "2027": 141875.15424611792, "2028": 137063.97411633283, "2029": 132252.79398654774, "2030": 127441.61385676451, "2031": 122630.43372697942, "2032": 117819.25359719433, "2033": 113008.07346740924, "2034": 108196.89333762601, "2035": 103385.71320784092, "2036": 98574.53307805583, "2037": 93763.35294827074, "2038": 88952.17281848751, "2039": 84140.99268870242, "2040": 79329.81255891733, "2041": 74518.63242913224, "2042": 69707.45229934901, "2043": 64896.27216956392, "2044": 60085.09203977883, "2045": 55273.91190999374, "2046": 50462.73178021051, "2047": 45651.55165042542, "2048": 40840.37152064033, "2049": 36029.19139085524, "2050": 31218.011261070147}, "trendEmission": 2437847.176655056, "historicalEmissionChangePercent": -2.5218820510414557, "neededEmissionChangePercent": 33.44020796000447, "hitNetZero": "2056-06-19", "budgetRunsOut": "2026-07-23", "electricCarChangePercent": 0.08085876171896782, "electricCarChangeYearly": {"2015": 0.01701059676519799, "2016": 0.021672616012238653, "2017": 0.04974592136935009, "2018": 0.07088545499141526, "2019": 0.07749248207263475, "2020": 0.2435483870967742, "2021": 0.4542525773195876, "2022": 0.594327990135635}, "climatePlanLink": "https://kungsbacka.se/download/18.5c06deb5186a19d6e5c23920/1678800987979/Klimatstrategi%202022.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatstrategi", "bicycleMetrePerCapita": 2.391165078, "totalConsumptionEmission": 6550.5, "electricVehiclePerChargePoints": 22.670103092783506, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1y2nkO3_NWSuN-oewU29nLqG2deq3_YtE/view?usp=drive_link"}, {"kommun": "Kungsör", "län": "Västmanlands län", "emissions": {"1990": 52522.4727123086, "2000": 45488.9044743324, "2005": 44308.8196679703, "2010": 45117.2707947385, "2015": 37791.3099553668, "2016": 36520.4229961647, "2017": 36557.1018438579, "2018": 36078.9479151651, "2019": 36061.185872988, "2020": 33039.3772842081, "2021": 33670.3774418063}, "budget": 73974.74072486217, "emissionBudget": {"2024": 31426.78798662289, "2025": 20549.350057580123, "2026": 13436.810276911336, "2027": 8786.062328580103, "2028": 5745.030974675554, "2029": 3756.5612063345643, "2030": 2456.340472165122, "2031": 1606.1520587025434, "2032": 1050.230806725479, "2033": 686.7249843618455, "2034": 449.03577492375604, "2035": 293.6155400676883, "2036": 191.98934736074952, "2037": 125.53800623600868, "2038": 82.08679922276825, "2039": 53.674921314038734, "2040": 35.096960843238136, "2041": 22.949202910328495, "2042": 15.006026207562615, "2043": 9.812141337628384, "2044": 6.415963580089862, "2045": 4.195270659542812, "2046": 2.743203836355672, "2047": 1.7937262928863236, "2048": 1.1728818584863434, "2049": 0.7669240616152132, "2050": 0.50147635248058}, "approximatedHistoricalEmission": {"2021": 33670.3774418063, "2022": 32842.55976772751, "2023": 32134.6738771752, "2024": 31426.78798662289}, "totalApproximatedHistoricalEmission": 97525.8163591173, "trend": {"2024": 31426.78798662289, "2025": 30718.902096070582, "2026": 30011.016205518274, "2027": 29303.130314965965, "2028": 28595.244424413657, "2029": 27887.35853386135, "2030": 27179.47264330904, "2031": 26471.58675275673, "2032": 25763.700862204423, "2033": 25055.814971652115, "2034": 24347.929081099806, "2035": 23640.043190547498, "2036": 22932.15729999519, "2037": 22224.27140944288, "2038": 21516.385518890573, "2039": 20808.499628338264, "2040": 20100.613737785956, "2041": 19392.727847233647, "2042": 18684.84195668134, "2043": 17976.95606612903, "2044": 17269.070175576722, "2045": 16561.184285024414, "2046": 15853.298394472105, "2047": 15145.412503919797, "2048": 14437.526613367489, "2049": 13729.64072281518, "2050": 13021.754832262872}, "trendEmission": 577831.0566455149, "historicalEmissionChangePercent": -1.8482495901534177, "neededEmissionChangePercent": 34.61199386228352, "hitNetZero": "2068-05-13", "budgetRunsOut": "2026-06-03", "electricCarChangePercent": 0.07679359962426027, "electricCarChangeYearly": {"2015": 0.016666666666666666, "2016": 0.03626943005181347, "2017": 0.017241379310344827, "2018": 0.03759398496240601, "2019": 0.05384615384615385, "2020": 0.2608695652173913, "2021": 0.4019607843137255, "2022": 0.5702479338842975}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plans saknas. ", "bicycleMetrePerCapita": 0.7854633489, "totalConsumptionEmission": 5957.7, "electricVehiclePerChargePoints": 21.25, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Kungälv", "län": "Västra Götalands län", "emissions": {"1990": 138693.046343355, "2000": 132298.295321465, "2005": 125900.57085809, "2010": 122626.891289009, "2015": 105751.143222024, "2016": 103075.582173927, "2017": 101486.031249544, "2018": 102628.353832327, "2019": 102645.662462831, "2020": 94757.4662368021, "2021": 94700.2499214517}, "budget": 208856.91945465954, "emissionBudget": {"2024": 90300.08117926866, "2025": 58602.922484822, "2026": 38032.108929604285, "2027": 24682.067861170413, "2028": 16018.161786164195, "2029": 10395.46234338746, "2030": 6746.444365802899, "2031": 4378.305656585383, "2032": 2841.431631698661, "2033": 1844.0315388840115, "2034": 1196.7390939355735, "2035": 776.6594164764018, "2036": 504.0362199732222, "2037": 327.1092909650101, "2038": 212.28729999069552, "2039": 137.77015505854328, "2040": 89.4100383098139, "2041": 58.02530270191973, "2042": 37.657245397688754, "2043": 24.438789026684955, "2044": 15.860278753354459, "2045": 10.292999455064596, "2046": 6.679948027997445, "2047": 4.335150881096301, "2048": 2.8134250570665107, "2049": 1.825855839584526, "2050": 1.1849434334749755}, "approximatedHistoricalEmission": {"2021": 94700.2499214517, "2022": 93773.6012194599, "2023": 92036.84119936451, "2024": 90300.08117926866}, "totalApproximatedHistoricalEmission": 278310.6079691846, "trend": {"2024": 90300.08117926866, "2025": 88563.32115917327, "2026": 86826.56113907741, "2027": 85089.80111898156, "2028": 83353.04109888617, "2029": 81616.28107879031, "2030": 79879.52105869446, "2031": 78142.76103859907, "2032": 76406.00101850322, "2033": 74669.24099840736, "2034": 72932.48097831197, "2035": 71195.72095821612, "2036": 69458.96093812073, "2037": 67722.20091802487, "2038": 65985.44089792902, "2039": 64248.68087783363, "2040": 62511.92085773777, "2041": 60775.16083764192, "2042": 59038.40081754653, "2043": 57301.64079745067, "2044": 55564.88077735528, "2045": 53828.12075725943, "2046": 52091.36073716357, "2047": 50354.600717068184, "2048": 48617.84069697233, "2049": 46881.080676876474, "2050": 45144.320656781085}, "trendEmission": 1760777.2238686462, "historicalEmissionChangePercent": -1.7791627641884096, "neededEmissionChangePercent": 35.10202679831453, "hitNetZero": "2075-12-16", "budgetRunsOut": "2026-05-14", "electricCarChangePercent": 0.06459040640158112, "electricCarChangeYearly": {"2015": 0.056195965417867436, "2016": 0.047619047619047616, "2017": 0.06621678616617462, "2018": 0.09133709981167608, "2019": 0.06986143187066975, "2020": 0.24234354194407456, "2021": 0.37776332899869963, "2022": 0.5230485556238476}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.359773817, "totalConsumptionEmission": 6141.1, "electricVehiclePerChargePoints": 15.886363636363637, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1262bO-n943JUJbipwSl9rDqo1LwEgnri/view?usp=drive_link"}, {"kommun": "Kävlinge", "län": "Skåne län", "emissions": {"1990": 117359.887003556, "2000": 110092.910897172, "2005": 102207.668911966, "2010": 93300.9901463465, "2015": 76843.8983701967, "2016": 73916.149228269, "2017": 72863.595053532, "2018": 69984.8944386851, "2019": 70140.4171776683, "2020": 64690.2711788349, "2021": 64984.7393355088}, "budget": 146168.0941600283, "emissionBudget": {"2024": 58327.90688064182, "2025": 39135.65245352235, "2026": 26258.430567327723, "2027": 17618.338589807074, "2028": 11821.188393921395, "2029": 7931.536468792094, "2030": 5321.7382770185495, "2031": 3570.6698696422195, "2032": 2395.7742102856037, "2033": 1607.46702333608, "2034": 1078.5449730694454, "2035": 723.6597964661091, "2036": 485.54628142302926, "2037": 325.78180044685234, "2038": 218.58633370919432, "2039": 146.66253676200083, "2040": 98.4045952208606, "2041": 66.02547981489936, "2042": 44.300410717644546, "2043": 29.72377323502811, "2044": 19.943442532813382, "2045": 13.381238543123782, "2046": 8.97826664846726, "2047": 6.02405164149788, "2048": 4.041893563678954, "2049": 2.7119461373088787, "2050": 1.8196055229545192}, "approximatedHistoricalEmission": {"2021": 64984.7393355088, "2022": 62381.65052912757, "2023": 60354.77870488493, "2024": 58327.90688064182}, "totalApproximatedHistoricalEmission": 184392.7523420878, "trend": {"2024": 58327.90688064182, "2025": 56301.03505639918, "2026": 54274.16323215654, "2027": 52247.2914079139, "2028": 50220.41958367126, "2029": 48193.54775942862, "2030": 46166.675935185514, "2031": 44139.804110942874, "2032": 42112.932286700234, "2033": 40086.06046245759, "2034": 38059.18863821495, "2035": 36032.31681397185, "2036": 34005.44498972921, "2037": 31978.573165486567, "2038": 29951.701341243926, "2039": 27924.829517001286, "2040": 25897.95769275818, "2041": 23871.08586851554, "2042": 21844.2140442729, "2043": 19817.34222003026, "2044": 17790.47039578762, "2045": 15763.598571544979, "2046": 13736.726747301873, "2047": 11709.854923059233, "2048": 9682.983098816592, "2049": 7656.111274573952, "2050": 5629.239450331312}, "trendEmission": 831442.9023026512, "historicalEmissionChangePercent": -2.7129505121992583, "neededEmissionChangePercent": 32.90406848713629, "hitNetZero": "2052-10-03", "budgetRunsOut": "2026-08-17", "electricCarChangePercent": 0.09283559648488335, "electricCarChangeYearly": {"2015": 0.031932773109243695, "2016": 0.02346041055718475, "2017": 0.05398110661268556, "2018": 0.10201149425287356, "2019": 0.16779431664411368, "2020": 0.3195084485407066, "2021": 0.5037688442211056, "2022": 0.6796875}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Ska tas fram 2023.", "bicycleMetrePerCapita": 4.384705605, "totalConsumptionEmission": 6198.9, "electricVehiclePerChargePoints": 32.59649122807018, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1rqYkHoIoH9ZcZ13i1508K3Wq1QlaNueC/view?usp=drive_link"}, {"kommun": "Köping", "län": "Västmanlands län", "emissions": {"1990": 275184.911119743, "2000": 276242.310290388, "2005": 337929.071582352, "2010": 321341.079993235, "2015": 305690.275769299, "2016": 321715.876364122, "2017": 301347.992908397, "2018": 275923.764467451, "2019": 267807.959495348, "2020": 255863.166979467, "2021": 270481.333456314}, "budget": 592118.0293278998, "emissionBudget": {"2024": 227503.1358226277, "2025": 154925.5668745506, "2026": 105501.54038366265, "2027": 71844.66223278997, "2028": 48924.930124934755, "2029": 33317.00245139833, "2030": 22688.28283478233, "2031": 15450.314857766387, "2032": 10521.388107792725, "2033": 7164.877139002575, "2034": 4879.153196428505, "2035": 3322.6160689661947, "2036": 2262.642121963578, "2037": 1540.8188204172357, "2038": 1049.2700610079862, "2039": 714.5341466101596, "2040": 486.5849752555011, "2041": 331.3556661604479, "2042": 225.6472827566882, "2043": 153.6617641263516, "2044": 104.64091331373515, "2045": 71.25859058945203, "2046": 48.52582581700986, "2047": 33.04521955520323, "2048": 22.503203542984522, "2049": 15.324279169973174, "2050": 10.435560058402626}, "approximatedHistoricalEmission": {"2021": 270481.333456314, "2022": 246851.15575986728, "2023": 237177.1457912475, "2024": 227503.1358226277}, "totalApproximatedHistoricalEmission": 733020.5361905856, "trend": {"2024": 227503.1358226277, "2025": 217829.12585401163, "2026": 208155.11588539183, "2027": 198481.10591677204, "2028": 188807.09594815224, "2029": 179133.08597953618, "2030": 169459.07601091638, "2031": 159785.0660422966, "2032": 150111.0560736768, "2033": 140437.046105057, "2034": 130763.03613644093, "2035": 121089.02616782114, "2036": 111415.01619920135, "2037": 101741.00623058155, "2038": 92066.99626196548, "2039": 82392.98629334569, "2040": 72718.9763247259, "2041": 63044.9663561061, "2042": 53370.956387490034, "2043": 43696.94641887024, "2044": 34022.93645025045, "2045": 24348.926481630653, "2046": 14674.916513014585, "2047": 5000.906544394791, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 2676296.9404929634, "historicalEmissionChangePercent": -1.868945577905195, "neededEmissionChangePercent": 31.90178838003449, "hitNetZero": "2047-07-02", "budgetRunsOut": "2026-10-07", "electricCarChangePercent": 0.0670495271242888, "electricCarChangeYearly": {"2015": 0.00851063829787234, "2016": 0.00816326530612245, "2017": 0.020134228187919462, "2018": 0.036231884057971016, "2019": 0.061377245508982034, "2020": 0.2505694760820046, "2021": 0.34968017057569295, "2022": 0.4668141592920354}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.951098729, "totalConsumptionEmission": 6160.5, "electricVehiclePerChargePoints": 11.304347826086957, "procurementScore": "2", "procurementLink": "https://docs.google.com/presentation/d/1efwagf4pX8ZGtM1_17gsX19APKvybYaf/edit?usp=drive_link&ouid=104089955738391943844&rtpof=true&sd=true"}, {"kommun": "Laholm", "län": "Hallands län", "emissions": {"1990": 173435.285044534, "2000": 154023.186086601, "2005": 128247.09489487, "2010": 120430.460488648, "2015": 102061.284515313, "2016": 99429.7180782214, "2017": 96321.341805945, "2018": 88003.2497259283, "2019": 87769.6341299853, "2020": 78858.8474330307, "2021": 77361.1891192005}, "budget": 186568.63431719353, "emissionBudget": {"2024": 63444.9517250862, "2025": 45155.42223173667, "2026": 32138.28841357903, "2027": 22873.655722976597, "2028": 16279.775680654991, "2029": 11586.739759583854, "2030": 8246.584037140728, "2031": 5869.30833803993, "2032": 4177.339394328077, "2033": 2973.121092021687, "2034": 2116.047606719791, "2035": 1506.0461162918193, "2036": 1071.8921905134746, "2037": 762.8935499748983, "2038": 542.9711810051542, "2039": 386.4467112244329, "2040": 275.0441751617798, "2041": 195.75609286655234, "2042": 139.3247025567379, "2043": 99.16101439435806, "2044": 70.57547294395819, "2045": 50.230399635229745, "2046": 35.75028182267232, "2047": 25.44440537367525, "2048": 18.109445067628254, "2049": 12.888963048700052, "2050": 9.173410220488458}, "approximatedHistoricalEmission": {"2021": 77361.1891192005, "2022": 72287.36137899198, "2023": 67866.15655203909, "2024": 63444.9517250862}, "totalApproximatedHistoricalEmission": 210556.58835317442, "trend": {"2024": 63444.9517250862, "2025": 59023.74689813331, "2026": 54602.54207118042, "2027": 50181.33724422753, "2028": 45760.13241727464, "2029": 41338.92759032175, "2030": 36917.72276336886, "2031": 32496.51793641597, "2032": 28075.31310946308, "2033": 23654.10828251019, "2034": 19232.9034555573, "2035": 14811.698628604412, "2036": 10390.493801651523, "2037": 5969.288974698633, "2038": 1548.0841477457434, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 455725.29318369646, "historicalEmissionChangePercent": -4.442915307396002, "neededEmissionChangePercent": 28.827399180000988, "hitNetZero": "2038-05-04", "budgetRunsOut": "2027-04-30", "electricCarChangePercent": 0.060605190709050294, "electricCarChangeYearly": {"2015": 0.019966722129783693, "2016": 0.028481012658227847, "2017": 0.037162162162162164, "2018": 0.057245080500894455, "2019": 0.08333333333333333, "2020": 0.2023121387283237, "2021": 0.34206219312602293, "2022": 0.4487369985141159}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.734875322, "totalConsumptionEmission": 6146.9, "electricVehiclePerChargePoints": 15.426470588235293, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/1GtY6dau8CLIUyg3zal3EM3ZK4eeniAHU/edit?usp=drive_link&ouid=104089955738391943844&rtpof=true&sd=true"}, {"kommun": "Landskrona", "län": "Skåne län", "emissions": {"1990": 221517.150665182, "2000": 238974.903206676, "2005": 221662.979018637, "2010": 228150.291232666, "2015": 214212.190840295, "2016": 214934.91761128, "2017": 194373.431350113, "2018": 206898.925765666, "2019": 213865.812473545, "2020": 198518.789973287, "2021": 200544.976214399}, "budget": 427566.54329812113, "emissionBudget": {"2024": 194548.10959760332, "2025": 123429.11344634641, "2026": 78308.37358256569, "2027": 49681.96888015637, "2028": 31520.23109260896, "2029": 19997.69716309089, "2030": 12687.34009759421, "2031": 8049.356755392635, "2032": 5106.834346457778, "2033": 3239.98026608633, "2034": 2055.573259765151, "2035": 1304.1380129655836, "2036": 827.3973932975437, "2037": 524.9340481064842, "2038": 333.03918660324643, "2039": 211.29340002508792, "2040": 134.05299643416384, "2041": 85.048590494754, "2042": 53.958232471862395, "2043": 34.23326400297176, "2044": 21.718953913256538, "2045": 13.779374325662099, "2046": 8.742187011632483, "2047": 5.546393612663791, "2048": 3.5188542713241753, "2049": 2.2325020991197695, "2050": 1.4163887556214796}, "approximatedHistoricalEmission": {"2021": 200544.976214399, "2022": 198429.64659976354, "2023": 196488.87809868343, "2024": 194548.10959760332}, "totalApproximatedHistoricalEmission": 592465.0676044482, "trend": {"2024": 194548.10959760332, "2025": 192607.34109652368, "2026": 190666.57259544358, "2027": 188725.80409436347, "2028": 186785.03559328336, "2029": 184844.26709220372, "2030": 182903.4985911236, "2031": 180962.7300900435, "2032": 179021.9615889634, "2033": 177081.1930878833, "2034": 175140.42458680365, "2035": 173199.65608572355, "2036": 171258.88758464344, "2037": 169318.11908356333, "2038": 167377.3505824837, "2039": 165436.58208140358, "2040": 163495.81358032348, "2041": 161555.04507924337, "2042": 159614.27657816373, "2043": 157673.50807708362, "2044": 155732.7395760035, "2045": 153791.9710749234, "2046": 151851.20257384377, "2047": 149910.43407276366, "2048": 147969.66557168355, "2049": 146028.89707060345, "2050": 144088.12856952334}, "trendEmission": 4402271.096172651, "historicalEmissionChangePercent": -0.9288361236154857, "neededEmissionChangePercent": 36.555994452147075, "hitNetZero": "2124-03-05", "budgetRunsOut": "2026-03-23", "electricCarChangePercent": 0.073765669003437, "electricCarChangeYearly": {"2015": 0.017804154302670624, "2016": 0.025495750708215296, "2017": 0.027285129604365622, "2018": 0.05547445255474453, "2019": 0.09612817089452604, "2020": 0.20211161387631976, "2021": 0.4315937940761636, "2022": 0.5321888412017167}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.130120968, "totalConsumptionEmission": 6015.8, "electricVehiclePerChargePoints": 20.285714285714285, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Laxå", "län": "Örebro län", "emissions": {"1990": 81219.2126806876, "2000": 61071.5955164122, "2005": 45663.7779513741, "2010": 45148.6071348353, "2015": 37850.1362316764, "2016": 36409.0688466917, "2017": 34674.5022250052, "2018": 35063.5425499929, "2019": 34303.0187225259, "2020": 32173.2541113684, "2021": 31187.2362827871}, "budget": 71587.71177130443, "emissionBudget": {"2024": 28344.719962907955, "2025": 19077.25595474043, "2026": 12839.840902959539, "2027": 8641.783430721704, "2028": 5816.304222763585, "2029": 3914.6311734072583, "2030": 2634.720715576776, "2031": 1773.284108154526, "2032": 1193.4989957920495, "2033": 803.2778540146392, "2034": 540.6416871948425, "2035": 363.8758774091128, "2036": 244.90463332054125, "2037": 164.8316998887892, "2038": 110.93905786856773, "2039": 74.66691521757754, "2040": 50.25415156052556, "2041": 33.823276905294506, "2042": 22.7645682015821, "2043": 15.321565880666144, "2044": 10.312094609344616, "2045": 6.940497861661841, "2046": 4.671263442839385, "2047": 3.1439678517792795, "2048": 2.116030057815235, "2049": 1.4241822488876663, "2050": 0.9585379331241232}, "approximatedHistoricalEmission": {"2021": 31187.2362827871, "2022": 30404.135164321633, "2023": 29374.427563614678, "2024": 28344.719962907955}, "totalApproximatedHistoricalEmission": 89544.54085078384, "trend": {"2024": 28344.719962907955, "2025": 27315.012362201, "2026": 26285.304761494044, "2027": 25255.59716078709, "2028": 24225.889560080133, "2029": 23196.181959373178, "2030": 22166.474358666223, "2031": 21136.766757959267, "2032": 20107.05915725231, "2033": 19077.351556545356, "2034": 18047.643955838634, "2035": 17017.93635513168, "2036": 15988.228754424723, "2037": 14958.521153717767, "2038": 13928.81355301058, "2039": 12899.105952303857, "2040": 11869.398351597134, "2041": 10839.690750889946, "2042": 9809.983150183223, "2043": 8780.275549476035, "2044": 7750.567948769312, "2045": 6720.860348062124, "2046": 5691.1527473554015, "2047": 4661.445146648213, "2048": 3631.7375459414907, "2049": 2602.029945234768, "2050": 1572.3223445275798}, "trendEmission": 388921.54999666126, "historicalEmissionChangePercent": -3.148634275252381, "neededEmissionChangePercent": 32.695556774930104, "hitNetZero": "2051-07-05", "budgetRunsOut": "2026-08-27", "electricCarChangePercent": 0.07003482854357825, "electricCarChangeYearly": {"2015": 0.008547008547008548, "2016": 0.031007751937984496, "2017": 0.0, "2018": 0.208, "2019": 0.06930693069306931, "2020": 0.16216216216216217, "2021": 0.45, "2022": 0.5}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.420762914, "totalConsumptionEmission": 6576.6, "electricVehiclePerChargePoints": 14.333333333333334, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Lekeberg", "län": "Örebro län", "emissions": {"1990": 37123.6735479364, "2000": 34228.6055604051, "2005": 30891.7177039356, "2010": 33119.0407198041, "2015": 28796.8131194765, "2016": 27488.7428487618, "2017": 27719.6227335774, "2018": 27441.7911451874, "2019": 27338.9517558107, "2020": 25034.8424168121, "2021": 25252.8960235231}, "budget": 56009.71682950055, "emissionBudget": {"2024": 23599.04647840839, "2025": 15484.938966539134, "2026": 10160.721324771679, "2027": 6667.140120006814, "2028": 4374.7639521845995, "2029": 2870.5800827408225, "2030": 1883.582771891825, "2031": 1235.9467272483064, "2032": 810.9886835828037, "2033": 532.1448169240015, "2034": 349.1763965534619, "2035": 229.11837536035446, "2036": 150.3401445398981, "2037": 98.64839092337785, "2038": 64.72991669360127, "2039": 42.473699529625236, "2040": 27.869882179397564, "2041": 18.287324657267863, "2042": 11.99955711931704, "2043": 7.873725312932911, "2044": 5.166486536717204, "2045": 3.3900831021164075, "2046": 2.2244640255189143, "2047": 1.4596220953222796, "2048": 0.9577573009552303, "2049": 0.6284496860336392, "2050": 0.41236856924178183}, "approximatedHistoricalEmission": {"2021": 25252.8960235231, "2022": 24736.20527337445, "2023": 24167.62587589142, "2024": 23599.04647840839}, "totalApproximatedHistoricalEmission": 73329.80240023161, "trend": {"2024": 23599.04647840839, "2025": 23030.46708092536, "2026": 22461.887683442095, "2027": 21893.308285959065, "2028": 21324.728888476035, "2029": 20756.149490993004, "2030": 20187.570093509974, "2031": 19618.99069602671, "2032": 19050.41129854368, "2033": 18481.83190106065, "2034": 17913.25250357762, "2035": 17344.67310609459, "2036": 16776.093708611326, "2037": 16207.514311128296, "2038": 15638.934913645266, "2039": 15070.355516162235, "2040": 14501.776118679205, "2041": 13933.196721195942, "2042": 13364.617323712911, "2043": 12796.037926229881, "2044": 12227.45852874685, "2045": 11658.87913126382, "2046": 11090.299733780557, "2047": 10521.720336297527, "2048": 9953.140938814497, "2049": 9384.561541331466, "2050": 8815.982143848436}, "trendEmission": 421395.372089337, "historicalEmissionChangePercent": -2.10608140685666, "neededEmissionChangePercent": 34.383200691151394, "hitNetZero": "2065-06-23", "budgetRunsOut": "2026-06-12", "electricCarChangePercent": 0.08794698058806111, "electricCarChangeYearly": {"2015": 0.03571428571428571, "2016": 0.013157894736842105, "2017": 0.007633587786259542, "2018": 0.06521739130434782, "2019": 0.07246376811594203, "2020": 0.19148936170212766, "2021": 0.5804195804195804, "2022": 0.6060606060606061}, "climatePlanLink": "https://lekeberg.se/download/18.4743cfc18120db3f63d6f13/1655444950983/H%C3%A5llbarhetsprogram%20f%C3%B6r%20Lekebergs%20kommun%202022-2030%20-%20%20antagen.pdf", "climatePlanYear": 2022, "climatePlanComment": "Hållbarhetsprogram 2022–2030", "bicycleMetrePerCapita": 1.332483676, "totalConsumptionEmission": 6034.4, "electricVehiclePerChargePoints": 21.266666666666666, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1VKCOeuXYByZoSmBUxg8Iva68xH8iKEgW/view?usp=drive_link"}, {"kommun": "Leksand", "län": "Dalarnas län", "emissions": {"1990": 74909.9515759805, "2000": 69814.5863237373, "2005": 60724.8214713033, "2010": 53672.7805932176, "2015": 44372.3122621856, "2016": 42272.5340665295, "2017": 38474.9006088442, "2018": 36952.5495949117, "2019": 36350.9050526229, "2020": 33460.4154038264, "2021": 35064.8140512671}, "budget": 79078.73591291448, "emissionBudget": {"2024": 27920.3342526583, "2025": 19614.815760890124, "2026": 13779.956710118264, "2027": 9680.805022464116, "2028": 6801.036306170088, "2029": 4777.918234125361, "2030": 3356.6212006951, "2031": 2358.1202801848112, "2032": 1656.6454548601907, "2033": 1163.839769400498, "2034": 817.629991296186, "2035": 574.407938483972, "2036": 403.5376433175434, "2037": 283.4964816190834, "2038": 199.16420790304315, "2039": 139.9184267935425, "2040": 98.29660842429301, "2041": 69.05611683281677, "2042": 48.513853615819066, "2043": 34.08233912652686, "2044": 23.94379653973345, "2045": 16.82118679142942, "2046": 11.81735421960403, "2047": 8.302021877715925, "2048": 5.832402581597771, "2049": 4.097425949350446, "2050": 2.878556336865746}, "approximatedHistoricalEmission": {"2021": 35064.8140512671, "2022": 31325.386217971332, "2023": 29622.860235314816, "2024": 27920.3342526583}, "totalApproximatedHistoricalEmission": 92440.82060524885, "trend": {"2024": 27920.3342526583, "2025": 26217.808270001784, "2026": 24515.282287345268, "2027": 22812.756304688286, "2028": 21110.23032203177, "2029": 19407.704339375254, "2030": 17705.178356718738, "2031": 16002.652374062221, "2032": 14300.126391405705, "2033": 12597.60040874919, "2034": 10895.074426092673, "2035": 9192.548443436157, "2036": 7490.022460779175, "2037": 5787.496478122659, "2038": 4084.970495466143, "2039": 2382.4445128096268, "2040": 679.9185301531106, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 229141.9815275669, "historicalEmissionChangePercent": -3.742913095904383, "neededEmissionChangePercent": 29.747202940370993, "hitNetZero": "2040-05-21", "budgetRunsOut": "2027-02-17", "electricCarChangePercent": 0.07429398622338473, "electricCarChangeYearly": {"2015": 0.01384083044982699, "2016": 0.036585365853658534, "2017": 0.03787878787878788, "2018": 0.13392857142857142, "2019": 0.25120772946859904, "2020": 0.2345679012345679, "2021": 0.3869565217391304, "2022": 0.5540540540540541}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Pågår ett arbete att ta fram ny plan.", "bicycleMetrePerCapita": 2.762561296, "totalConsumptionEmission": 6495.5, "electricVehiclePerChargePoints": 7.28169014084507, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1gmk-2GlIoOEVx-YTJiii6uIqUkuzSjX8/view?usp=drive_link"}, {"kommun": "Lerum", "län": "Västra Götalands län", "emissions": {"1990": 117870.32492692, "2000": 110953.876805395, "2005": 100694.334106491, "2010": 95120.676943553, "2015": 83054.7219217922, "2016": 79856.452468174, "2017": 68752.1320046489, "2018": 69355.6290081817, "2019": 67068.7579998947, "2020": 60015.9388897768, "2021": 61848.1688683312}, "budget": 145139.52729776062, "emissionBudget": {"2024": 47496.53009684291, "2025": 34240.504226487064, "2026": 24684.163817727156, "2027": 17794.946574094392, "2028": 12828.472777654364, "2029": 9248.115082660443, "2030": 6667.015946832757, "2031": 4806.287685439943, "2032": 3464.878665272393, "2033": 2497.8496816635907, "2034": 1800.7132817438503, "2035": 1298.1438982705827, "2036": 935.8389243317971, "2037": 674.6513182870161, "2038": 486.3597670842723, "2039": 350.61937422559686, "2040": 252.76339430652, "2041": 182.2184916120619, "2042": 131.3622915077248, "2043": 94.69978308731764, "2044": 68.2695834082465, "2045": 49.2159101825831, "2046": 35.480014585932, "2047": 25.577733508287974, "2048": 18.43912577421543, "2049": 13.292865030717607, "2050": 9.582897957774453}, "approximatedHistoricalEmission": {"2021": 61848.1688683312, "2022": 54995.39154841006, "2023": 51245.96082262602, "2024": 47496.53009684291}, "totalApproximatedHistoricalEmission": 160913.70185362315, "trend": {"2024": 47496.53009684291, "2025": 43747.0993710598, "2026": 39997.66864527669, "2027": 36248.23791949265, "2028": 32498.807193709537, "2029": 28749.376467926428, "2030": 24999.945742143318, "2031": 21250.515016359277, "2032": 17501.084290576167, "2033": 13751.653564793058, "2034": 10002.222839009948, "2035": 6252.792113225907, "2036": 2503.3613874427974, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 301251.029599437, "historicalEmissionChangePercent": -4.606428745614561, "neededEmissionChangePercent": 27.90946168768015, "hitNetZero": "2036-08-28", "budgetRunsOut": "2027-07-22", "electricCarChangePercent": 0.08931430314467403, "electricCarChangeYearly": {"2015": 0.015909090909090907, "2016": 0.020754716981132074, "2017": 0.07520143240823635, "2018": 0.09284116331096197, "2019": 0.1062618595825427, "2020": 0.31561461794019935, "2021": 0.4953183520599251, "2022": 0.6437552388935457}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete med ny energiplan pågår, beslut hösten 2023.", "bicycleMetrePerCapita": 2.62316211, "totalConsumptionEmission": 6157.9, "electricVehiclePerChargePoints": 28.735632183908045, "procurementScore": "2", "procurementLink": "https://klimat2030.se/undertecknare/lerum-kommun/"}, {"kommun": "Lessebo", "län": "Kronobergs län", "emissions": {"1990": 57532.4711498586, "2000": 48173.2935527191, "2005": 41056.0196098987, "2010": 27521.1483491793, "2015": 21801.4316016642, "2016": 20577.9954929612, "2017": 20350.2576756799, "2018": 19317.0014815906, "2019": 18631.6304750159, "2020": 17007.1305282726, "2021": 18018.7501951159}, "budget": 40199.96053406573, "emissionBudget": {"2024": 15055.94220368145, "2025": 10352.690637757763, "2026": 7118.664643579078, "2027": 4894.900087415186, "2028": 3365.806378783242, "2029": 2314.378716040392, "2030": 1591.401357792044, "2031": 1094.271332530765, "2032": 752.4373052314123, "2033": 517.3871246307114, "2034": 355.7631112552391, "2035": 244.6280266837834, "2036": 168.20988333517283, "2037": 115.6636270798488, "2038": 79.53203678650301, "2039": 54.687415872259805, "2040": 37.60388361250967, "2041": 25.856991781183265, "2042": 17.779653582103972, "2043": 12.225555245357963, "2044": 8.406474308798796, "2045": 5.780417239644567, "2046": 3.974701193032554, "2047": 2.7330638808463994, "2048": 1.8792955278955519, "2049": 1.2922316620255765, "2050": 0.8885577832515291}, "approximatedHistoricalEmission": {"2021": 18018.7501951159, "2022": 16499.399442944676, "2023": 15777.670823313063, "2024": 15055.94220368145}, "totalApproximatedHistoricalEmission": 48814.41646565641, "trend": {"2024": 15055.94220368145, "2025": 14334.213584049605, "2026": 13612.484964417992, "2027": 12890.75634478638, "2028": 12169.027725154767, "2029": 11447.299105523154, "2030": 10725.570485891309, "2031": 10003.841866259696, "2032": 9282.113246628083, "2033": 8560.38462699647, "2034": 7838.656007364858, "2035": 7116.927387733245, "2036": 6395.1987681014, "2037": 5673.470148469787, "2038": 4951.741528838174, "2039": 4230.012909206562, "2040": 3508.284289574949, "2041": 2786.5556699431036, "2042": 2064.827050311491, "2043": 1343.0984306798782, "2044": 621.3698110482655, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 157083.8050528199, "historicalEmissionChangePercent": -3.0191075067151663, "neededEmissionChangePercent": 31.23850704457181, "hitNetZero": "2044-11-05", "budgetRunsOut": "2026-11-13", "electricCarChangePercent": 0.07914745524942891, "electricCarChangeYearly": {"2015": 0.013986013986013986, "2016": 0.019230769230769232, "2017": 0.01875, "2018": 0.017543859649122806, "2019": 0.07017543859649122, "2020": 0.3111111111111111, "2021": 0.45454545454545453, "2022": 0.52}, "climatePlanLink": "https://www.lessebo.se/download/18.751dad0a1754f2bbde74234/1603372637882/Energi-%20%20milj%C3%B6-%20och%20klimatstrategiskt%20program%202019-2030%20%20antaget%202020-10-19%20.pdf", "climatePlanYear": 2019, "climatePlanComment": "Energi, miljö– och klimatstrategiskt program för Lessebo kommun 2019 –2030", "bicycleMetrePerCapita": 2.771482457, "totalConsumptionEmission": 5777.4, "electricVehiclePerChargePoints": 18.384615384615383, "procurementScore": "2", "procurementLink": "https://www.lessebo.se/download/18.718021f218bf6061c471d424/1700838950724/M%C3%A5ltidspolicy%20antagen%2023-02-27.pdf"}, {"kommun": "Lidingö", "län": "Stockholms län", "emissions": {"1990": 99863.2651029639, "2000": 67504.3675532242, "2005": 48697.2737148263, "2010": 28026.3450944805, "2015": 24247.3615496483, "2016": 23158.9106831291, "2017": 29753.3454069088, "2018": 25737.6100819047, "2019": 24818.3641855272, "2020": 26071.9219868306, "2021": 28583.0430247821}, "budget": 54024.04147000349, "emissionBudget": {"2024": 29031.097947980743, "2025": 16962.311611741738, "2026": 9910.752108975641, "2027": 5790.661651185132, "2028": 3383.372118462954, "2029": 1976.8391906734325, "2030": 1155.0290801467402, "2031": 674.8612544099506, "2032": 394.3084382307597, "2033": 230.386829061509, "2034": 134.61058871368678, "2035": 78.6503754040889, "2036": 45.95390013753915, "2037": 26.849979125988153, "2038": 15.687925875895095, "2039": 9.166153058546236, "2040": 5.355606761362437, "2041": 3.1291779222045997, "2042": 1.8283184156563672, "2043": 1.0682512506905142, "2044": 0.624158639343011, "2045": 0.36468387639583805, "2046": 0.21307776792625133, "2047": 0.1244972375338927, "2048": 0.07274133901634969, "2049": 0.042501363939509276, "2050": 0.024832728695200566}, "approximatedHistoricalEmission": {"2021": 28583.0430247821, "2022": 28038.377532879123, "2023": 28534.737740429933, "2024": 29031.097947980743}, "totalApproximatedHistoricalEmission": 85380.18575969047, "trend": {"2024": 29031.097947980743, "2025": 29527.458155531553, "2026": 30023.81836308248, "2027": 30520.17857063329, "2028": 31016.5387781841, "2029": 31512.898985734908, "2030": 32009.259193285718, "2031": 32505.619400836527, "2032": 33001.97960838734, "2033": 33498.33981593815, "2034": 33994.70002348896, "2035": 34491.060231039766, "2036": 34987.420438590576, "2037": 35483.780646141386, "2038": 35980.140853692195, "2039": 36476.501061243005, "2040": 36972.861268793815, "2041": 37469.22147634474, "2042": 37965.58168389555, "2043": 38461.94189144636, "2044": 38958.30209899717, "2045": 39454.66230654798, "2046": 39951.02251409879, "2047": 40447.3827216496, "2048": 40943.74292920041, "2049": 41440.10313675122, "2050": 41936.46334430203}, "trendEmission": 922578.296799677, "historicalEmissionChangePercent": 3.599976466170274, "neededEmissionChangePercent": 41.571925243283644, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-10-31", "electricCarChangePercent": 0.08638179745773583, "electricCarChangeYearly": {"2015": 0.031556039173014146, "2016": 0.03859964093357271, "2017": 0.0637065637065637, "2018": 0.10451045104510451, "2019": 0.1659919028340081, "2020": 0.3689052437902484, "2021": 0.4925, "2022": 0.6043405676126878}, "climatePlanLink": "https://lidingo.se/download/18.3e1246071764a836a72c45/1607961656265/Milj%C3%B6program%202021-2030%20f%C3%B6r%20Liding%C3%B6%20stads%20verksamheter%20med%20underskrift%2020-12-11.pdf", "climatePlanYear": 2021, "climatePlanComment": "Miljöprogram 2021–2030. ", "bicycleMetrePerCapita": 2.616293985, "totalConsumptionEmission": 7483.1, "electricVehiclePerChargePoints": 163.44444444444446, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1q_kHO1VxjxsEheFfUgoG4fEPxJwOUaOd/view?usp=drive_link"}, {"kommun": "Lidköping", "län": "Västra Götalands län", "emissions": {"1990": 156796.767542204, "2000": 153097.367075664, "2005": 150784.889784057, "2010": 159975.724778882, "2015": 138730.271199527, "2016": 138222.980463482, "2017": 128868.366948881, "2018": 126694.897327124, "2019": 128559.75208274, "2020": 124068.619171606, "2021": 116793.301802271}, "budget": 267183.18433053634, "emissionBudget": {"2024": 108613.68864759151, "2025": 72333.22066319459, "2026": 48171.59675412995, "2027": 32080.732926955752, "2028": 21364.7355387369, "2029": 14228.226196685016, "2030": 9475.540679498732, "2031": 6310.405100936209, "2032": 4202.52668262813, "2033": 2798.7475028475096, "2034": 1863.8757529069785, "2035": 1241.2812583986215, "2036": 826.6533646615663, "2037": 550.5245331649389, "2038": 366.6316192163018, "2039": 244.16485753396003, "2040": 162.6059361219663, "2041": 108.29031961908542, "2042": 72.1178672985697, "2043": 48.02817834492267, "2044": 31.985220882668113, "2045": 21.301127591511516, "2046": 14.185865351197904, "2047": 9.447329719883484, "2048": 6.291617509865704, "2049": 4.1900147516960935, "2050": 2.7904149595714403}, "approximatedHistoricalEmission": {"2021": 116793.301802271, "2022": 115358.5633362811, "2023": 111986.12599193677, "2024": 108613.68864759151}, "totalApproximatedHistoricalEmission": 340048.18455314916, "trend": {"2024": 108613.68864759151, "2025": 105241.25130324624, "2026": 101868.81395890098, "2027": 98496.37661455572, "2028": 95123.93927021045, "2029": 91751.50192586519, "2030": 88379.06458152086, "2031": 85006.62723717559, "2032": 81634.18989283033, "2033": 78261.75254848506, "2034": 74889.3152041398, "2035": 71516.87785979453, "2036": 68144.44051544927, "2037": 64772.00317110494, "2038": 61399.565826759674, "2039": 58027.12848241441, "2040": 54654.691138069145, "2041": 51282.25379372388, "2042": 47909.81644937862, "2043": 44537.37910503335, "2044": 41164.94176068809, "2045": 37792.504416343756, "2046": 34420.06707199849, "2047": 31047.629727653228, "2048": 27675.192383307964, "2049": 24302.7550389627, "2050": 20930.317694617435}, "trendEmission": 1684072.0824487167, "historicalEmissionChangePercent": -2.784243261187225, "neededEmissionChangePercent": 33.40321872513943, "hitNetZero": "2056-03-08", "budgetRunsOut": "2026-07-25", "electricCarChangePercent": 0.06323238491530066, "electricCarChangeYearly": {"2015": 0.02184769038701623, "2016": 0.012068019747668678, "2017": 0.024844720496894408, "2018": 0.10278250993753549, "2019": 0.08372827804107424, "2020": 0.26823529411764707, "2021": 0.4114114114114114, "2022": 0.39380281690140845}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.994218922, "totalConsumptionEmission": 6172.0, "electricVehiclePerChargePoints": 30.670731707317074, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Lilla Edet", "län": "Västra Götalands län", "emissions": {"1990": 66343.8724591528, "2000": 62788.8833817532, "2005": 76990.4876121187, "2010": 80112.7454573071, "2015": 46158.8041565008, "2016": 44595.6492466878, "2017": 47289.1166419511, "2018": 48582.8058442336, "2019": 48585.3537340409, "2020": 45355.1317713161, "2021": 45044.8635477766}, "budget": 96456.69579905007, "emissionBudget": {"2024": 46403.11363075275, "2025": 28682.563581816343, "2026": 17729.18645441318, "2027": 10958.715438344474, "2028": 6773.77071798552, "2029": 4186.984322933539, "2030": 2588.047108524631, "2031": 1599.7164831154346, "2032": 988.8123048154548, "2033": 611.2019126353517, "2034": 377.79442689968573, "2035": 233.5212407648587, "2036": 144.34350007719613, "2037": 89.22120294622412, "2038": 55.14916190139505, "2039": 34.08864662203027, "2040": 21.07077947257547, "2041": 13.024211624024428, "2042": 8.050489477532333, "2043": 4.97614617289462, "2044": 3.075841637098063, "2045": 1.9012306808911057, "2046": 1.1751834224378208, "2047": 0.7264011096882622, "2048": 0.44900103429110216, "2049": 0.2775352709483025, "2050": 0.17154933004098455}, "approximatedHistoricalEmission": {"2021": 45044.8635477766, "2022": 46440.72932252597, "2023": 46421.921476639356, "2024": 46403.11363075275}, "totalApproximatedHistoricalEmission": 138586.63938843002, "trend": {"2024": 46403.11363075275, "2025": 46384.30578486614, "2026": 46365.49793897953, "2027": 46346.69009309292, "2028": 46327.88224720631, "2029": 46309.0744013197, "2030": 46290.266555433096, "2031": 46271.45870954648, "2032": 46252.650863659874, "2033": 46233.843017773266, "2034": 46215.03517188666, "2035": 46196.227326000044, "2036": 46177.419480113436, "2037": 46158.61163422683, "2038": 46139.80378834022, "2039": 46120.99594245361, "2040": 46102.188096567, "2041": 46083.38025068039, "2042": 46064.572404793784, "2043": 46045.76455890717, "2044": 46026.95671302056, "2045": 46008.148867133954, "2046": 45989.341021247346, "2047": 45970.53317536073, "2048": 45951.725329474124, "2049": 45932.91748358752, "2050": 45914.1096377009}, "trendEmission": 1200123.9024898976, "historicalEmissionChangePercent": -0.3230681739759642, "neededEmissionChangePercent": 38.18827803225786, "hitNetZero": "4489-07-31", "budgetRunsOut": "2026-01-30", "electricCarChangePercent": 0.07145206664468494, "electricCarChangeYearly": {"2015": 0.024096385542168676, "2016": 0.009861932938856016, "2017": 0.0182648401826484, "2018": 0.024305555555555556, "2019": 0.06148282097649186, "2020": 0.23037974683544304, "2021": 0.31690140845070425, "2022": 0.565989847715736}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.530883986, "totalConsumptionEmission": 6077.2, "electricVehiclePerChargePoints": 43.266666666666666, "procurementScore": "2", "procurementLink": "https://lillaedet.se/download/18.521396a21877977188d6244/1682000731913/%C3%85rsredovisning%202022.pdf"}, {"kommun": "Lindesberg", "län": "Örebro län", "emissions": {"1990": 194447.285435785, "2000": 165335.286082458, "2005": 130436.533100131, "2010": 110691.51149072, "2015": 81564.384646661, "2016": 84051.3004776609, "2017": 87025.739544324, "2018": 80309.0498437763, "2019": 79593.6600104716, "2020": 69465.1833511691, "2021": 75179.0501123718}, "budget": 165057.167161675, "emissionBudget": {"2024": 67649.69884312479, "2025": 44902.19724715086, "2026": 29803.640697610423, "2027": 19782.038592523935, "2028": 13130.243209094986, "2029": 8715.142573583897, "2030": 5784.638476862589, "2031": 3839.5289607108116, "2032": 2548.470867989773, "2033": 1691.5366003099987, "2034": 1122.7501581939962, "2035": 745.2205985336801, "2036": 494.63697370767926, "2037": 328.313168261993, "2038": 217.9164562775473, "2039": 144.64111253274245, "2040": 96.00491762799034, "2041": 63.7228520118771, "2042": 42.295769517370154, "2043": 28.073635479043944, "2044": 18.63375505407374, "2045": 12.368074939008348, "2046": 8.209256655624221, "2047": 5.448858870135044, "2048": 3.6166566879485336, "2049": 2.400540353536199, "2050": 1.593348356275533}, "approximatedHistoricalEmission": {"2021": 75179.0501123718, "2022": 71632.5786566753, "2023": 69641.13874990027, "2024": 67649.69884312479}, "totalApproximatedHistoricalEmission": 212688.09188432386, "trend": {"2024": 67649.69884312479, "2025": 65658.25893634977, "2026": 63666.81902957475, "2027": 61675.37912279926, "2028": 59683.93921602424, "2029": 57692.49930924922, "2030": 55701.05940247374, "2031": 53709.61949569872, "2032": 51718.1795889237, "2033": 49726.73968214821, "2034": 47735.29977537319, "2035": 45743.85986859817, "2036": 43752.419961822685, "2037": 41760.980055047665, "2038": 39769.54014827218, "2039": 37778.10024149716, "2040": 35786.66033472214, "2041": 33795.22042794665, "2042": 31803.780521171633, "2043": 29812.340614396613, "2044": 27820.900707621127, "2045": 25829.460800846107, "2046": 23838.020894071087, "2047": 21846.5809872956, "2048": 19855.14108052058, "2049": 17863.70117374556, "2050": 15872.261266970076}, "trendEmission": 1085785.4814312372, "historicalEmissionChangePercent": -1.0867841611360565, "neededEmissionChangePercent": 33.625429211035936, "hitNetZero": "2057-12-12", "budgetRunsOut": "2026-07-15", "electricCarChangePercent": 0.0627820409637267, "electricCarChangeYearly": {"2015": 0.007961783439490446, "2016": 0.02005730659025788, "2017": 0.024163568773234202, "2018": 0.05357142857142857, "2019": 0.04970178926441352, "2020": 0.22028985507246376, "2021": 0.3058823529411765, "2022": 0.47368421052631576}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbetar utifrån Örebro läns klimat– och energiprogram.", "bicycleMetrePerCapita": 2.033057359, "totalConsumptionEmission": 6139.5, "electricVehiclePerChargePoints": 29.347826086956523, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Linköping", "län": "Östergötlands län", "emissions": {"1990": 1080516.15478745, "2000": 619498.776366626, "2005": 642071.791529975, "2010": 734653.740699053, "2015": 561648.044529764, "2016": 590254.064297639, "2017": 556212.491975602, "2018": 567332.96849281, "2019": 538494.177698724, "2020": 511742.304643697, "2021": 534930.625645295}, "budget": 1143638.5946784832, "emissionBudget": {"2024": 496896.22027517855, "2025": 321788.36844853667, "2026": 208389.095838618, "2027": 134952.09747266484, "2028": 87394.53731482926, "2029": 56596.41676944039, "2030": 36651.65454908449, "2031": 23735.491712450104, "2032": 15371.02686803153, "2033": 9954.226768928324, "2034": 6446.324726250289, "2035": 4174.61882684633, "2036": 2703.4695100749377, "2037": 1750.7580200863824, "2038": 1133.785172525149, "2039": 734.2355726432457, "2040": 475.48855744344957, "2041": 307.924835956574, "2042": 199.4111175013075, "2043": 129.1379880404587, "2044": 83.62933904639658, "2045": 54.15808667505324, "2046": 35.07259994815134, "2047": 22.7129011130609, "2048": 14.708800537579611, "2049": 9.525371161409756, "2050": 6.168599236273771}, "approximatedHistoricalEmission": {"2021": 534930.625645295, "2022": 515102.9410064742, "2023": 505999.5806408264, "2024": 496896.22027517855}, "totalApproximatedHistoricalEmission": 1537015.9446075372, "trend": {"2024": 496896.22027517855, "2025": 487792.859909527, "2026": 478689.4995438792, "2027": 469586.13917822763, "2028": 460482.7788125798, "2029": 451379.418446932, "2030": 442276.05808128044, "2031": 433172.6977156326, "2032": 424069.33734998107, "2033": 414965.97698433325, "2034": 405862.6166186854, "2035": 396759.2562530339, "2036": 387655.89588738605, "2037": 378552.5355217345, "2038": 369449.1751560867, "2039": 360345.81479043886, "2040": 351242.4544247873, "2041": 342139.0940591395, "2042": 333035.73369348794, "2043": 323932.3733278401, "2044": 314829.0129621923, "2045": 305725.65259654075, "2046": 296622.2922308929, "2047": 287518.9318652414, "2048": 278415.57149959356, "2049": 269312.21113394573, "2050": 260208.85076829419}, "trendEmission": 9842365.923565136, "historicalEmissionChangePercent": -0.6990999729136957, "neededEmissionChangePercent": 35.24032678889527, "hitNetZero": "2078-07-19", "budgetRunsOut": "2026-05-09", "electricCarChangePercent": 0.07817576996138308, "electricCarChangeYearly": {"2015": 0.014455091765470196, "2016": 0.020509090909090907, "2017": 0.037296037296037296, "2018": 0.07933398628795299, "2019": 0.09797979797979799, "2020": 0.27189235369500214, "2021": 0.4135514018691589, "2022": 0.5686148576321987}, "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab3afd7221628a913d67/1670425403524/Viable-Cities-Klimatkontrakt-Linkoping-FINAL.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities. ", "bicycleMetrePerCapita": 3.315704358, "totalConsumptionEmission": 6282.7, "electricVehiclePerChargePoints": 13.277693474962064, "procurementScore": "2", "procurementLink": "https://www.linkoping.se/klimatsmart-linkoping/"}, {"kommun": "Ljungby", "län": "Kronobergs län", "emissions": {"1990": 193531.355528965, "2000": 192010.595950853, "2005": 230941.770098665, "2010": 214833.285479184, "2015": 171358.709851062, "2016": 168754.789283744, "2017": 164048.790807863, "2018": 152952.637042497, "2019": 149205.034872681, "2020": 138247.090453724, "2021": 138928.587827763}, "budget": 320966.3576425884, "emissionBudget": {"2024": 117681.62294880673, "2025": 81559.68011710691, "2026": 56525.23524168693, "2027": 39175.02146330614, "2028": 27150.392211347764, "2029": 18816.67883501914, "2030": 13040.968234420992, "2031": 9038.090833259648, "2032": 6263.88197884288, "2033": 4341.20636412345, "2034": 3008.6889822575085, "2035": 2085.1829267474805, "2036": 1445.1436700967236, "2037": 1001.5621173717485, "2038": 694.1362964189163, "2039": 481.0737044154115, "2040": 333.40989409995586, "2041": 231.07094913621444, "2042": 160.14456823139042, "2043": 110.98877998246402, "2044": 76.92118076834791, "2045": 53.31050626677501, "2046": 36.94704176446162, "2047": 25.606282714963516, "2048": 17.746528089004435, "2049": 12.299296337526677, "2050": 8.524072406704954}, "approximatedHistoricalEmission": {"2021": 138928.587827763, "2022": 130049.44578203, "2023": 123865.5343654193, "2024": 117681.62294880673}, "totalApproximatedHistoricalEmission": 382220.0855357342, "trend": {"2024": 117681.62294880673, "2025": 111497.71153219603, "2026": 105313.80011558346, "2027": 99129.88869897276, "2028": 92945.9772823602, "2029": 86762.0658657495, "2030": 80578.15444913693, "2031": 74394.24303252622, "2032": 68210.33161591552, "2033": 62026.42019930296, "2034": 55842.50878269225, "2035": 49658.59736607969, "2036": 43474.685949468985, "2037": 37290.77453285642, "2038": 31106.863116245717, "2039": 24922.95169963315, "2040": 18739.04028302245, "2041": 12555.128866409883, "2042": 6371.21744979918, "2043": 187.3060331866145, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 1119848.4783455413, "historicalEmissionChangePercent": -3.395600549502172, "neededEmissionChangePercent": 30.69463347511226, "hitNetZero": "2043-01-07", "budgetRunsOut": "2026-12-16", "electricCarChangePercent": 0.05866861261891208, "electricCarChangeYearly": {"2015": 0.009082652134423252, "2016": 0.01773049645390071, "2017": 0.026041666666666668, "2018": 0.038130381303813035, "2019": 0.07556675062972293, "2020": 0.2015625, "2021": 0.3026874115983027, "2022": 0.4289940828402367}, "climatePlanLink": "https://www.ljungby.se/globalassets/dokument-och-innehall/miljo-och-klimat/hallbar-utveckling/klimat--och-energiplan_digital-lasning.pdf", "climatePlanYear": 2020, "climatePlanComment": "Klimat- och energiplan ", "bicycleMetrePerCapita": 4.84998266, "totalConsumptionEmission": 6147.5, "electricVehiclePerChargePoints": 10.362745098039216, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Ljusdal", "län": "Gävleborgs län", "emissions": {"1990": 135772.921986298, "2000": 129603.081139287, "2005": 110274.744217552, "2010": 102602.079821812, "2015": 87402.0685154335, "2016": 81585.861780586, "2017": 77520.060273409, "2018": 67762.1166692518, "2019": 74559.4880087334, "2020": 64460.1920257851, "2021": 61431.3880270318}, "budget": 152477.01487417336, "emissionBudget": {"2024": 48862.17792014498, "2025": 35465.046849480445, "2026": 25741.16835502921, "2027": 18683.402593380873, "2028": 13560.749366613398, "2029": 9842.635594078314, "2030": 7143.96179877271, "2031": 5185.215859563983, "2032": 3763.522855748302, "2033": 2731.6325239603216, "2034": 1982.6679767762978, "2035": 1439.0560485914455, "2036": 1044.4927417220697, "2037": 758.1116027954074, "2038": 550.2510255317345, "2039": 399.3820830367056, "2040": 289.8786932684032, "2041": 210.39916506037696, "2042": 152.71149513950476, "2043": 110.84074759066074, "2044": 80.4502065495028, "2045": 58.39220570543143, "2046": 42.38211228267493, "2047": 30.761698754842303, "2048": 22.327393782836303, "2049": 16.20562365904338, "2050": 11.762332887254901}, "approximatedHistoricalEmission": {"2021": 61431.3880270318, "2022": 57085.3174372511, "2023": 52973.74767869804, "2024": 48862.17792014498}, "totalApproximatedHistoricalEmission": 165205.84808953753, "trend": {"2024": 48862.17792014498, "2025": 44750.608161591925, "2026": 40639.03840303887, "2027": 36527.46864448581, "2028": 32415.89888593275, "2029": 28304.329127379693, "2030": 24192.759368826635, "2031": 20081.189610273577, "2032": 15969.61985172052, "2033": 11858.050093167461, "2034": 7746.480334614404, "2035": 3634.9105760613456, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 290551.4420171655, "historicalEmissionChangePercent": -5.406403533281193, "neededEmissionChangePercent": 27.418202873722375, "hitNetZero": "2035-11-16", "budgetRunsOut": "2027-09-11", "electricCarChangePercent": 0.03798298146198286, "electricCarChangeYearly": {"2015": 0.008683068017366137, "2016": 0.005847953216374269, "2017": 0.009230769230769232, "2018": 0.03314917127071823, "2019": 0.04038461538461539, "2020": 0.0979381443298969, "2021": 0.17149758454106281, "2022": 0.30710659898477155}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.610765974, "totalConsumptionEmission": 6353.1, "electricVehiclePerChargePoints": 7.903225806451613, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Ljusnarsberg", "län": "Örebro län", "emissions": {"1990": 48146.4817562388, "2000": 50283.444637184, "2005": 39329.818425062, "2010": 38267.4600394776, "2015": 36691.8251140545, "2016": 33202.8864934343, "2017": 30312.3310033724, "2018": 28663.6987886101, "2019": 25865.7349121049, "2020": 25925.4509815681, "2021": 25568.9786086761}, "budget": 61092.246473761945, "emissionBudget": {"2024": 18239.413707872853, "2025": 13531.625092375425, "2026": 10038.967292110323, "2027": 7447.801990083748, "2028": 5525.44428818783, "2029": 4099.267760141433, "2030": 3041.2027147315866, "2031": 2256.2356238402103, "2032": 1673.8769716424233, "2033": 1241.8313435836621, "2034": 921.3013333910889, "2035": 683.5035621332869, "2036": 507.0839501874216, "2037": 376.20013527820765, "2038": 279.09883902070374, "2039": 207.06043044109737, "2040": 153.6159089908364, "2041": 113.96599265639905, "2042": 84.5501456683968, "2043": 62.72684478869162, "2044": 46.53637230355844, "2045": 34.52483469351579, "2046": 25.613603974958902, "2047": 19.002457634047595, "2048": 14.097719184180255, "2049": 10.458946417536112, "2050": 7.759379991597717}, "approximatedHistoricalEmission": {"2021": 25568.9786086761, "2022": 21980.128467239905, "2023": 20109.771087556146, "2024": 18239.413707872853}, "totalApproximatedHistoricalEmission": 63994.09571307053, "trend": {"2024": 18239.413707872853, "2025": 16369.05632818956, "2026": 14498.6989485058, "2027": 12628.341568822507, "2028": 10757.984189139213, "2029": 8887.626809455454, "2030": 7017.269429772161, "2031": 5146.9120500888675, "2032": 3276.5546704051085, "2033": 1406.197290721815, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 89108.34813903691, "historicalEmissionChangePercent": -5.759797618256795, "neededEmissionChangePercent": 25.81107425325497, "hitNetZero": "2033-09-29", "budgetRunsOut": "2028-04-17", "electricCarChangePercent": 0.061613325054131994, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.015151515151515152, "2018": 0.017857142857142856, "2019": 0.06451612903225806, "2020": 0.23529411764705882, "2021": 0.36538461538461536, "2022": 0.37735849056603776}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 1.489763659, "totalConsumptionEmission": 6088.1, "electricVehiclePerChargePoints": 8.666666666666666, "procurementScore": "2", "procurementLink": "https://www.orebro.se/fordjupning/fordjupning/sa-arbetar-vi-med/maltider-i-kommunens-kok-och-serveringar.html"}, {"kommun": "Lomma", "län": "Skåne län", "emissions": {"1990": 105925.833582781, "2000": 103327.825826688, "2005": 89134.6443216672, "2010": 95459.2340056458, "2015": 82916.8796671018, "2016": 79342.6536805445, "2017": 80300.7026237359, "2018": 73845.6220940242, "2019": 73532.3628643142, "2020": 68121.8847937548, "2021": 68352.2524712745}, "budget": 155940.3203561452, "emissionBudget": {"2024": 59579.53135914635, "2025": 40660.04214586585, "2026": 27748.43959979875, "2027": 18936.918399184866, "2028": 12923.497091345893, "2029": 8819.638631236588, "2030": 6018.961047137121, "2031": 4107.6390543536945, "2032": 2803.257650068545, "2033": 1913.0827584129731, "2034": 1305.5830385221632, "2035": 890.9949467584962, "2036": 608.059366371509, "2037": 414.97002241959683, "2038": 283.19622890523965, "2039": 193.2672234936877, "2040": 131.8951873806819, "2041": 90.01185063722599, "2042": 61.42857382471074, "2043": 41.9219208962398, "2044": 28.609608561734525, "2045": 19.524623026734698, "2046": 13.3245760253417, "2047": 9.093354888952414, "2048": 6.205758665729433, "2049": 4.235119060849998, "2050": 2.8902563611804135}, "approximatedHistoricalEmission": {"2021": 68352.2524712745, "2022": 64786.94272489473, "2023": 62183.237042020075, "2024": 59579.53135914635}, "totalApproximatedHistoricalEmission": 190936.07168212524, "trend": {"2024": 59579.53135914635, "2025": 56975.82567627169, "2026": 54372.119993397035, "2027": 51768.41431052238, "2028": 49164.70862764772, "2029": 46561.002944773994, "2030": 43957.29726189934, "2031": 41353.59157902468, "2032": 38749.88589615002, "2033": 36146.1802132763, "2034": 33542.47453040164, "2035": 30938.768847526982, "2036": 28335.063164652325, "2037": 25731.3574817786, "2038": 23127.651798903942, "2039": 20523.946116029285, "2040": 17920.240433154628, "2041": 15316.53475027997, "2042": 12712.829067406245, "2043": 10109.123384531587, "2044": 7505.41770165693, "2045": 4901.712018782273, "2046": 2298.006335908547, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 681801.9178135493, "historicalEmissionChangePercent": -3.0976264708301904, "neededEmissionChangePercent": 31.755015156519956, "hitNetZero": "2046-11-13", "budgetRunsOut": "2026-10-15", "electricCarChangePercent": 0.08962152539618798, "electricCarChangeYearly": {"2015": 0.024390243902439025, "2016": 0.0421455938697318, "2017": 0.04227642276422764, "2018": 0.08771929824561403, "2019": 0.16838487972508592, "2020": 0.31539888682745826, "2021": 0.511400651465798, "2022": 0.6360902255639098}, "climatePlanLink": "https://lomma.se/bygga-bo-och-miljo/klimat-miljo-och-hallbarhet/klimatarbete.html", "climatePlanYear": 2020, "climatePlanComment": "Energi– och klimatplan 2021–2025", "bicycleMetrePerCapita": 4.057055311, "totalConsumptionEmission": 6598.4, "electricVehiclePerChargePoints": 48.58064516129032, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1bUudOfnRmbs697U8jFs7SbSCn1al8yzm/view?usp=drive_link"}, {"kommun": "Ludvika", "län": "Dalarnas län", "emissions": {"1990": 116351.826015929, "2000": 100805.411787066, "2005": 128315.928048141, "2010": 85535.1689088105, "2015": 71292.9523516219, "2016": 69660.5247781935, "2017": 65841.0176558881, "2018": 60090.0690094441, "2019": 59323.5774175386, "2020": 45401.8706736408, "2021": 45248.6761688049}, "budget": 123486.98951803599, "emissionBudget": {"2024": 31015.331794466823, "2025": 24126.69507429368, "2026": 18768.053782735726, "2027": 14599.589446751976, "2028": 11356.958717252892, "2029": 8834.530023998808, "2030": 6872.343440534708, "2031": 5345.966818423119, "2032": 4158.604917081583, "2033": 3234.9611293465277, "2034": 2516.462543820357, "2035": 1957.545541120621, "2036": 1522.7663749541496, "2037": 1184.5535053879596, "2038": 921.459148432505, "2039": 716.7991638772519, "2040": 557.5950298058841, "2041": 433.7508090585147, "2042": 337.41291493292766, "2043": 262.47207563865703, "2044": 204.1759145578628, "2045": 158.82757807322295, "2046": 123.55129943329693, "2047": 96.11003187757936, "2048": 74.76358621785506, "2049": 58.15827666433844, "2050": 45.241076781813746}, "approximatedHistoricalEmission": {"2021": 45248.6761688049, "2022": 40527.30157988891, "2023": 35771.31668717787, "2024": 31015.331794466823}, "totalApproximatedHistoricalEmission": 114430.62224870264, "trend": {"2024": 31015.331794466823, "2025": 26259.34690175578, "2026": 21503.362009044737, "2027": 16747.377116333693, "2028": 11991.39222362265, "2029": 7235.407330911607, "2030": 2479.422438200563, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 101723.97391710244, "historicalEmissionChangePercent": -6.931295608440082, "neededEmissionChangePercent": 22.210424076140605, "hitNetZero": "2030-07-08", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.06305293399226239, "electricCarChangeYearly": {"2015": 0.009363295880149813, "2016": 0.006340579710144928, "2017": 0.019148936170212766, "2018": 0.030235162374020158, "2019": 0.03850782190132371, "2020": 0.22791519434628976, "2021": 0.3433734939759036, "2022": 0.4346076458752515}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.737941809, "totalConsumptionEmission": 6222.7, "electricVehiclePerChargePoints": 12.666666666666666, "procurementScore": "2", "procurementLink": "https://upphandlingscenterfbr.se/download/18.232f037e18721ea54a579cb/1679982679008/N%C3%A4mndplan%202023-2025%20-%20daterad%202022-12-05%20fastst%C3%A4lld%20av%20GNU.pdf"}, {"kommun": "Luleå", "län": "Norrbottens län", "emissions": {"1990": 3088630.93956328, "2000": 3267586.48821199, "2005": 3896502.85803967, "2010": 3842239.87780166, "2015": 2741735.18418745, "2016": 3701344.89415282, "2017": 3802006.00066376, "2018": 3474039.18841795, "2019": 3459484.10256956, "2020": 3342077.88362666, "2021": 3410027.6165376}, "budget": 7089049.649216389, "emissionBudget": {"2024": 3620920.991001621, "2025": 2172659.007703921, "2026": 1303659.255611433, "2027": 782233.865836787, "2028": 469363.30810997105, "2029": 281631.77870632045, "2030": 168987.3439333741, "2031": 101397.3726290128, "2032": 60841.40348475142, "2033": 36506.630122831855, "2034": 21905.050945435105, "2035": 13143.674321832663, "2036": 7886.590864761479, "2037": 4732.186293205921, "2038": 2839.4508473444544, "2039": 1703.7539553462998, "2040": 1022.30244382393, "2041": 613.4115101355436, "2042": 368.0649332689782, "2043": 220.84977680376815, "2044": 132.5163565055796, "2045": 79.5137083480822, "2046": 47.71056179014152, "2047": 28.627739211534507, "2048": 17.17748485059705, "2049": 10.306995729289184, "2050": 6.184500343767917}, "approximatedHistoricalEmission": {"2021": 3410027.6165376, "2022": 3553505.1782942116, "2023": 3587213.0846479237, "2024": 3620920.991001621}, "totalApproximatedHistoricalEmission": 10656192.566711746, "trend": {"2024": 3620920.991001621, "2025": 3654628.897355333, "2026": 3688336.80370903, "2027": 3722044.7100627422, "2028": 3755752.6164164394, "2029": 3789460.5227701515, "2030": 3823168.4291238487, "2031": 3856876.3354775608, "2032": 3890584.241831258, "2033": 3924292.14818497, "2034": 3958000.054538667, "2035": 3991707.9608923793, "2036": 4025415.8672460765, "2037": 4059123.7735997885, "2038": 4092831.6799534857, "2039": 4126539.586307198, "2040": 4160247.492660895, "2041": 4193955.399014607, "2042": 4227663.305368304, "2043": 4261371.211722016, "2044": 4295079.1180757135, "2045": 4328787.024429426, "2046": 4362494.930783123, "2047": 4396202.837136835, "2048": 4429910.743490532, "2049": 4463618.649844229, "2050": 4497326.556197941}, "trendEmission": 105537218.11359438, "historicalEmissionChangePercent": 4.5523265173631815, "neededEmissionChangePercent": 39.99706115921302, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-12-10", "electricCarChangePercent": 0.07563750342085944, "electricCarChangeYearly": {"2015": 0.009475465313028765, "2016": 0.014413712504869497, "2017": 0.038129822968679075, "2018": 0.05323411562678878, "2019": 0.06784260515603799, "2020": 0.23802716225875625, "2021": 0.4187725631768953, "2022": 0.5405405405405406}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.867407965, "totalConsumptionEmission": 6627.2, "electricVehiclePerChargePoints": 35.49484536082474, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/1JN8kGEnfzI1aLNyewmAewY7vLJPI2MOR/edit?usp=drive_link&ouid=104089955738391943844&rtpof=true&sd=true"}, {"kommun": "Lund", "län": "Skåne län", "emissions": {"1990": 274296.052786953, "2000": 299978.948389746, "2005": 321106.636367123, "2010": 291547.123987707, "2015": 183509.727944819, "2016": 174840.518531389, "2017": 166549.845450563, "2018": 163130.596350829, "2019": 159759.128934438, "2020": 143637.635710982, "2021": 138840.37075476}, "budget": 334821.78708150616, "emissionBudget": {"2024": 117922.99901244417, "2025": 82916.6218982767, "2026": 58302.16535025756, "2027": 40994.70536437061, "2028": 28825.102083522048, "2029": 20268.142013471057, "2030": 14251.383377166398, "2031": 10020.747241063566, "2032": 7046.008981146972, "2033": 4954.3453564980355, "2034": 3483.608660893028, "2035": 2449.4718129272433, "2036": 1722.3266865994626, "2037": 1211.0403556053468, "2038": 851.5334252878564, "2039": 598.7489772956563, "2040": 421.0055966874174, "2041": 296.02674770767277, "2042": 208.14886084150058, "2043": 146.3582213604524, "2044": 102.91062306656802, "2045": 72.36078876544025, "2046": 50.87991496630711, "2047": 35.77580884821764, "2048": 25.15547637199801, "2049": 17.68787378607867, "2050": 12.437088228649575}, "approximatedHistoricalEmission": {"2021": 138840.37075476, "2022": 132437.60999295115, "2023": 125180.30450269766, "2024": 117922.99901244417}, "totalApproximatedHistoricalEmission": 385999.5993792509, "trend": {"2024": 117922.99901244417, "2025": 110665.69352218881, "2026": 103408.38803193532, "2027": 96151.08254167996, "2028": 88893.77705142647, "2029": 81636.47156117298, "2030": 74379.16607091762, "2031": 67121.86058066413, "2032": 59864.55509040877, "2033": 52607.24960015528, "2034": 45349.944109901786, "2035": 38092.63861964643, "2036": 30835.333129392937, "2037": 23578.02763913758, "2038": 16320.722148884088, "2039": 9063.416658630595, "2040": 1806.1111683752388, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 958735.9370307401, "historicalEmissionChangePercent": -4.502774001772303, "neededEmissionChangePercent": 29.685792769291197, "hitNetZero": "2040-03-27", "budgetRunsOut": "2027-02-22", "electricCarChangePercent": 0.10358583116471191, "electricCarChangeYearly": {"2015": 0.030362835888872022, "2016": 0.07991892283190966, "2017": 0.09101608473911338, "2018": 0.16771844660194174, "2019": 0.24171270718232044, "2020": 0.5270969498910676, "2021": 0.6341385378339466, "2022": 0.6800592482873542}, "climatePlanLink": "https://lund.se/download/18.2899fac318093d2b72817dd7/1666783006521/Lunds%20kommuns%20program%20f%C3%B6r%20ekologisk%20h%C3%A5llbar%20utveckling%202021-2030.pdf", "climatePlanYear": 2021, "climatePlanComment": "Program för ekologisk hållbar utveckling 2021–2030", "bicycleMetrePerCapita": 3.243323968, "totalConsumptionEmission": 6171.1, "electricVehiclePerChargePoints": 24.35077793493635, "procurementScore": "2", "procurementLink": "https://lund.se/kommun-och-politik/sa-styrs-lunds-kommun/forfattningssamling"}, {"kommun": "Lycksele", "län": "Västerbottens län", "emissions": {"1990": 73159.8265566444, "2000": 67475.3778616784, "2005": 60720.5667236556, "2010": 63538.2048457981, "2015": 65777.8982855079, "2016": 61485.1997406057, "2017": 63605.4022058477, "2018": 65846.6955592549, "2019": 67717.8157688779, "2020": 49347.517365165, "2021": 53014.7113861568}, "budget": 126430.51680792391, "emissionBudget": {"2024": 48445.210354651324, "2025": 33024.738006354935, "2026": 22512.71719957906, "2027": 15346.751141846911, "2028": 10461.765611046867, "2029": 7131.70746621693, "2030": 4861.631704880531, "2031": 3314.138016156908, "2032": 2259.2231285455537, "2033": 1540.0955300207709, "2034": 1049.8716180888873, "2035": 715.6896393652366, "2036": 487.8802808548501, "2037": 332.58434292568495, "2038": 226.72026212147304, "2039": 154.5535090565437, "2040": 105.35797258779175, "2041": 71.8217428744941, "2042": 48.96034559920594, "2043": 33.3759018544364, "2044": 22.752102971573766, "2045": 15.509938634370938, "2046": 10.573009305667387, "2047": 7.207541461833976, "2048": 4.913327173202252, "2049": 3.349378430739537, "2050": 2.283246255915772}, "approximatedHistoricalEmission": {"2021": 53014.7113861568, "2022": 52620.389775073156, "2023": 50532.800064862706, "2024": 48445.210354651324}, "totalApproximatedHistoricalEmission": 153883.15071033992, "trend": {"2024": 48445.210354651324, "2025": 46357.620644440874, "2026": 44270.030934230424, "2027": 42182.44122401904, "2028": 40094.85151380859, "2029": 38007.26180359814, "2030": 35919.67209338676, "2031": 33832.08238317631, "2032": 31744.492672965862, "2033": 29656.90296275448, "2034": 27569.31325254403, "2035": 25481.72354233358, "2036": 23394.1338321222, "2037": 21306.54412191175, "2038": 19218.954411700368, "2039": 17131.364701489918, "2040": 15043.774991279468, "2041": 12956.185281068087, "2042": 10868.595570857637, "2043": 8781.005860647187, "2044": 6693.416150435805, "2045": 4605.826440225355, "2046": 2518.2367300149053, "2047": 430.647019803524, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 562287.68331614, "historicalEmissionChangePercent": -2.734785362508843, "neededEmissionChangePercent": 31.830747013808413, "hitNetZero": "2047-03-11", "budgetRunsOut": "2026-10-11", "electricCarChangePercent": 0.06312012057143704, "electricCarChangeYearly": {"2015": 0.009708737864077669, "2016": 0.010416666666666666, "2017": 0.04838709677419355, "2018": 0.07964601769911504, "2019": 0.07228915662650602, "2020": 0.265625, "2021": 0.3333333333333333, "2022": 0.4444444444444444}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Pågående arbete med att ta fram klimatstrategi och koldioxidbudget. Nuvarande klimatarbete ingår i översiktsplanen.", "bicycleMetrePerCapita": 3.367278473, "totalConsumptionEmission": 6113.7, "electricVehiclePerChargePoints": 4.780487804878049, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1MPw4jWzpLCk3e-l72xPuqVv0pYYayNRM/view?usp=drive_link"}, {"kommun": "Lysekil", "län": "Västra Götalands län", "emissions": {"1990": 1239167.68179694, "2000": 1405304.77024186, "2005": 1346322.70868853, "2010": 1744872.73469659, "2015": 1777362.09081185, "2016": 1634826.83795701, "2017": 1743435.79623923, "2018": 1821587.57736769, "2019": 1271266.51067868, "2020": 1231248.5216605, "2021": 1743973.00699289}, "budget": 3324822.0707990867, "emissionBudget": {"2024": 1307780.0838988572, "2025": 882490.4959644593, "2026": 595504.9209388545, "2027": 401846.9462096884, "2028": 271166.47151037195, "2029": 182983.23768526517, "2030": 123477.15809880845, "2031": 83322.43305467472, "2032": 56226.009385437486, "2033": 37941.33243008965, "2034": 25602.825494910798, "2035": 17276.796341580277, "2036": 11658.388715252295, "2037": 7867.085120914835, "2038": 5308.7120194190775, "2039": 3582.320881491535, "2040": 2417.351487710683, "2041": 1631.2296995304384, "2042": 1100.754419106069, "2043": 742.7894989469139, "2044": 501.23463523669216, "2045": 338.23332171099406, "2046": 228.2399736036403, "2047": 154.01642063847893, "2048": 103.93033898383933, "2049": 70.13223211212026, "2050": 47.3252567933327}, "approximatedHistoricalEmission": {"2021": 1743973.00699289, "2022": 1406315.3102996051, "2023": 1357047.6970992386, "2024": 1307780.0838988572}, "totalApproximatedHistoricalEmission": 4289239.552844717, "trend": {"2024": 1307780.0838988572, "2025": 1258512.4706984907, "2026": 1209244.8574981093, "2027": 1159977.2442977428, "2028": 1110709.6310973614, "2029": 1061442.017896995, "2030": 1012174.4046966136, "2031": 962906.791496247, "2032": 913639.1782958657, "2033": 864371.5650954992, "2034": 815103.9518951178, "2035": 765836.3386947513, "2036": 716568.7254943699, "2037": 667301.1122940034, "2038": 618033.499093622, "2039": 568765.8858932555, "2040": 519498.2726928741, "2041": 470230.6594925076, "2042": 420963.0462921262, "2043": 371695.4330917597, "2044": 322427.8198913783, "2045": 273160.2066910118, "2046": 223892.5934906304, "2047": 174624.9802902639, "2048": 125357.3670898825, "2049": 76089.7538895011, "2050": 26822.140689134598}, "trendEmission": 17349828.919643976, "historicalEmissionChangePercent": 1.8983827524129842, "neededEmissionChangePercent": 32.51996212287397, "hitNetZero": "2050-07-11", "budgetRunsOut": "2026-09-05", "electricCarChangePercent": 0.06799621860120332, "electricCarChangeYearly": {"2015": 0.004618937644341801, "2016": 0.0020408163265306124, "2017": 0.034403669724770644, "2018": 0.06927710843373494, "2019": 0.09177820267686425, "2020": 0.2081447963800905, "2021": 0.32265446224256294, "2022": 0.5138888888888888}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.570420853, "totalConsumptionEmission": 6492.7, "electricVehiclePerChargePoints": 16.854166666666668, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Malmö", "län": "Skåne län", "emissions": {"1990": 1147787.49316862, "2000": 1123603.13048287, "2005": 1035760.12724836, "2010": 1821756.15266603, "2015": 1052565.51080206, "2016": 978060.879980769, "2017": 819936.0725141, "2018": 763798.473946226, "2019": 758930.951197966, "2020": 632405.539225059, "2021": 670375.543352161}, "budget": 1681435.900366909, "emissionBudget": {"2024": 403963.4876074791, "2025": 317689.7829406734, "2026": 249841.38735568142, "2027": 196483.2430492998, "2028": 154520.69494078693, "2029": 121520.0074796853, "2030": 95567.21333360294, "2031": 75157.10749011576, "2032": 59105.94867470809, "2033": 46482.80495888793, "2034": 36555.56175465935, "2035": 28748.46077771385, "2036": 22608.707332541813, "2037": 17780.209215401977, "2038": 13982.924149247381, "2039": 10996.617947230678, "2040": 8648.091413973987, "2041": 6801.135172954259, "2042": 5348.629822073091, "2043": 4206.33324379922, "2044": 3307.994747528199, "2045": 2601.512675156099, "2046": 2045.912619436575, "2047": 1608.9709984283159, "2048": 1265.3461585746204, "2049": 995.1086145017816, "2050": 782.5851826753371}, "approximatedHistoricalEmission": {"2021": 670375.543352161, "2022": 539598.1808344424, "2023": 471780.83422097564, "2024": 403963.4876074791}, "totalApproximatedHistoricalEmission": 1548548.530535238, "trend": {"2024": 403963.4876074791, "2025": 336146.14099401236, "2026": 268328.7943805456, "2027": 200511.44776707888, "2028": 132694.10115358233, "2029": 64876.754540115595, "2030": 0, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 1204538.9826390743, "historicalEmissionChangePercent": -6.899481889017173, "neededEmissionChangePercent": 21.356807561438718, "hitNetZero": "2029-12-14", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.06443229869056234, "electricCarChangeYearly": {"2015": 0.01738884569166608, "2016": 0.03164594610671584, "2017": 0.04722585244148746, "2018": 0.049437250393319615, "2019": 0.07239186976206531, "2020": 0.21926062645893274, "2021": 0.33480251860332, "2022": 0.4970276008492569}, "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab4da16fc858ade542fa/1670425421810/Viable-Cities-Klimatkontrakt-Malmo-FINAL.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities. ", "bicycleMetrePerCapita": 1.555072408, "totalConsumptionEmission": 6184.8, "electricVehiclePerChargePoints": 19.315893385982232, "procurementScore": "2", "procurementLink": "https://malmo.se/Miljo-och-klimat/Sa-jobbar-vi-med-vara-miljo--och-klimatmal/Sex-mal-for-minsta-mojliga-klimatpaverkan.html"}, {"kommun": "Malung-Sälen", "län": "Dalarnas län", "emissions": {"1990": 71495.1614995156, "2000": 67536.7374818513, "2005": 68817.0810242207, "2010": 60163.5738741507, "2015": 51409.9803303092, "2016": 51216.8659095119, "2017": 44311.3653386948, "2018": 39332.4407701309, "2019": 39916.4872991049, "2020": 38318.1646060851, "2021": 38990.1000466931}, "budget": 89905.1282449821, "emissionBudget": {"2024": 28902.503150655888, "2025": 20956.532300507453, "2026": 15195.093787309075, "2027": 11017.608824506138, "2028": 7988.611713026635, "2029": 5792.356410363569, "2030": 4199.902810393115, "2031": 3045.2517709698104, "2032": 2208.0411779163883, "2033": 1600.999263788861, "2034": 1160.8473013493483, "2035": 841.7033583519379, "2036": 610.2995136719741, "2037": 442.51397204537557, "2038": 320.85658118453733, "2039": 232.64563876612036, "2040": 168.68593761449873, "2041": 122.31024703406727, "2042": 88.68431323375907, "2043": 64.3029313116576, "2044": 46.62455878045583, "2045": 33.806382339494945, "2046": 24.512220957749594, "2047": 17.7732408705437, "2048": 12.886963265664262, "2049": 9.34403710725719, "2050": 6.775143814868217}, "approximatedHistoricalEmission": {"2021": 38990.1000466931, "2022": 33720.49754331913, "2023": 31311.50034698751, "2024": 28902.503150655888}, "totalApproximatedHistoricalEmission": 98978.29948898114, "trend": {"2024": 28902.503150655888, "2025": 26493.505954323336, "2026": 24084.508757991716, "2027": 21675.511561659165, "2028": 19266.514365327545, "2029": 16857.517168995924, "2030": 14448.519972663373, "2031": 12039.522776331753, "2032": 9630.525580000132, "2033": 7221.528383667581, "2034": 4812.531187335961, "2035": 2403.5339910043404, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 173384.97127462877, "historicalEmissionChangePercent": -4.310070850655964, "neededEmissionChangePercent": 27.49232759781955, "hitNetZero": "2035-12-28", "budgetRunsOut": "2027-09-03", "electricCarChangePercent": 0.06841056261265648, "electricCarChangeYearly": {"2015": 0.027888446215139442, "2016": 0.02510460251046025, "2017": 0.06690140845070422, "2018": 0.03896103896103896, "2019": 0.08, "2020": 0.2832618025751073, "2021": 0.41798941798941797, "2022": 0.46959459459459457}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.157542207, "totalConsumptionEmission": 6838.9, "electricVehiclePerChargePoints": 2.2941176470588234, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Malå", "län": "Västerbottens län", "emissions": {"1990": 12704.5540868584, "2000": 14382.2642467678, "2005": 13840.7136479153, "2010": 13816.8229867095, "2015": 10844.7120916547, "2016": 10973.8800684536, "2017": 10717.493652239, "2018": 10484.4817926518, "2019": 11149.594825288, "2020": 9570.453789893, "2021": 9691.38713817754}, "budget": 21752.92800375223, "emissionBudget": {"2024": 9239.987713085953, "2025": 6042.215307643403, "2026": 3951.127096437153, "2027": 2583.722118020431, "2028": 1689.5482783045843, "2029": 1104.8298750134447, "2030": 722.4706558531203, "2031": 472.43821005698834, "2032": 308.93692430772944, "2033": 202.02011854461762, "2034": 132.10505150277453, "2035": 86.38617162624998, "2036": 56.48966911824098, "2037": 36.939739972441195, "2038": 24.155644926426838, "2039": 15.79586597650461, "2040": 10.329237025450999, "2041": 6.754497517682625, "2042": 4.416902875204257, "2043": 2.888302343425971, "2044": 1.8887194631043736, "2045": 1.235071950977941, "2046": 0.807638590002798, "2047": 0.5281312489893615, "2048": 0.3453557316498419, "2049": 0.22583511506209014, "2050": 0.1476781605779692}, "approximatedHistoricalEmission": {"2021": 9691.38713817754, "2022": 9656.753873407608, "2023": 9448.37079324678, "2024": 9239.987713085953}, "totalApproximatedHistoricalEmission": 28570.812092286134, "trend": {"2024": 9239.987713085953, "2025": 9031.604632925126, "2026": 8823.22155276424, "2027": 8614.838472603413, "2028": 8406.455392442585, "2029": 8198.0723122817, "2030": 7989.6892321208725, "2031": 7781.306151960045, "2032": 7572.923071799218, "2033": 7364.539991638332, "2034": 7156.156911477505, "2035": 6947.773831316677, "2036": 6739.390751155792, "2037": 6531.007670994964, "2038": 6322.624590834137, "2039": 6114.24151067331, "2040": 5905.858430512424, "2041": 5697.475350351597, "2042": 5489.092270190769, "2043": 5280.709190029884, "2044": 5072.326109869056, "2045": 4863.943029708229, "2046": 4655.559949547402, "2047": 4447.176869386516, "2048": 4238.793789225689, "2049": 4030.4107090648613, "2050": 3822.0276289039757}, "trendEmission": 169806.1994458693, "historicalEmissionChangePercent": -1.6458681014594203, "neededEmissionChangePercent": 34.60797248586994, "hitNetZero": "2068-04-23", "budgetRunsOut": "2026-06-03", "electricCarChangePercent": 0.03897844908714474, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.022727272727272728, "2017": 0.0, "2018": 0.0, "2019": 0.04, "2020": 0.0, "2021": 0.0, "2022": 0.4782608695652174}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 4.123764229, "totalConsumptionEmission": 6081.2, "electricVehiclePerChargePoints": 6.75, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Mariestad", "län": "Västra Götalands län", "emissions": {"1990": 125490.478551498, "2000": 137998.681897692, "2005": 130579.36697198, "2010": 130002.524861905, "2015": 100040.477109114, "2016": 93417.8841741541, "2017": 91376.8760153906, "2018": 93026.6735625187, "2019": 88014.877625239, "2020": 86286.0129879992, "2021": 84355.9376558259}, "budget": 188557.38196012858, "emissionBudget": {"2024": 77071.38577810675, "2025": 51212.81220227798, "2026": 34030.167061182176, "2027": 22612.549875955796, "2028": 15025.709717301204, "2029": 9984.365042735226, "2030": 6634.465005789976, "2031": 4408.505270455687, "2032": 2929.3874792729316, "2033": 1946.5352715420502, "2034": 1293.4443088074186, "2035": 859.4748856828816, "2036": 571.1085309893988, "2037": 379.4932924767427, "2038": 252.167760102172, "2039": 167.56180015709663, "2040": 111.3423732697261, "2041": 73.98538374326466, "2042": 49.16220884189166, "2043": 32.66757102457819, "2044": 21.70712467533625, "2045": 14.424067871960068, "2046": 9.58458280802627, "2047": 6.368815539373181, "2048": 4.231985073006446, "2049": 2.812092381609786, "2050": 1.8685943892259451}, "approximatedHistoricalEmission": {"2021": 84355.9376558259, "2022": 81691.34000113048, "2023": 79381.36288961861, "2024": 77071.38577810675}, "totalApproximatedHistoricalEmission": 241786.3646077154, "trend": {"2024": 77071.38577810675, "2025": 74761.40866659582, "2026": 72451.43155508395, "2027": 70141.45444357209, "2028": 67831.47733206023, "2029": 65521.50022054929, "2030": 63211.52310903743, "2031": 60901.545997525565, "2032": 58591.5688860137, "2033": 56281.59177450277, "2034": 53971.614662990905, "2035": 51661.63755147904, "2036": 49351.66043996718, "2037": 47041.683328455314, "2038": 44731.70621694438, "2039": 42421.72910543252, "2040": 40111.751993920654, "2041": 37801.77488240879, "2042": 35491.79777089786, "2043": 33181.820659385994, "2044": 30871.84354787413, "2045": 28561.866436362267, "2046": 26251.889324851334, "2047": 23941.91221333947, "2048": 21631.935101827607, "2049": 19321.957990315743, "2050": 17011.98087880388}, "trendEmission": 1223083.7665398493, "historicalEmissionChangePercent": -2.764640954505996, "neededEmissionChangePercent": 33.551457930544004, "hitNetZero": "2057-05-05", "budgetRunsOut": "2026-07-18", "electricCarChangePercent": 0.05800223919314745, "electricCarChangeYearly": {"2015": 0.0011185682326621924, "2016": 0.009503695881731784, "2017": 0.027300303336703743, "2018": 0.03764705882352941, "2019": 0.05152224824355972, "2020": 0.1693121693121693, "2021": 0.3032679738562091, "2022": 0.42446941323345816}, "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab5329d52f430f6fe71a/1670425427707/Viable-Cities-Klimatkontrakt-Mariestad-FINAL.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities. ", "bicycleMetrePerCapita": 4.177182145, "totalConsumptionEmission": 6077.1, "electricVehiclePerChargePoints": 21.6734693877551, "procurementScore": "2", "procurementLink": "https://mariestad.se/download/18.216f23a018c6320f584a16/1702479676636/Klimatkontrakt_Mariestad_2023.pdf"}, {"kommun": "Mark", "län": "Västra Götalands län", "emissions": {"1990": 147121.048510445, "2000": 129848.711069143, "2005": 112254.497890317, "2010": 101440.006438878, "2015": 78885.4460783096, "2016": 76133.7390297388, "2017": 77897.1356981542, "2018": 73062.4277052588, "2019": 72170.1733284888, "2020": 65873.3656920631, "2021": 67266.4918853514}, "budget": 151460.22849894696, "emissionBudget": {"2024": 59947.41742593143, "2025": 40353.22728236755, "2026": 27163.521332914403, "2027": 18284.953667785183, "2028": 12308.401644080188, "2029": 8285.323210794133, "2030": 5577.213247695733, "2031": 3754.2660459822205, "2032": 2527.160594018567, "2033": 1701.1422711491346, "2034": 1145.113228474619, "2035": 770.82577293302, "2036": 518.8765245592978, "2037": 349.2784714687145, "2038": 235.114607921677, "2039": 158.26592067274117, "2040": 106.53570983022286, "2041": 71.71384351592933, "2042": 48.27372305514248, "2043": 32.49515328357726, "2044": 21.873908207100566, "2045": 14.724283836336733, "2046": 9.911559125160354, "2047": 6.671903732873872, "2048": 4.491150066162376, "2049": 3.023189441029614, "2050": 2.0350409720694667}, "approximatedHistoricalEmission": {"2021": 67266.4918853514, "2022": 64312.0296847811, "2023": 62129.723555356264, "2024": 59947.41742593143}, "totalApproximatedHistoricalEmission": 190048.70789577876, "trend": {"2024": 59947.41742593143, "2025": 57765.1112965066, "2026": 55582.8051670827, "2027": 53400.499037657864, "2028": 51218.19290823303, "2029": 49035.8867788082, "2030": 46853.580649383366, "2031": 44671.27451995853, "2032": 42488.9683905337, "2033": 40306.66226110887, "2034": 38124.356131684035, "2035": 35942.05000226013, "2036": 33759.7438728353, "2037": 31577.437743410468, "2038": 29395.131613985635, "2039": 27212.825484560803, "2040": 25030.51935513597, "2041": 22848.213225711137, "2042": 20665.907096286304, "2043": 18483.60096686147, "2044": 16301.29483743757, "2045": 14118.988708012737, "2046": 11936.682578587905, "2047": 9754.376449163072, "2048": 7572.070319738239, "2049": 5389.764190313406, "2050": 3207.4580608885735}, "trendEmission": 821013.381328667, "historicalEmissionChangePercent": -2.5349814514065048, "neededEmissionChangePercent": 32.68562848061579, "hitNetZero": "2051-06-14", "budgetRunsOut": "2026-08-28", "electricCarChangePercent": 0.05887189376903463, "electricCarChangeYearly": {"2015": 0.009135200974421437, "2016": 0.008784773060029283, "2017": 0.033380681818181816, "2018": 0.025034770514603615, "2019": 0.06272793581327499, "2020": 0.210221793635487, "2021": 0.29989969909729186, "2022": 0.42648490749756574}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.164699341, "totalConsumptionEmission": 6018.4, "electricVehiclePerChargePoints": 93.6875, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1si4gGgN7FLAyciNftvdcJvfuArOBfskg/view?usp=drive_link"}, {"kommun": "Markaryd", "län": "Kronobergs län", "emissions": {"1990": 131859.084316808, "2000": 105406.299834895, "2005": 93388.4425498552, "2010": 79759.1990163807, "2015": 63576.43333818, "2016": 60671.0197958704, "2017": 59103.0104029839, "2018": 59841.1186636512, "2019": 57903.0420295907, "2020": 54270.5189718591, "2021": 53982.9166032395}, "budget": 121262.0991690337, "emissionBudget": {"2024": 49310.825638002716, "2025": 32835.06503155026, "2026": 21864.194762036917, "2027": 14558.917795135929, "2028": 9694.484049033359, "2029": 6455.357623377856, "2030": 4298.489928389503, "2031": 2862.276072444403, "2032": 1905.930792295063, "2033": 1269.1201313492606, "2034": 845.0810041514943, "2035": 562.7220669949023, "2036": 374.7050556425116, "2037": 249.50839314664663, "2038": 166.14250945686643, "2039": 110.63088139243989, "2040": 73.66682950485718, "2041": 49.053227281515134, "2042": 32.663535581822856, "2043": 21.74997682786621, "2044": 14.48286242093075, "2045": 9.643840338940988, "2046": 6.421635017990365, "2047": 4.276034738751023, "2048": 2.847323623311058, "2049": 1.8959742638183652, "2050": 1.2624902837287626}, "approximatedHistoricalEmission": {"2021": 53982.9166032395, "2022": 52366.648511304986, "2023": 50838.73707465362, "2024": 49310.825638002716}, "totalApproximatedHistoricalEmission": 154852.2567065797, "trend": {"2024": 49310.825638002716, "2025": 47782.91420135135, "2026": 46255.00276469998, "2027": 44727.09132804861, "2028": 43199.179891397245, "2029": 41671.26845474588, "2030": 40143.35701809451, "2031": 38615.44558144314, "2032": 37087.534144791774, "2033": 35559.62270814041, "2034": 34031.71127148904, "2035": 32503.79983483767, "2036": 30975.888398186304, "2037": 29447.976961534936, "2038": 27920.06552488357, "2039": 26392.1540882322, "2040": 24864.2426515813, "2041": 23336.33121492993, "2042": 21808.419778278563, "2043": 20280.508341627195, "2044": 18752.596904975828, "2045": 17224.68546832446, "2046": 15696.774031673092, "2047": 14168.862595021725, "2048": 12640.951158370357, "2049": 11113.03972171899, "2050": 9585.128285067622}, "trendEmission": 765647.4009999132, "historicalEmissionChangePercent": -2.6579421111562493, "neededEmissionChangePercent": 33.41205585849076, "hitNetZero": "2056-04-01", "budgetRunsOut": "2026-07-24", "electricCarChangePercent": 0.06568561484182897, "electricCarChangeYearly": {"2015": 0.00851063829787234, "2016": 0.006968641114982578, "2017": 0.017964071856287425, "2018": 0.023809523809523808, "2019": 0.0625, "2020": 0.20179372197309417, "2021": 0.3465346534653465, "2022": 0.46987951807228917}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.936381161, "totalConsumptionEmission": 6465.5, "electricVehiclePerChargePoints": 8.255813953488373, "procurementScore": "2", "procurementLink": "https://foretag.vaxjo.se/download/18.3d04795317955c86cd918e16/1622707803967/Klimatkontrakt%202030.pdf"}, {"kommun": "Mellerud", "län": "Västra Götalands län", "emissions": {"1990": 63190.0593574044, "2000": 61360.3629603098, "2005": 65999.3897465969, "2010": 38612.9794608756, "2015": 33015.4559109454, "2016": 31719.6674325107, "2017": 30837.9677982202, "2018": 29459.0896152477, "2019": 29151.5243033596, "2020": 27304.0666707569, "2021": 27478.4286960322}, "budget": 61902.5289412918, "emissionBudget": {"2024": 24039.01577605866, "2025": 16302.877036242868, "2026": 11056.351147435867, "2027": 7498.240980634809, "2028": 5085.187423403276, "2029": 3448.692993186461, "2030": 2338.848575475641, "2031": 1586.1697952853049, "2032": 1075.715053063566, "2033": 729.5327895078293, "2034": 494.7575005586772, "2035": 335.5366446574811, "2036": 227.55560002803534, "2037": 154.3245780411801, "2038": 104.66046708872072, "2039": 70.97905926757997, "2040": 48.136865758872375, "2041": 32.645654493001615, "2042": 22.13976212358621, "2043": 15.014833505453598, "2044": 10.182820571333867, "2045": 6.905826478216929, "2046": 4.683421357879723, "2047": 3.176221656398667, "2048": 2.1540628612461896, "2049": 1.460851071540493, "2050": 0.9907258936660625}, "approximatedHistoricalEmission": {"2021": 27478.4286960322, "2022": 25976.781966280658, "2023": 25007.89887116966, "2024": 24039.01577605866}, "totalApproximatedHistoricalEmission": 76743.40307349575, "trend": {"2024": 24039.01577605866, "2025": 23070.13268094766, "2026": 22101.24958583666, "2027": 21132.36649072566, "2028": 20163.48339561466, "2029": 19194.600300503662, "2030": 18225.717205392662, "2031": 17256.834110281663, "2032": 16287.951015170664, "2033": 15319.067920059664, "2034": 14350.184824948665, "2035": 13381.301729837665, "2036": 12412.418634726666, "2037": 11443.535539615666, "2038": 10474.652444504434, "2039": 9505.769349393435, "2040": 8536.886254282435, "2041": 7568.003159171436, "2042": 6599.120064060437, "2043": 5630.236968949437, "2044": 4661.353873838438, "2045": 3692.4707787274383, "2046": 2723.587683616439, "2047": 1754.7045885054395, "2048": 785.82149339444, "2049": 0, "2050": 0}, "trendEmission": 298290.95798013476, "historicalEmissionChangePercent": -2.9864500451225844, "neededEmissionChangePercent": 32.18159516963458, "hitNetZero": "2048-10-17", "budgetRunsOut": "2026-09-22", "electricCarChangePercent": 0.05547856641444567, "electricCarChangeYearly": {"2015": 0.017094017094017096, "2016": 0.009404388714733543, "2017": 0.033210332103321034, "2018": 0.049107142857142856, "2019": 0.04938271604938271, "2020": 0.2302158273381295, "2021": 0.27439024390243905, "2022": 0.4090909090909091}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete pågår med Energi– och Klimatstrategi som bör vara klart under 2023.", "bicycleMetrePerCapita": 2.458987795, "totalConsumptionEmission": 5737.5, "electricVehiclePerChargePoints": 4.9411764705882355, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Mjölby", "län": "Östergötlands län", "emissions": {"1990": 135781.97451215, "2000": 130491.800563787, "2005": 129591.483723642, "2010": 133248.21922371, "2015": 114511.170173067, "2016": 109326.932318644, "2017": 104745.699174966, "2018": 105974.110205858, "2019": 104661.546792641, "2020": 95077.1874123614, "2021": 96057.566686439}, "budget": 216354.47598997995, "emissionBudget": {"2024": 86348.21911168844, "2025": 57932.751177180486, "2026": 38868.24411069757, "2027": 26077.484144130405, "2028": 17495.906873246404, "2029": 11738.354652061409, "2030": 7875.497448392892, "2031": 5283.829113882738, "2032": 3545.0268745134426, "2033": 2378.4295953106116, "2034": 1595.7360945608673, "2035": 1070.611334682717, "2036": 718.2946063938823, "2037": 481.91825068566715, "2038": 323.32861513452616, "2039": 216.92764948426498, "2040": 145.54110866800033, "2041": 97.64644738773674, "2042": 65.51295901693537, "2043": 43.95395750663706, "2044": 29.489591211959137, "2045": 19.785157905682134, "2046": 13.27425906107603, "2047": 8.905966505829815, "2048": 5.975191461762315, "2049": 4.0088757330657225, "2050": 2.689635093035704}, "approximatedHistoricalEmission": {"2021": 96057.566686439, "2022": 92344.25144417211, "2023": 89346.23527793027, "2024": 86348.21911168844}, "totalApproximatedHistoricalEmission": 272893.3796211661, "trend": {"2024": 86348.21911168844, "2025": 83350.20294544566, "2026": 80352.18677920382, "2027": 77354.17061296199, "2028": 74356.15444672015, "2029": 71358.1382804783, "2030": 68360.12211423647, "2031": 65362.10594799463, "2032": 62364.08978175279, "2033": 59366.07361551095, "2034": 56368.05744926911, "2035": 53370.04128302634, "2036": 50372.0251167845, "2037": 47374.00895054266, "2038": 44375.99278430082, "2039": 41377.97661805898, "2040": 38379.96045181714, "2041": 35381.9442855753, "2042": 32383.92811933346, "2043": 29385.91195309162, "2044": 26387.89578684885, "2045": 23389.87962060701, "2046": 20391.86345436517, "2047": 17393.847288123332, "2048": 14395.831121881492, "2049": 11397.814955639653, "2050": 8399.798789397813}, "trendEmission": 1231724.2327141133, "historicalEmissionChangePercent": -2.8183046177765725, "neededEmissionChangePercent": 32.907995355125415, "hitNetZero": "2052-10-12", "budgetRunsOut": "2026-08-17", "electricCarChangePercent": 0.08345160061637033, "electricCarChangeYearly": {"2015": 0.013458950201884253, "2016": 0.02364066193853428, "2017": 0.029871977240398292, "2018": 0.059422750424448216, "2019": 0.08279220779220779, "2020": 0.25795644891122277, "2021": 0.45532646048109965, "2022": 0.6054421768707483}, "climatePlanLink": "https://www.mjolby.se/download/18.12cf806d18409781a5e22559/1667205317237/Energi-%20och%20klimatstrategi.pdf", "climatePlanYear": 2020, "climatePlanComment": "Energi och klimatstrategi. 2020–2023.", "bicycleMetrePerCapita": 3.49516978, "totalConsumptionEmission": 6184.6, "electricVehiclePerChargePoints": 14.916666666666666, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Mora", "län": "Dalarnas län", "emissions": {"1990": 109691.064808843, "2000": 102650.24462107, "2005": 92741.6325973393, "2010": 86642.6173634336, "2015": 72779.156526889, "2016": 72367.1945010175, "2017": 69382.7450067716, "2018": 62509.2691808808, "2019": 63531.925313764, "2020": 59626.5013600964, "2021": 58397.5072941933}, "budget": 135850.42375038165, "emissionBudget": {"2024": 49554.08123917226, "2025": 34408.209920645604, "2026": 23891.57220429561, "2027": 16589.27400493959, "2028": 11518.874089059902, "2029": 7998.207772088621, "2030": 5553.609412768549, "2031": 3856.1860842403853, "2032": 2677.568768538264, "2033": 1859.1879005921421, "2034": 1290.9396353600398, "2035": 896.3726267865296, "2036": 622.4023680457327, "2037": 432.1692744430392, "2038": 300.0796451964969, "2039": 208.3623218640546, "2040": 144.67778094096033, "2041": 100.45799120849357, "2042": 69.7536825075027, "2043": 48.433939050795104, "2044": 33.630431651028836, "2045": 23.35151662656178, "2046": 16.214282778731715, "2047": 11.25849640659445, "2048": 7.817412775331812, "2049": 5.428073189606917, "2050": 3.769019162542398}, "approximatedHistoricalEmission": {"2021": 58397.5072941933, "2022": 54873.87793009635, "2023": 52213.979584634304, "2024": 49554.08123917226}, "totalApproximatedHistoricalEmission": 161063.65178141344, "trend": {"2024": 49554.08123917226, "2025": 46894.18289371021, "2026": 44234.284548248164, "2027": 41574.38620278612, "2028": 38914.48785732407, "2029": 36254.589511862025, "2030": 33594.69116639998, "2031": 30934.792820937, "2032": 28274.894475474954, "2033": 25614.996130012907, "2034": 22955.09778455086, "2035": 20295.199439088814, "2036": 17635.301093626767, "2037": 14975.40274816472, "2038": 12315.504402702674, "2039": 9655.606057240628, "2040": 6995.707711778581, "2041": 4335.809366316535, "2042": 1675.911020854488, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 461907.8858506656, "historicalEmissionChangePercent": -3.5281696082497622, "neededEmissionChangePercent": 30.564326771442424, "hitNetZero": "2042-08-13", "budgetRunsOut": "2026-12-24", "electricCarChangePercent": 0.07610466370177843, "electricCarChangeYearly": {"2015": 0.007267441860465116, "2016": 0.011435832274459974, "2017": 0.029372496662216287, "2018": 0.02857142857142857, "2019": 0.04409171075837742, "2020": 0.24102564102564103, "2021": 0.3515625, "2022": 0.5846501128668171}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas, men planeras att tas fram. Klimatarbetet har hittills ingått i Strategi Hållbara Mora, som genomgår revidering just nu.", "bicycleMetrePerCapita": 2.867186548, "totalConsumptionEmission": 6031.3, "electricVehiclePerChargePoints": 15.872340425531915, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1vCpggLOKZSYCiQlpCyVoj5nh3K4MTKX9/view?usp=drive_link"}, {"kommun": "Motala", "län": "Östergötlands län", "emissions": {"1990": 155066.402972526, "2000": 142192.945876458, "2005": 130158.054361876, "2010": 114052.602401752, "2015": 94302.1630707694, "2016": 91603.8635850887, "2017": 82636.3950784187, "2018": 80754.1760154517, "2019": 80095.9965531589, "2020": 72512.2292716382, "2021": 74871.3006511838}, "budget": 170859.69237876066, "emissionBudget": {"2024": 61178.82037276216, "2025": 42765.700084474964, "2026": 29894.415952641037, "2027": 20897.029708019356, "2028": 14607.606026143627, "2029": 10211.123628404519, "2030": 7137.859931870531, "2031": 4989.562976720468, "2032": 3487.843546424915, "2033": 2438.099821787149, "2034": 1704.2997089395092, "2035": 1191.3529839652633, "2036": 832.7889308190413, "2037": 582.1426668915306, "2038": 406.9339445737927, "2039": 284.45816578024755, "2040": 198.84418382401526, "2041": 138.99762494842156, "2042": 97.16321277167097, "2043": 67.91979301528504, "2044": 47.47782778735121, "2045": 33.18832451238619, "2046": 23.199563570448362, "2047": 16.217141352176597, "2048": 11.336233668269557, "2049": 7.924343199016388, "2050": 5.539336694475774}, "approximatedHistoricalEmission": {"2021": 74871.3006511838, "2022": 68251.4099735422, "2023": 64715.11517315172, "2024": 61178.82037276216}, "totalApproximatedHistoricalEmission": 200991.5856586669, "trend": {"2024": 61178.82037276216, "2025": 57642.5255723726, "2026": 54106.23077198211, "2027": 50569.93597159255, "2028": 47033.64117120206, "2029": 43497.346370812505, "2030": 39961.051570422016, "2031": 36424.75677003246, "2032": 32888.46196964197, "2033": 29352.16716925241, "2034": 25815.87236886192, "2035": 22279.577568472363, "2036": 18743.282768081874, "2037": 15206.987967692316, "2038": 11670.693167302758, "2039": 8134.398366912268, "2040": 4598.10356652271, "2041": 1061.8087661322206, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 529576.2520636702, "historicalEmissionChangePercent": -3.6597484894372108, "neededEmissionChangePercent": 30.09721366985532, "hitNetZero": "2041-04-15", "budgetRunsOut": "2027-01-24", "electricCarChangePercent": 0.06052378665984954, "electricCarChangeYearly": {"2015": 0.012234910277324634, "2016": 0.01859504132231405, "2017": 0.02830188679245283, "2018": 0.04040404040404041, "2019": 0.05010438413361169, "2020": 0.2187192118226601, "2021": 0.32097560975609757, "2022": 0.43954104148278905}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.46608596, "totalConsumptionEmission": 6026.2, "electricVehiclePerChargePoints": 49.411764705882355, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Mullsjö", "län": "Jönköpings län", "emissions": {"1990": 25940.1177200633, "2000": 24286.7489625568, "2005": 22239.4261122533, "2010": 21290.8248752075, "2015": 17889.9532917492, "2016": 17215.0816056568, "2017": 17713.5442121024, "2018": 17068.5809293998, "2019": 16971.1910993257, "2020": 15549.8613684589, "2021": 15721.0330251436}, "budget": 34993.69288144502, "emissionBudget": {"2024": 14608.559135907446, "2025": 9622.893191925075, "2026": 6338.754734242715, "2027": 4175.439837012926, "2028": 2750.429471317506, "2029": 1811.7521918609978, "2030": 1193.4303493122393, "2031": 786.1317927793117, "2032": 517.8376735387726, "2033": 341.10801598292176, "2034": 224.69334409886906, "2035": 148.0091247250562, "2036": 97.4959943283319, "2037": 64.22218175891255, "2038": 42.30418550309862, "2039": 27.866448352670872, "2040": 18.35607835388286, "2041": 12.09144445928619, "2042": 7.964829213156864, "2043": 5.246561286235448, "2044": 3.455994421670023, "2045": 2.2765191886635487, "2046": 1.499579855759434, "2047": 0.9877974035965091, "2048": 0.6506780594607677, "2049": 0.42861211775018065, "2050": 0.2823337052958849}, "approximatedHistoricalEmission": {"2021": 15721.0330251436, "2022": 15364.241592120961, "2023": 14986.400364014204, "2024": 14608.559135907446}, "totalApproximatedHistoricalEmission": 45515.43803666069, "trend": {"2024": 14608.559135907446, "2025": 14230.717907800688, "2026": 13852.87667969393, "2027": 13475.035451587173, "2028": 13097.194223480416, "2029": 12719.352995373658, "2030": 12341.5117672669, "2031": 11963.670539160143, "2032": 11585.829311053385, "2033": 11207.988082946627, "2034": 10830.14685483987, "2035": 10452.305626732996, "2036": 10074.464398626238, "2037": 9696.62317051948, "2038": 9318.781942412723, "2039": 8940.940714305965, "2040": 8563.099486199208, "2041": 8185.25825809245, "2042": 7807.417029985692, "2043": 7429.575801878935, "2044": 7051.734573772177, "2045": 6673.8933456654195, "2046": 6296.052117558662, "2047": 5918.210889451904, "2048": 5540.369661345147, "2049": 5162.528433238389, "2050": 4784.687205131631}, "trendEmission": 252112.20243350771, "historicalEmissionChangePercent": -2.060444643347544, "neededEmissionChangePercent": 34.128389375018756, "hitNetZero": "2062-08-21", "budgetRunsOut": "2026-06-23", "electricCarChangePercent": 0.07766504804834294, "electricCarChangeYearly": {"2015": 0.030927835051546393, "2016": 0.008130081300813009, "2017": 0.0, "2018": 0.048, "2019": 0.08571428571428572, "2020": 0.23, "2021": 0.4369747899159664, "2022": 0.5526315789473685}, "climatePlanLink": "https://www.mullsjo.se/download/18.6cf2c3af17a7603c29e1ac4a/1625644095092/Milj%C3%B6program_Mullsj%C3%B6%20kommun-2021-2030.pdf", "climatePlanYear": 2021, "climatePlanComment": "Miljöprogram. 2021–2030.", "bicycleMetrePerCapita": 4.702254358, "totalConsumptionEmission": 6191.3, "electricVehiclePerChargePoints": 8.8, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Munkedal", "län": "Västra Götalands län", "emissions": {"1990": 85398.002576266, "2000": 74015.7094594203, "2005": 69490.0141362055, "2010": 91786.2446289112, "2015": 68783.0661839837, "2016": 81921.3849825591, "2017": 97003.9217631314, "2018": 101394.172469348, "2019": 99370.8407602356, "2020": 73329.2328599033, "2021": 77022.5277997303}, "budget": 177391.32408002223, "emissionBudget": {"2024": 87668.09231677791, "2025": 53482.2956850793, "2026": 32627.103843102977, "2027": 19904.30462179303, "2028": 12142.70639472893, "2029": 7407.71011046296, "2030": 4519.105321073701, "2031": 2756.8995814389796, "2032": 1681.8584127029394, "2033": 1026.0249373693987, "2034": 625.9309131807508, "2035": 381.85183790930876, "2036": 232.95035129957097, "2037": 142.11236082483336, "2038": 86.69625517428805, "2039": 52.88942226855076, "2040": 32.26541887279443, "2041": 19.683657154559505, "2042": 12.008099461089879, "2043": 7.325592573330608, "2044": 4.469009165382603, "2045": 2.726338206820764, "2046": 1.663214315053731, "2047": 1.0146510256427308, "2048": 0.6189922095545374, "2049": 0.37761885200530015, "2050": 0.23036800009554376}, "approximatedHistoricalEmission": {"2021": 77022.5277997303, "2022": 86960.87805970397, "2023": 87314.48518824088, "2024": 87668.09231677791}, "totalApproximatedHistoricalEmission": 256620.67330619897, "trend": {"2024": 87668.09231677791, "2025": 88021.69944531482, "2026": 88375.30657385185, "2027": 88728.91370238888, "2028": 89082.52083092579, "2029": 89436.12795946281, "2030": 89789.73508799972, "2031": 90143.34221653675, "2032": 90496.94934507378, "2033": 90850.55647361069, "2034": 91204.16360214772, "2035": 91557.77073068463, "2036": 91911.37785922165, "2037": 92264.98498775868, "2038": 92618.5921162956, "2039": 92972.19924483262, "2040": 93325.80637336953, "2041": 93679.41350190656, "2042": 94033.02063044347, "2043": 94386.6277589805, "2044": 94740.23488751752, "2045": 95093.84201605443, "2046": 95447.44914459146, "2047": 95801.05627312837, "2048": 96154.6634016654, "2049": 96508.27053020243, "2050": 96861.87765873934}, "trendEmission": 2398889.6096817246, "historicalEmissionChangePercent": 3.145420963154026, "neededEmissionChangePercent": 38.99457114701713, "hitNetZero": "Aldrig", "budgetRunsOut": "2026-01-06", "electricCarChangePercent": 0.07614390539753603, "electricCarChangeYearly": {"2015": 0.0027397260273972603, "2016": 0.014423076923076924, "2017": 0.019801980198019802, "2018": 0.043010752688172046, "2019": 0.09022556390977443, "2020": 0.24615384615384617, "2021": 0.355, "2022": 0.5694444444444444}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Saknar plan", "bicycleMetrePerCapita": 4.059255886, "totalConsumptionEmission": 6009.4, "electricVehiclePerChargePoints": 9.404761904761905, "procurementScore": "2", "procurementLink": "https://www.munkedal.se/download/18.65b854c9188d75f3a1f7bf3a/1688714563570/M%C3%A5l%20och%20Resursplan%20(MRP)%20budget%202024%20plan%202025-2026.pdf"}, {"kommun": "Munkfors", "län": "Värmlands län", "emissions": {"1990": 21835.6008881532, "2000": 16019.2267006121, "2005": 12380.081667685, "2010": 13217.3261105313, "2015": 8702.19854025208, "2016": 8436.48216135311, "2017": 7583.29795078913, "2018": 7130.55340278493, "2019": 6770.21283373033, "2020": 6756.50997497092, "2021": 6579.59905935159}, "budget": 15391.88850716418, "emissionBudget": {"2024": 5163.944574920461, "2025": 3692.1278691594516, "2026": 2639.8052892412934, "2027": 1887.4134948887272, "2028": 1349.4668395455515, "2029": 964.8446172312762, "2030": 689.8466180270631, "2031": 493.227974644237, "2032": 352.64916666172945, "2033": 252.13783714703848, "2034": 180.27403700677922, "2035": 128.89270720510476, "2036": 92.15597679235485, "2037": 65.8898726134964, "2038": 47.110078631198945, "2039": 33.682862336922355, "2040": 24.082643208680796, "2041": 17.218658501028454, "2042": 12.311032389840419, "2043": 8.802167630808588, "2044": 6.293392182510437, "2045": 4.499662676754219, "2046": 3.2171782112740352, "2047": 2.300224791642032, "2048": 1.644619522021856, "2049": 1.1758734981221433, "2050": 0.8407284876967629}, "approximatedHistoricalEmission": {"2021": 6579.59905935159, "2022": 5916.860855815117, "2023": 5540.402715367731, "2024": 5163.944574920461}, "totalApproximatedHistoricalEmission": 17329.035388318873, "trend": {"2024": 5163.944574920461, "2025": 4787.4864344731905, "2026": 4411.028294025804, "2027": 4034.570153578534, "2028": 3658.1120131311473, "2029": 3281.653872683877, "2030": 2905.1957322364906, "2031": 2528.7375917892205, "2032": 2152.279451341834, "2033": 1775.8213108945638, "2034": 1399.3631704471773, "2035": 1022.9050299999071, "2036": 646.446889552637, "2037": 269.98874910525046, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 35455.56098071986, "historicalEmissionChangePercent": -4.501834533211457, "neededEmissionChangePercent": 28.501791303282502, "hitNetZero": "2037-09-15", "budgetRunsOut": "2027-05-27", "electricCarChangePercent": 0.05845845875138749, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.017543859649122806, "2017": 0.0, "2018": 0.06382978723404255, "2019": 0.07317073170731707, "2020": 0.1, "2021": 0.37777777777777777, "2022": 0.4}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 5.564399594, "totalConsumptionEmission": 6768.9, "electricVehiclePerChargePoints": 10000000000.0, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Mölndal", "län": "Västra Götalands län", "emissions": {"1990": 317618.468211827, "2000": 294194.157244469, "2005": 282073.226731784, "2010": 236492.163500131, "2015": 165326.602405812, "2016": 172427.540771762, "2017": 152097.59504448, "2018": 147255.292555194, "2019": 146183.190656388, "2020": 131934.823632211, "2021": 135435.135194512}, "budget": 311239.43529196526, "emissionBudget": {"2024": 112256.9742583856, "2025": 78266.01212051054, "2026": 54567.37716044688, "2027": 38044.59393671017, "2028": 26524.843287837262, "2029": 18493.226990798186, "2030": 12893.55193627129, "2031": 8989.436057646628, "2032": 6267.470828359415, "2033": 4369.705767129044, "2034": 3046.576364565065, "2035": 2124.0852450403427, "2036": 1480.920741286653, "2037": 1032.5038729466598, "2038": 719.8658361173568, "2039": 501.8933445063332, "2040": 349.92205022310173, "2041": 243.96705509768685, "2042": 170.09480807251026, "2043": 118.59078153662729, "2044": 82.6819679262213, "2045": 57.646199237174855, "2046": 40.19116102143708, "2047": 28.02143845780886, "2048": 19.536659138211036, "2049": 13.621037009121826, "2050": 9.496641564523706}, "approximatedHistoricalEmission": {"2021": 135435.135194512, "2022": 124869.4199941773, "2023": 118563.19712628052, "2024": 112256.9742583856}, "totalApproximatedHistoricalEmission": 367278.6718469066, "trend": {"2024": 112256.9742583856, "2025": 105950.75139048882, "2026": 99644.52852259204, "2027": 93338.30565469526, "2028": 87032.08278679848, "2029": 80725.85991890356, "2030": 74419.63705100678, "2031": 68113.41418311, "2032": 61807.19131521322, "2033": 55500.96844731644, "2034": 49194.74557941966, "2035": 42888.52271152474, "2036": 36582.29984362796, "2037": 30276.07697573118, "2038": 23969.8541078344, "2039": 17663.63123993762, "2040": 11357.4083720427, "2041": 5051.18550414592, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 999644.9507335816, "historicalEmissionChangePercent": -3.083488915064071, "neededEmissionChangePercent": 30.27959943017609, "hitNetZero": "2041-10-15", "budgetRunsOut": "2027-01-12", "electricCarChangePercent": 0.08264060483353733, "electricCarChangeYearly": {"2015": 0.072496710132791, "2016": 0.038907925279098046, "2017": 0.07507655833251013, "2018": 0.06672779136104319, "2019": 0.062340454117963184, "2020": 0.29051132027473925, "2021": 0.5240857946554149, "2022": 0.6259259259259259}, "climatePlanLink": "https://www.molndal.se/download/18.5bcdb531818002396aa89b1/1658749356043/M%C3%B6lndals%20stad%20Energiplan%20f%C3%B6r%20minimerad%20klimatp%C3%A5verkan.pdf", "climatePlanYear": 2022, "climatePlanComment": "Energiplan för minimerad klimatpåverkan.", "bicycleMetrePerCapita": 2.435578685, "totalConsumptionEmission": 6112.1, "electricVehiclePerChargePoints": 15.574585635359115, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Mönsterås", "län": "Kalmar län", "emissions": {"1990": 69188.0782570948, "2000": 200141.589569012, "2005": 100216.729432198, "2010": 124390.670319659, "2015": 64320.5336422862, "2016": 69643.1159436731, "2017": 55998.1855945748, "2018": 59168.9737484121, "2019": 56553.8513294004, "2020": 48372.2317022613, "2021": 49623.5862728977}, "budget": 119583.17869499176, "emissionBudget": {"2024": 39223.58013560809, "2025": 28255.14633108208, "2026": 20353.911892558146, "2027": 14662.168954130995, "2028": 10562.058024732049, "2029": 7608.497082989618, "2030": 5480.866297676882, "2031": 3948.2035736296375, "2032": 2844.1327724832668, "2033": 2048.802974988683, "2034": 1475.8782258457923, "2035": 1063.1654503224036, "2036": 765.8631687661617, "2037": 551.6981323035629, "2038": 397.4219437626094, "2039": 286.2873592204669, "2040": 206.23031348864265, "2041": 148.56032176003689, "2042": 107.01709573195757, "2043": 77.09096643854842, "2044": 55.53334320821692, "2045": 40.00406727732393, "2046": 28.8173790064897, "2047": 20.75892251272172, "2048": 14.95392290159831, "2049": 10.7722262564401, "2050": 7.759894128351751}, "approximatedHistoricalEmission": {"2021": 49623.5862728977, "2022": 45371.93333962001, "2023": 42297.75673761405, "2024": 39223.58013560809}, "totalApproximatedHistoricalEmission": 132093.27328148694, "trend": {"2024": 39223.58013560809, "2025": 36149.40353360213, "2026": 33075.226931596175, "2027": 30001.050329590216, "2028": 26926.873727584258, "2029": 23852.6971255783, "2030": 20778.52052357234, "2031": 17704.343921566382, "2032": 14630.167319560423, "2033": 11555.990717554465, "2034": 8481.814115548506, "2035": 5407.637513542548, "2036": 2333.4609115365893, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 250508.97673863638, "historicalEmissionChangePercent": -3.6591719075636875, "neededEmissionChangePercent": 27.963877255989217, "hitNetZero": "2036-10-01", "budgetRunsOut": "2027-07-17", "electricCarChangePercent": 0.06519788486631281, "electricCarChangeYearly": {"2015": 0.004761904761904762, "2016": 0.0, "2017": 0.017937219730941704, "2018": 0.005263157894736842, "2019": 0.03571428571428571, "2020": 0.18354430379746836, "2021": 0.3532934131736527, "2022": 0.4594594594594595}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.988480191, "totalConsumptionEmission": 6080.6, "electricVehiclePerChargePoints": 17.166666666666668, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Mörbylånga", "län": "Kalmar län", "emissions": {"1990": 219728.768293925, "2000": 259745.325040921, "2005": 299893.525486403, "2010": 58804.651909123, "2015": 41702.07066093298, "2016": 47068.44694023102, "2017": 39677.74613877601, "2018": 41923.285130870994, "2019": 43351.231495289, "2020": 40561.4476921646, "2021": 41166.6984468059}, "budget": 87522.09444079142, "emissionBudget": {"2024": 39861.56883315253, "2025": 25278.819964891994, "2026": 16030.948041511994, "2027": 10166.269448754912, "2028": 6447.0943475741915, "2029": 4088.522907644716, "2030": 2592.798967278219, "2031": 1644.2628882301415, "2032": 1042.734311348875, "2033": 661.2658181652199, "2034": 419.35177303992685, "2035": 265.9383030559007, "2036": 168.64881843606378, "2037": 106.95121249195068, "2038": 67.82473757937909, "2039": 43.01208860121957, "2040": 27.27676997900591, "2041": 17.297978421501302, "2042": 10.969776029237511, "2043": 6.956650262787758, "2044": 4.411665539000875, "2045": 2.797724780289372, "2046": 1.7742197084183047, "2047": 1.1251484048457214, "2048": 0.7135299686505335, "2049": 0.45249587873898445, "2050": 0.28695714163625774}, "approximatedHistoricalEmission": {"2021": 41166.6984468059, "2022": 40643.47096043837, "2023": 40252.51989679539, "2024": 39861.56883315253}, "totalApproximatedHistoricalEmission": 121410.12449721298, "trend": {"2024": 39861.56883315253, "2025": 39470.617769509554, "2026": 39079.66670586658, "2027": 38688.71564222372, "2028": 38297.76457858074, "2029": 37906.81351493776, "2030": 37515.8624512949, "2031": 37124.911387651926, "2032": 36733.960324009066, "2033": 36343.00926036609, "2034": 35952.05819672311, "2035": 35561.10713308025, "2036": 35170.156069437275, "2037": 34779.205005794414, "2038": 34388.25394215144, "2039": 33997.30287850846, "2040": 33606.3518148656, "2041": 33215.40075122262, "2042": 32824.44968757976, "2043": 32433.498623936786, "2044": 32042.54756029381, "2045": 31651.59649665095, "2046": 31260.645433007972, "2047": 30869.694369365112, "2048": 30478.743305722135, "2049": 30087.79224207916, "2050": 29696.841178436298}, "trendEmission": 904259.3301506536, "historicalEmissionChangePercent": 0.21479233078449403, "neededEmissionChangePercent": 36.58347951456488, "hitNetZero": "2125-11-22", "budgetRunsOut": "2026-03-22", "electricCarChangePercent": 0.07017005932384283, "electricCarChangeYearly": {"2015": 0.0071174377224199285, "2016": 0.07455012853470437, "2017": 0.025236593059936908, "2018": 0.029535864978902954, "2019": 0.06439393939393939, "2020": 0.19282511210762332, "2021": 0.3484848484848485, "2022": 0.5766871165644172}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Ny Miljö– och klimatstrategi 2023–2030 på väg.", "bicycleMetrePerCapita": 1.776288274, "totalConsumptionEmission": 6056.4, "electricVehiclePerChargePoints": 21.59259259259259, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1mYOB0AiXphXqiUq5N9xPipB1dq_baJDy/view?usp=drive_link"}, {"kommun": "Nacka", "län": "Stockholms län", "emissions": {"1990": 168464.467388288, "2000": 144670.431507586, "2005": 126443.222636513, "2010": 112891.364997748, "2015": 101679.613006958, "2016": 97945.133084173, "2017": 99285.5194227151, "2018": 99850.5609058956, "2019": 97773.2410164195, "2020": 87960.5312273053, "2021": 89603.7420854587}, "budget": 199689.6721202047, "emissionBudget": {"2024": 83933.5283460184, "2025": 55130.62281971452, "2026": 36211.81704598039, "2027": 23785.2508588501, "2028": 15623.02597795843, "2029": 10261.777021247866, "2030": 6740.311882114113, "2031": 4427.284297261416, "2032": 2908.0028627146653, "2033": 1910.0830400224374, "2034": 1254.612664437168, "2035": 824.0756578560263, "2036": 541.2831458827131, "2037": 355.53464202418394, "2038": 233.52820541479514, "2039": 153.389898699506, "2040": 100.75211677858461, "2041": 66.17768915312702, "2042": 43.46793577818689, "2043": 28.55133603176443, "2044": 18.753565693998365, "2045": 12.318030436398372, "2046": 8.090934615202045, "2047": 5.314422892968208, "2048": 3.49070806137015, "2049": 2.2928252070111363, "2050": 1.5060117711024472}, "approximatedHistoricalEmission": {"2021": 89603.7420854587, "2022": 88055.60655205604, "2023": 85994.56744903699, "2024": 83933.5283460184}, "totalApproximatedHistoricalEmission": 260818.80921683158, "trend": {"2024": 83933.5283460184, "2025": 81872.48924299935, "2026": 79811.4501399803, "2027": 77750.41103696171, "2028": 75689.37193394266, "2029": 73628.33283092361, "2030": 71567.29372790502, "2031": 69506.25462488597, "2032": 67445.21552186739, "2033": 65384.176418848336, "2034": 63323.137315829284, "2035": 61262.0982128107, "2036": 59201.05910979211, "2037": 57140.02000677306, "2038": 55078.98090375401, "2039": 53017.94180073496, "2040": 50956.90269771591, "2041": 48895.86359469779, "2042": 46834.82449167874, "2043": 44773.785388659686, "2044": 42712.746285640635, "2045": 40651.70718262158, "2046": 38590.66807960346, "2047": 36529.62897658441, "2048": 34468.58987356536, "2049": 32407.55077054631, "2050": 30346.51166752726}, "trendEmission": 1485640.5201760952, "historicalEmissionChangePercent": -1.997278961361583, "neededEmissionChangePercent": 34.31632875906642, "hitNetZero": "2064-09-11", "budgetRunsOut": "2026-06-15", "electricCarChangePercent": 0.0938950133601959, "electricCarChangeYearly": {"2015": 0.03907103825136612, "2016": 0.07332490518331226, "2017": 0.08524371244157579, "2018": 0.15449183303085298, "2019": 0.21615339918651946, "2020": 0.4942429970785358, "2021": 0.5308678355679977, "2022": 0.6549006168608636}, "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab5d7343c933175d7561/1670425438238/Viable-Cities-Klimatkontrakt-Nacka-FINAL.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities.", "bicycleMetrePerCapita": 1.620929483, "totalConsumptionEmission": 6684.8, "electricVehiclePerChargePoints": 45.32390745501285, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1tfxAMrHDvtlItM7yGBMxdsf0K34-Mau0/view?usp=drive_link"}, {"kommun": "Nora", "län": "Örebro län", "emissions": {"1990": 49081.8298569501, "2000": 40691.8409878484, "2005": 35934.8254261565, "2010": 31937.6612851067, "2015": 26328.8218362731, "2016": 25135.550218529, "2017": 25310.2708682208, "2018": 22520.6684668028, "2019": 21989.4201454407, "2020": 20076.4035160997, "2021": 20293.7181386378}, "budget": 47887.38182367819, "emissionBudget": {"2024": 16334.02433702629, "2025": 11613.379818033964, "2026": 8257.033785127358, "2027": 5870.6946639997705, "2028": 4174.023836500966, "2029": 2967.702458538035, "2030": 2110.0161923837295, "2031": 1500.2071111653102, "2032": 1066.6370165853514, "2033": 758.3716386108588, "2034": 539.1970588930881, "2035": 383.36542865910013, "2036": 272.5702031696664, "2037": 193.79555406394806, "2038": 137.78731621509905, "2039": 97.96584138093773, "2040": 69.65304456973932, "2041": 49.52283928200009, "2042": 35.21040071830973, "2043": 25.034354587067536, "2044": 17.79925524292968, "2045": 12.655148991403264, "2046": 8.997724556943583, "2047": 6.397320747280152, "2048": 4.548451387300859, "2049": 3.2339178915540403, "2050": 2.299293548242016}, "approximatedHistoricalEmission": {"2021": 20293.7181386378, "2022": 18587.19970992254, "2023": 17460.61202347465, "2024": 16334.02433702629}, "totalApproximatedHistoricalEmission": 54361.68297122924, "trend": {"2024": 16334.02433702629, "2025": 15207.436650578398, "2026": 14080.848964130506, "2027": 12954.261277682148, "2028": 11827.673591234256, "2029": 10701.085904785898, "2030": 9574.498218338005, "2031": 8447.910531890113, "2032": 7321.322845441755, "2033": 6194.735158993863, "2034": 5068.14747254597, "2035": 3941.5597860976122, "2036": 2814.97209964972, "2037": 1688.3844132018276, "2038": 561.7967267534696, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 118551.64580983669, "historicalEmissionChangePercent": -4.1391514392205435, "neededEmissionChangePercent": 28.90068253597172, "hitNetZero": "2038-06-28", "budgetRunsOut": "2027-04-23", "electricCarChangePercent": 0.07832037383929294, "electricCarChangeYearly": {"2015": 0.01507537688442211, "2016": 0.010526315789473684, "2017": 0.03048780487804878, "2018": 0.042328042328042326, "2019": 0.08866995073891626, "2020": 0.23369565217391305, "2021": 0.3515151515151515, "2022": 0.6176470588235294}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.316199818, "totalConsumptionEmission": 6066.4, "electricVehiclePerChargePoints": 10.272727272727273, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Norberg", "län": "Västmanlands län", "emissions": {"1990": 36596.1786698589, "2000": 32024.8933873876, "2005": 26131.7638382855, "2010": 24822.6372445789, "2015": 20579.582024379, "2016": 19225.7932702333, "2017": 16763.8699017621, "2018": 16878.0073493709, "2019": 17183.6456484742, "2020": 15474.3418730182, "2021": 15596.1794677321}, "budget": 36051.88604455163, "emissionBudget": {"2024": 12664.488208354218, "2025": 8913.053016486827, "2026": 6272.856255043934, "2027": 4414.730342527854, "2028": 3107.0126916370095, "2029": 2186.6630840392145, "2030": 1538.936566294048, "2031": 1083.0775771373671, "2032": 762.2517157563017, "2033": 536.4598902593049, "2034": 377.55141498301856, "2035": 265.71431255890997, "2036": 187.00524775368592, "2037": 131.61113660245255, "2038": 92.62569626176716, "2039": 65.18840144882745, "2040": 45.87849651833122, "2041": 32.288511391628695, "2042": 22.724109266980346, "2043": 15.992844504796308, "2044": 11.25549399316813, "2045": 7.921426672550347, "2046": 5.574966373459892, "2047": 3.92356722469061, "2048": 2.7613403804465317, "2049": 1.9433847465901075, "2050": 1.3677213790892224}, "approximatedHistoricalEmission": {"2021": 15596.1794677321, "2022": 14238.297831044067, "2023": 13451.393019699259, "2024": 12664.488208354218}, "totalApproximatedHistoricalEmission": 41820.024688786485, "trend": {"2024": 12664.488208354218, "2025": 11877.583397009177, "2026": 11090.67858566437, "2027": 10303.773774319328, "2028": 9516.868962974288, "2029": 8729.96415162948, "2030": 7943.059340284439, "2031": 7156.154528939398, "2032": 6369.24971759459, "2033": 5582.344906249549, "2034": 4795.440094904508, "2035": 4008.5352835597005, "2036": 3221.6304722146597, "2037": 2434.725660869619, "2038": 1647.820849524811, "2039": 860.9160381797701, "2040": 74.01122683472931, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 101945.00109492952, "historicalEmissionChangePercent": -4.341970438623122, "neededEmissionChangePercent": 29.62168806310494, "hitNetZero": "2040-01-31", "budgetRunsOut": "2027-02-27", "electricCarChangePercent": 0.08162202620088913, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.018867924528301886, "2017": 0.024691358024691357, "2018": 0.030303030303030304, "2019": 0.1267605633802817, "2020": 0.3088235294117647, "2021": 0.4262295081967213, "2022": 0.5529411764705883}, "climatePlanLink": "https://opengov.360online.com/Meetings/NORBERG/File/Details/245611.PDF?fileName=Energi-%20och%20klimatstrategi%20f%C3%B6r%20Norbergs%20kommun%202020-2030&fileSize=1674737", "climatePlanYear": 2021, "climatePlanComment": "Energi– och Klimatstrategi. 2020–2030.", "bicycleMetrePerCapita": 3.706902197, "totalConsumptionEmission": 6173.4, "electricVehiclePerChargePoints": 82.5, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Nordanstig", "län": "Gävleborgs län", "emissions": {"1990": 73102.6840231177, "2000": 66074.8367235545, "2005": 65457.7091416699, "2010": 57379.8265386181, "2015": 50388.5605051862, "2016": 49184.7065540763, "2017": 45594.840122593, "2018": 43740.9067022718, "2019": 43380.4967328849, "2020": 39084.2286188825, "2021": 39224.6787840837}, "budget": 92009.27002216871, "emissionBudget": {"2024": 32391.14305498218, "2025": 22779.08643020897, "2026": 16019.403134805978, "2027": 11265.652710949276, "2028": 7922.575512689721, "2029": 5571.55491694381, "2030": 3918.19858867863, "2031": 2755.4749812543296, "2032": 1937.7890631314535, "2033": 1362.751060611168, "2034": 958.3553176813884, "2035": 673.963823235837, "2036": 473.9653723940386, "2037": 333.3163687481954, "2038": 234.4048914677218, "2039": 164.84534903085782, "2040": 115.9275684349245, "2041": 81.52611646154713, "2042": 57.33327934875761, "2043": 40.31965538838202, "2044": 28.354816419080525, "2045": 19.940537844761117, "2046": 14.023192520857961, "2047": 9.861816667533448, "2048": 6.935327161727521, "2049": 4.877272054604686, "2050": 3.4299438425774964}, "approximatedHistoricalEmission": {"2021": 39224.6787840837, "2022": 36384.49622808257, "2023": 34387.81964153238, "2024": 32391.14305498218}, "totalApproximatedHistoricalEmission": 106580.22678914788, "trend": {"2024": 32391.14305498218, "2025": 30394.466468431987, "2026": 28397.789881881792, "2027": 26401.113295331597, "2028": 24404.436708781403, "2029": 22407.760122231673, "2030": 20411.08353568148, "2031": 18414.406949131284, "2032": 16417.73036258109, "2033": 14421.053776030894, "2034": 12424.3771894807, "2035": 10427.700602930505, "2036": 8431.02401638031, "2037": 6434.347429830115, "2038": 4437.6708432799205, "2039": 2440.9942567297257, "2040": 444.317670179531, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 262905.8446363851, "historicalEmissionChangePercent": -4.020381496905394, "neededEmissionChangePercent": 29.6749534539651, "hitNetZero": "2040-03-18", "budgetRunsOut": "2027-02-23", "electricCarChangePercent": 0.07440985234652259, "electricCarChangeYearly": {"2015": 0.020202020202020204, "2016": 0.023076923076923078, "2017": 0.03669724770642202, "2018": 0.04819277108433735, "2019": 0.06422018348623854, "2020": 0.20454545454545456, "2021": 0.41975308641975306, "2022": 0.5555555555555556}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Inom projektet One Planet City Challenge kommer en strategi tas fram.", "bicycleMetrePerCapita": 1.186808953, "totalConsumptionEmission": 6042.8, "electricVehiclePerChargePoints": 20.90909090909091, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Nordmaling", "län": "Västerbottens län", "emissions": {"1990": 48245.8346405811, "2000": 42278.758857396, "2005": 46367.5651262515, "2010": 44885.9450868107, "2015": 36227.1366718942, "2016": 36584.4227133103, "2017": 39560.6595747386, "2018": 38608.8798890543, "2019": 38559.1696294569, "2020": 33537.9653527795, "2021": 33896.0681128131}, "budget": 76124.0771509895, "emissionBudget": {"2024": 33691.840918381, "2025": 21642.621199448557, "2026": 13902.566307300738, "2027": 8930.588774238602, "2028": 5736.740547870943, "2029": 3685.108893214315, "2030": 2367.2026722364403, "2031": 1520.6195132420075, "2032": 976.8000565273964, "2033": 627.4668594760253, "2034": 403.0657626499263, "2035": 258.91727438200155, "2036": 166.32063843048138, "2037": 106.83935567431519, "2038": 68.63037581276436, "2039": 44.08608096214501, "2040": 28.319567124377073, "2041": 18.191634742964403, "2042": 11.685756818527251, "2043": 7.506577300567751, "2044": 4.821998578650939, "2045": 3.0975062750307134, "2046": 1.9897444943957097, "2047": 1.278151778058553, "2048": 0.8210461053444923, "2049": 0.5274152246029089, "2050": 0.3387956137082264}, "approximatedHistoricalEmission": {"2021": 33896.0681128131, "2022": 34698.09880006581, "2023": 34194.96985922335, "2024": 33691.840918381}, "totalApproximatedHistoricalEmission": 102687.02317488621, "trend": {"2024": 33691.840918381, "2025": 33188.71197753865, "2026": 32685.583036696305, "2027": 32182.45409585396, "2028": 31679.325155011495, "2029": 31176.196214169147, "2030": 30673.0672733268, "2031": 30169.938332484453, "2032": 29666.809391642106, "2033": 29163.68045079976, "2034": 28660.551509957295, "2035": 28157.422569114948, "2036": 27654.2936282726, "2037": 27151.164687430253, "2038": 26648.035746587906, "2039": 26144.90680574556, "2040": 25641.777864903095, "2041": 25138.648924060748, "2042": 24635.5199832184, "2043": 24132.391042376054, "2044": 23629.262101533706, "2045": 23126.13316069136, "2046": 22623.004219848895, "2047": 22119.87527900655, "2048": 21616.7463381642, "2049": 21113.617397321854, "2050": 20610.488456479507}, "trendEmission": 705930.2818731864, "historicalEmissionChangePercent": -0.8945756862743416, "neededEmissionChangePercent": 35.76301974155067, "hitNetZero": "2090-12-02", "budgetRunsOut": "2026-04-20", "electricCarChangePercent": 0.08463110138607759, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.009433962264150943, "2017": 0.009708737864077669, "2018": 0.03409090909090909, "2019": 0.043478260869565216, "2020": 0.24489795918367346, "2021": 0.4230769230769231, "2022": 0.6179775280898876}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.052393812, "totalConsumptionEmission": 6118.7, "electricVehiclePerChargePoints": 38.8, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Norrköping", "län": "Östergötlands län", "emissions": {"1990": 517937.4408886, "2000": 753747.793191751, "2005": 701648.423264518, "2010": 752982.796407982, "2015": 575029.197615897, "2016": 587981.674412033, "2017": 562126.750235607, "2018": 567506.055574675, "2019": 561072.598453251, "2020": 511529.0569374, "2021": 543303.129520453}, "budget": 1157838.1280766942, "emissionBudget": {"2024": 504977.43946033344, "2025": 326482.23991515994, "2026": 211080.0298206052, "2027": 136469.22724080077, "2028": 88231.22679833585, "2029": 57043.99108674618, "2030": 36880.55847327461, "2031": 23844.327288254124, "2032": 15416.034012645981, "2033": 9966.903314405006, "2034": 6443.885735929762, "2035": 4166.1549297569245, "2036": 2693.537348429347, "2037": 1741.4483065820823, "2038": 1125.8957319697067, "2039": 727.923530360533, "2040": 470.6232122627842, "2041": 304.2712574641484, "2042": 196.71999958029946, "2043": 127.1850603221464, "2044": 82.22874951026554, "2045": 53.16321924049625, "2046": 34.371529384138604, "2047": 22.222168805473526, "2048": 14.367262535802249, "2049": 9.288842802860167, "2050": 6.005500379855722}, "approximatedHistoricalEmission": {"2021": 543303.129520453, "2022": 522772.98167590424, "2023": 513875.21056811884, "2024": 504977.43946033344}, "totalApproximatedHistoricalEmission": 1560788.4767344163, "trend": {"2024": 504977.43946033344, "2025": 496079.66835255176, "2026": 487181.89724476635, "2027": 478284.12613698095, "2028": 469386.3550291993, "2029": 460488.58392141387, "2030": 451590.81281362846, "2031": 442693.0417058468, "2032": 433795.2705980614, "2033": 424897.499490276, "2034": 415999.7283824943, "2035": 407101.9572747089, "2036": 398204.1861669235, "2037": 389306.4150591418, "2038": 380408.6439513564, "2039": 371510.872843571, "2040": 362613.1017357856, "2041": 353715.3306280039, "2042": 344817.5595202185, "2043": 335919.7884124331, "2044": 327022.01730465144, "2045": 318124.24619686604, "2046": 309226.47508908063, "2047": 300328.70398129895, "2048": 291430.93287351355, "2049": 282533.16176572815, "2050": 273635.39065794647}, "trendEmission": 10121966.79153764, "historicalEmissionChangePercent": -0.8233307650047372, "neededEmissionChangePercent": 35.34716317939478, "hitNetZero": "2080-09-17", "budgetRunsOut": "2026-05-05", "electricCarChangePercent": 0.06870100704679302, "electricCarChangeYearly": {"2015": 0.01238390092879257, "2016": 0.020166898470097356, "2017": 0.035876475930971846, "2018": 0.04690882848207842, "2019": 0.07264854462352659, "2020": 0.23770758710517748, "2021": 0.3519687406071536, "2022": 0.5096185197261167}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete pågår med Färdplan för ett fossilfritt Norrköping 2030", "bicycleMetrePerCapita": 2.278943414, "totalConsumptionEmission": 5986.6, "electricVehiclePerChargePoints": 26.195454545454545, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Norrtälje", "län": "Stockholms län", "emissions": {"1990": 336569.636728402, "2000": 299657.602493262, "2005": 277303.02170194, "2010": 221455.656973771, "2015": 177351.626713251, "2016": 171996.135458601, "2017": 167323.01059202, "2018": 168552.569297901, "2019": 162606.986655903, "2020": 148077.874180643, "2021": 152121.872219682}, "budget": 340083.5388939698, "emissionBudget": {"2024": 136523.90859412588, "2025": 91382.81870342205, "2026": 61167.45147554183, "2027": 40942.6758016237, "2028": 27405.14213620855, "2029": 18343.74038337789, "2030": 12278.455246841568, "2031": 8218.632628779582, "2032": 5501.174286905143, "2033": 3682.2327875969536, "2034": 2464.7170940083, "2035": 1649.7681444689954, "2036": 1104.2788387848564, "2037": 739.1534124818033, "2038": 494.7552628869477, "2039": 331.166393905215, "2040": 221.66753681859075, "2041": 148.37404333147677, "2042": 99.31475330349146, "2043": 66.47672330191797, "2044": 44.49645791754089, "2045": 29.783880264603255, "2046": 19.935958166830403, "2047": 13.344212523643321, "2048": 8.93200148124457, "2049": 5.978670552466063, "2050": 4.001846803315169}, "approximatedHistoricalEmission": {"2021": 152121.872219682, "2022": 145684.03787789308, "2023": 141103.97323600948, "2024": 136523.90859412588}, "totalApproximatedHistoricalEmission": 431110.9015208065, "trend": {"2024": 136523.90859412588, "2025": 131943.84395224229, "2026": 127363.77931035869, "2027": 122783.71466847509, "2028": 118203.6500265915, "2029": 113623.5853847079, "2030": 109043.5207428243, "2031": 104463.4561009407, "2032": 99883.39145905711, "2033": 95303.32681717351, "2034": 90723.26217528991, "2035": 86143.19753340632, "2036": 81563.13289152272, "2037": 76983.06824963912, "2038": 72403.00360775553, "2039": 67822.93896587193, "2040": 63242.87432398833, "2041": 58662.80968210474, "2042": 54082.74504022114, "2043": 49502.68039833754, "2044": 44922.615756453946, "2045": 40342.55111457035, "2046": 35762.48647268675, "2047": 31182.421830803156, "2048": 26602.35718891956, "2049": 22022.292547035962, "2050": 17442.227905152366}, "trendEmission": 2001559.7744906172, "historicalEmissionChangePercent": -2.4555676271958595, "neededEmissionChangePercent": 33.064604108943655, "hitNetZero": "2053-10-15", "budgetRunsOut": "2026-08-09", "electricCarChangePercent": 0.06271267374618099, "electricCarChangeYearly": {"2015": 0.00401965163019205, "2016": 0.0210727969348659, "2017": 0.023076923076923078, "2018": 0.0321285140562249, "2019": 0.07045215562565721, "2020": 0.2041851616994293, "2021": 0.30424799081515497, "2022": 0.47121111846459296}, "climatePlanLink": "https://www.norrtalje.se/globalassets/bo--miljo/miljo--och-klimatstrategi---tillganglighetsanpassad.pdf", "climatePlanYear": 2020, "climatePlanComment": "Miljö– och klimatstrategi.", "bicycleMetrePerCapita": 1.818370128, "totalConsumptionEmission": 6411.6, "electricVehiclePerChargePoints": 25.217821782178216, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Norsjö", "län": "Västerbottens län", "emissions": {"1990": 27224.0253982225, "2000": 24583.8843392498, "2005": 24131.0544741898, "2010": 25074.8999635555, "2015": 21667.9088727906, "2016": 19288.7162847633, "2017": 18644.049785611, "2018": 17192.1855400553, "2019": 17822.7122205345, "2020": 15294.6491567589, "2021": 15373.6263462622}, "budget": 37113.11697129176, "emissionBudget": {"2024": 11963.624157967279, "2025": 8666.933550549758, "2026": 6278.6774457154, "2027": 4548.52806213504, "2028": 3295.1378233561422, "2029": 2387.13120521359, "2030": 1729.334460766377, "2031": 1252.7998757096175, "2032": 907.5789352410674, "2033": 657.4869136435261, "2034": 476.31013108261106, "2035": 345.0583369252251, "2036": 249.9742250096115, "2037": 181.0914459449706, "2038": 131.18997285891885, "2039": 95.03932606487575, "2040": 68.85033438172327, "2041": 49.87796884459423, "2042": 36.13361937023096, "2043": 26.17665632818234, "2044": 18.963429306732873, "2045": 13.737875707383226, "2046": 9.952273183231824, "2047": 7.20982949790727, "2048": 5.223092295785809, "2049": 3.7838194562320173, "2050": 2.7411519587566353}, "approximatedHistoricalEmission": {"2021": 15373.6263462622, "2022": 13941.64697230095, "2023": 12952.635565133998, "2024": 11963.624157967279}, "totalApproximatedHistoricalEmission": 40562.90778954969, "trend": {"2024": 11963.624157967279, "2025": 10974.61275080056, "2026": 9985.601343633607, "2027": 8996.589936466888, "2028": 8007.578529300168, "2029": 7018.567122133216, "2030": 6029.555714966496, "2031": 5040.544307799544, "2032": 4051.5329006328247, "2033": 3062.5214934661053, "2034": 2073.510086299153, "2035": 1084.4986791324336, "2036": 95.48727196571417, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 72402.41221558035, "historicalEmissionChangePercent": -5.3517242929244135, "neededEmissionChangePercent": 27.55595264351447, "hitNetZero": "2036-02-02", "budgetRunsOut": "2027-08-27", "electricCarChangePercent": 0.10225475436076072, "electricCarChangeYearly": {"2015": 0.03278688524590164, "2016": 0.0, "2017": 0.0, "2018": 0.025, "2019": 0.075, "2020": 0.3333333333333333, "2021": 0.38235294117647056, "2022": 0.8367346938775511}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 1.847955759, "totalConsumptionEmission": 6011.2, "electricVehiclePerChargePoints": 12.75, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/197JctRJdPSChyHhWKPk8PviGzZ6RL1mC/view?usp=drive_link"}, {"kommun": "Nybro", "län": "Kalmar län", "emissions": {"1990": 95300.6875167068, "2000": 96408.6450447339, "2005": 86099.360221836, "2010": 70396.3850332982, "2015": 59374.5311168082, "2016": 69660.7866356274, "2017": 68445.6937513486, "2018": 66678.1573308099, "2019": 65055.7470163714, "2020": 64274.4132610901, "2021": 69235.9040374478}, "budget": 137074.1396377142, "emissionBudget": {"2024": 69408.19586661435, "2025": 41831.50699639887, "2026": 25211.359490637118, "2027": 15194.591182690503, "2028": 9157.602202881504, "2029": 5519.179627666086, "2030": 3326.344941349328, "2031": 2004.7491502861594, "2032": 1208.238840660574, "2033": 728.1914028358254, "2034": 438.8724326012398, "2035": 264.5032766759462, "2036": 159.41302796724003, "2037": 96.07636549931273, "2038": 57.90410059493051, "2039": 34.89812346962497, "2040": 21.032690417227773, "2041": 12.67615625728368, "2042": 7.639770959946045, "2043": 4.6044005087818345, "2044": 2.7750182769118124, "2045": 1.672471024731068, "2046": 1.0079787048025577, "2047": 0.607496963661188, "2048": 0.36613130723813525, "2049": 0.2206630520949716, "2050": 0.13299103790705966}, "approximatedHistoricalEmission": {"2021": 69235.9040374478, "2022": 68306.66548962402, "2023": 68857.43067811918, "2024": 69408.19586661435}, "totalApproximatedHistoricalEmission": 206486.1461197743, "trend": {"2024": 69408.19586661435, "2025": 69958.96105510951, "2026": 70509.72624360467, "2027": 71060.49143209984, "2028": 71611.256620595, "2029": 72162.02180909016, "2030": 72712.78699758532, "2031": 73263.55218608049, "2032": 73814.31737457565, "2033": 74365.08256307081, "2034": 74915.84775156598, "2035": 75466.61294006114, "2036": 76017.37812855653, "2037": 76568.1433170517, "2038": 77118.90850554686, "2039": 77669.67369404202, "2040": 78220.43888253719, "2041": 78771.20407103235, "2042": 79321.96925952751, "2043": 79872.73444802267, "2044": 80423.49963651784, "2045": 80974.264825013, "2046": 81525.03001350816, "2047": 82075.79520200333, "2048": 82626.56039049849, "2049": 83177.32557899365, "2050": 83728.09076748881}, "trendEmission": 1990771.7262433413, "historicalEmissionChangePercent": 2.8471130119328287, "neededEmissionChangePercent": 39.731170830619426, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-12-17", "electricCarChangePercent": 0.06330461512168965, "electricCarChangeYearly": {"2015": 0.011695906432748537, "2016": 0.008875739644970414, "2017": 0.042483660130718956, "2018": 0.03184713375796178, "2019": 0.07692307692307693, "2020": 0.1519434628975265, "2021": 0.3191489361702128, "2022": 0.4963768115942029}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Senaste gällde fram till 2022.", "bicycleMetrePerCapita": 4.169016844, "totalConsumptionEmission": 5901.6, "electricVehiclePerChargePoints": 47.1, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Nykvarn", "län": "Stockholms län", "emissions": {"1990": 46243.5412106453, "2000": 44312.1208191897, "2005": 42922.4818952467, "2010": 49485.1010813158, "2015": 44275.3645138667, "2016": 42674.5279068433, "2017": 46564.1859190968, "2018": 42286.1380849706, "2019": 42042.0748638408, "2020": 38093.3022720488, "2021": 38141.8121612654}, "budget": 87115.21328079567, "emissionBudget": {"2024": 35135.653806851245, "2025": 23473.97642313504, "2026": 15682.860838253495, "2027": 10477.650639097696, "2028": 7000.072502537747, "2029": 4676.717780409302, "2030": 3124.4946662577163, "2031": 2087.4612020352706, "2032": 1394.623686530921, "2033": 931.7419768744683, "2034": 622.4927339570854, "2035": 415.88466919696714, "2036": 277.8507260214778, "2037": 185.6308531394775, "2038": 124.01915996658786, "2039": 82.8566576013174, "2040": 55.356170052365385, "2041": 36.98321476604763, "2042": 24.70832380812733, "2043": 16.50752292003941, "2044": 11.028603764128816, "2045": 7.368161872336549, "2046": 4.9226366762341165, "2047": 3.2887920034960962, "2048": 2.197227533463703, "2049": 1.4679580918096593, "2050": 0.9807363718551608}, "approximatedHistoricalEmission": {"2021": 38141.8121612654, "2022": 37427.45519132586, "2023": 36281.55449908879, "2024": 35135.653806851245}, "totalApproximatedHistoricalEmission": 110347.74267447297, "trend": {"2024": 35135.653806851245, "2025": 33989.753114613704, "2026": 32843.85242237616, "2027": 31697.951730138622, "2028": 30552.05103790108, "2029": 29406.15034566354, "2030": 28260.249653426465, "2031": 27114.348961188924, "2032": 25968.448268951382, "2033": 24822.54757671384, "2034": 23676.6468844763, "2035": 22530.74619223876, "2036": 21384.845500001218, "2037": 20238.944807764143, "2038": 19093.0441155266, "2039": 17947.14342328906, "2040": 16801.24273105152, "2041": 15655.342038813978, "2042": 14509.441346576437, "2043": 13363.540654338896, "2044": 12217.639962101355, "2045": 11071.73926986428, "2046": 9925.838577626739, "2047": 8779.937885389198, "2048": 7634.0371931516565, "2049": 6488.1365009141155, "2050": 5342.235808676574}, "trendEmission": 526212.5650018619, "historicalEmissionChangePercent": -2.2551013273896428, "neededEmissionChangePercent": 33.19043797455178, "hitNetZero": "2054-08-22", "budgetRunsOut": "2026-08-03", "electricCarChangePercent": 0.06462434911498847, "electricCarChangeYearly": {"2015": 0.012396694214876033, "2016": 0.005952380952380952, "2017": 0.021052631578947368, "2018": 0.04524886877828054, "2019": 0.078125, "2020": 0.17110266159695817, "2021": 0.34572490706319703, "2022": 0.47619047619047616}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.383318392, "totalConsumptionEmission": 6183.7, "electricVehiclePerChargePoints": 14.933333333333334, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Nyköping", "län": "Södermanlands län", "emissions": {"1990": 443563.802137161, "2000": 309867.350536831, "2005": 271977.984216462, "2010": 286469.653217151, "2015": 240821.748987586, "2016": 229802.923865754, "2017": 224004.237978684, "2018": 230496.996360132, "2019": 229155.909301395, "2020": 211676.642648841, "2021": 213705.500467378}, "budget": 467947.4181825186, "emissionBudget": {"2024": 201569.9292288795, "2025": 131024.32467650296, "2026": 85168.32705457954, "2027": 55361.04804344506, "2028": 35985.74430732386, "2029": 23391.42482157942, "2030": 15204.875311478367, "2031": 9883.460926429974, "2032": 6424.43939086603, "2033": 4176.008970353621, "2034": 2714.4860211877717, "2035": 1764.4680391095676, "2036": 1146.9381078915485, "2037": 745.5317943858545, "2038": 484.60998254035593, "2039": 315.0057944493477, "2040": 204.75981533954783, "2041": 133.09781190271863, "2042": 86.51613356807871, "2043": 56.237148158682515, "2044": 36.55522620567613, "2045": 23.761598991072606, "2046": 15.445495629975666, "2047": 10.039868754002072, "2048": 6.526107482233388, "2049": 4.242095182039649, "2050": 2.7574433278143875}, "approximatedHistoricalEmission": {"2021": 213705.500467378, "2022": 209602.04613400344, "2023": 205585.987681441, "2024": 201569.9292288795}, "totalApproximatedHistoricalEmission": 622825.7486635732, "trend": {"2024": 201569.9292288795, "2025": 197553.87077631708, "2026": 193537.81232375465, "2027": 189521.75387119316, "2028": 185505.69541863073, "2029": 181489.63696606923, "2030": 177473.5785135068, "2031": 173457.5200609453, "2032": 169441.46160838287, "2033": 165425.40315582138, "2034": 161409.34470325895, "2035": 157393.28625069652, "2036": 153377.22779813502, "2037": 149361.1693455726, "2038": 145345.1108930111, "2039": 141329.05244044866, "2040": 137312.99398788717, "2041": 133296.93553532474, "2042": 129280.87708276231, "2043": 125264.81863020081, "2044": 121248.76017763838, "2045": 117232.70172507688, "2046": 113216.64327251446, "2047": 109200.58481995296, "2048": 105184.52636739053, "2049": 101168.4679148281, "2050": 97152.4094622666}, "trendEmission": 3883390.4029848934, "historicalEmissionChangePercent": -1.9085618091939593, "neededEmissionChangePercent": 34.99807973453874, "hitNetZero": "2074-02-26", "budgetRunsOut": "2026-05-18", "electricCarChangePercent": 0.0666231467111337, "electricCarChangeYearly": {"2015": 0.010027347310847767, "2016": 0.016623568526043592, "2017": 0.022958057395143488, "2018": 0.042941757156959526, "2019": 0.07948860478043357, "2020": 0.24525436598329536, "2021": 0.337061894108874, "2022": 0.48012976480129765}, "climatePlanLink": "https://nykoping.se/globalassets/nykoping.se/dokument/styrdokument/program-for-ekologisk-hallbarhet.pdf", "climatePlanYear": 2022, "climatePlanComment": "Program för ekologisk hållbarhet.", "bicycleMetrePerCapita": 2.56992368, "totalConsumptionEmission": 5862.4, "electricVehiclePerChargePoints": 24.54736842105263, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/16zXIRb-G87K_XAdAJMj28s_YY5fhHRpC/view?usp=drive_link"}, {"kommun": "Nynäshamn", "län": "Stockholms län", "emissions": {"1990": 205540.016845714, "2000": 273733.81988272, "2005": 241337.579520957, "2010": 248124.172895533, "2015": 224959.695926808, "2016": 245958.479735467, "2017": 243489.475758763, "2018": 249353.121118981, "2019": 206360.385939602, "2020": 189038.356763127, "2021": 186079.663676732}, "budget": 457749.6877427483, "emissionBudget": {"2024": 163403.5757354796, "2025": 114348.59144684077, "2026": 80020.28295294776, "2027": 55997.591250143305, "2028": 39186.69254971202, "2029": 27422.552268830415, "2030": 19190.095514765828, "2031": 13429.084290028492, "2032": 9397.572030317775, "2033": 6576.3501187186, "2034": 4602.08027610167, "2035": 3220.5011116121623, "2036": 2253.6824191777823, "2037": 1577.1099808652025, "2038": 1103.649684879772, "2039": 772.3257361335072, "2040": 540.4677325297685, "2041": 378.21524810015507, "2042": 264.6721816784556, "2043": 185.21559907040876, "2044": 129.61248107550088, "2045": 90.70183793839564, "2046": 63.47246296913927, "2047": 44.41755147348907, "2048": 31.083067941751327, "2049": 21.75169680949628, "2050": 15.22167358057747}, "approximatedHistoricalEmission": {"2021": 186079.663676732, "2022": 182518.53520077094, "2023": 172961.0554681234, "2024": 163403.5757354796}, "totalApproximatedHistoricalEmission": 530221.2103750001, "trend": {"2024": 163403.5757354796, "2025": 153846.09600283206, "2026": 144288.61627018824, "2027": 134731.1365375407, "2028": 125173.65680489689, "2029": 115616.17707224935, "2030": 106058.69733960181, "2031": 96501.217606958, "2032": 86943.73787431046, "2033": 77386.25814166665, "2034": 67828.77840901911, "2035": 58271.2986763753, "2036": 48713.81894372776, "2037": 39156.33921108395, "2038": 29598.85947843641, "2039": 20041.379745792598, "2040": 10483.90001314506, "2041": 926.4202805012465, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 1397268.1762760654, "historicalEmissionChangePercent": -2.7436825775175984, "neededEmissionChangePercent": 30.02075325943286, "hitNetZero": "2041-01-31", "budgetRunsOut": "2027-01-29", "electricCarChangePercent": 0.07270911712824234, "electricCarChangeYearly": {"2015": 0.009578544061302681, "2016": 0.01794453507340946, "2017": 0.03896103896103896, "2018": 0.05, "2019": 0.09900990099009901, "2020": 0.2222222222222222, "2021": 0.3854166666666667, "2022": 0.5340659340659341}, "climatePlanLink": "https://nynashamn.se/download/18.af2d0f618019134f8d4e5d6/1650369638283/Nyn%C3%A4shamns%20kommuns%20h%C3%A5llbarhetsprogram%202023-2030.pdf", "climatePlanYear": 2022, "climatePlanComment": "Hållbarhetsprogram 2023–2030", "bicycleMetrePerCapita": 3.320688035, "totalConsumptionEmission": 6008.5, "electricVehiclePerChargePoints": 65.46666666666667, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Nässjö", "län": "Jönköpings län", "emissions": {"1990": 120193.268873839, "2000": 104113.565580967, "2005": 93006.2404773299, "2010": 89362.9843097719, "2015": 72923.7488489792, "2016": 73882.1116329813, "2017": 72012.9038103862, "2018": 68441.6666458166, "2019": 68308.8282117844, "2020": 61791.6409509085, "2021": 63097.8564675558}, "budget": 142327.38128361932, "emissionBudget": {"2024": 56344.95934398379, "2025": 37924.98023410485, "2026": 25526.75771716247, "2027": 17181.692792676386, "2028": 11564.749839868144, "2029": 7784.066475437029, "2030": 5239.342980436963, "2031": 3526.5262640389874, "2032": 2373.6540129922137, "2033": 1597.6723130770226, "2034": 1075.370212339896, "2035": 723.8161944239704, "2036": 487.19025066765124, "2037": 327.9207375768939, "2038": 220.7187233028799, "2039": 148.56259221797387, "2040": 99.99534011547091, "2041": 67.30542255306021, "2042": 45.302310085798865, "2043": 30.49233213701232, "2044": 20.523949383440794, "2045": 13.814374591005365, "2046": 9.29825647955391, "2047": 6.258522453550622, "2048": 4.212521281567882, "2049": 2.835387374474453, "2050": 1.9084583853631936}, "approximatedHistoricalEmission": {"2021": 63097.8564675558, "2022": 60442.29463734245, "2023": 58393.62699066335, "2024": 56344.95934398379}, "totalApproximatedHistoricalEmission": 178557.3295337756, "trend": {"2024": 56344.95934398379, "2025": 54296.291697304696, "2026": 52247.6240506256, "2027": 50198.95640394604, "2028": 48150.28875726694, "2029": 46101.62111058785, "2030": 44052.953463908285, "2031": 42004.28581722919, "2032": 39955.61817054963, "2033": 37906.95052387053, "2034": 35858.282877191436, "2035": 33809.615230511874, "2036": 31760.947583832778, "2037": 29712.279937153682, "2038": 27663.61229047412, "2039": 25614.944643795025, "2040": 23566.27699711593, "2041": 21517.609350436367, "2042": 19468.94170375727, "2043": 17420.274057078175, "2044": 15371.606410398614, "2045": 13322.938763719518, "2046": 11274.271117040422, "2047": 9225.60347036086, "2048": 7176.935823681764, "2049": 5128.268177002668, "2050": 3079.6005303235725}, "trendEmission": 772519.2783659929, "historicalEmissionChangePercent": -2.2993177935836298, "neededEmissionChangePercent": 32.69144094580968, "hitNetZero": "2051-06-26", "budgetRunsOut": "2026-08-27", "electricCarChangePercent": 0.06298481115583551, "electricCarChangeYearly": {"2015": 0.012770137524557957, "2016": 0.026196928635953028, "2017": 0.028130671506352088, "2018": 0.03619441571871768, "2019": 0.052361396303901436, "2020": 0.18317503392130258, "2021": 0.2973651191969887, "2022": 0.5061391541609823}, "climatePlanLink": "https://nassjo.se/download/18.5887ffce168e1d826e1aa9a/1551969829610/Energi-%20och%20klimatstrategi.pdf", "climatePlanYear": 2016, "climatePlanComment": "Energi– och Klimatstrategi.", "bicycleMetrePerCapita": 2.650691253, "totalConsumptionEmission": 5824.9, "electricVehiclePerChargePoints": 19.131147540983605, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1R8oO0VhRS0wXPFlYKaNkecRML92FkWWq/view?usp=drive_link"}, {"kommun": "Ockelbo", "län": "Gävleborgs län", "emissions": {"1990": 33030.8623953715, "2000": 31089.6200377556, "2005": 27368.9309680304, "2010": 23947.2197388662, "2015": 21516.0298922006, "2016": 20308.5795738902, "2017": 19038.1730877274, "2018": 16108.1042229171, "2019": 16296.3245001624, "2020": 14764.4940629392, "2021": 14328.4594416561}, "budget": 36247.027634935635, "emissionBudget": {"2024": 9895.866905692033, "2025": 7531.583921723788, "2026": 5732.166460054206, "2027": 4362.658992751431, "2028": 3320.3490547019014, "2029": 2527.063853346642, "2030": 1923.3073431987448, "2031": 1463.7980482778091, "2032": 1114.0729710823482, "2033": 847.9028827484103, "2034": 645.3251422791435, "2035": 491.1465071420967, "2036": 373.80364667945474, "2037": 284.4958973319802, "2038": 216.5252166952098, "2039": 164.79383324884756, "2040": 125.42191570728839, "2041": 95.45658735865446, "2042": 72.65046159417682, "2043": 55.29308888883534, "2044": 42.08267383002703, "2045": 32.028441027139415, "2046": 24.376327387662297, "2047": 18.55242771282541, "2048": 14.119952057003456, "2049": 10.746466671542304, "2050": 8.178961618023955}, "approximatedHistoricalEmission": {"2021": 14328.4594416561, "2022": 12423.919117199257, "2023": 11159.893011445645, "2024": 9895.866905692033}, "totalApproximatedHistoricalEmission": 35695.97530231897, "trend": {"2024": 9895.866905692033, "2025": 8631.840799938422, "2026": 7367.81469418481, "2027": 6103.788588431198, "2028": 4839.762482677586, "2029": 3575.7363769239746, "2030": 2311.710271170363, "2031": 1047.684165416751, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 38826.27083158912, "historicalEmissionChangePercent": -6.407084894383385, "neededEmissionChangePercent": 23.89162067861206, "hitNetZero": "2031-10-28", "budgetRunsOut": "2029-11-04", "electricCarChangePercent": 0.06545456857956859, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.011111111111111112, "2018": 0.0, "2019": 0.05555555555555555, "2020": 0.23333333333333334, "2021": 0.3076923076923077, "2022": 0.4625}, "climatePlanLink": "https://sandviken.se/download/18.69cc24a417ffd93f9a4c073f/1650969435744/Miljo%CC%88strategiskt%20program_Ockelbo%202022-2026.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljöstrategiskt program 2022–2026", "bicycleMetrePerCapita": 2.931178356, "totalConsumptionEmission": 5936.7, "electricVehiclePerChargePoints": 4.36, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Olofström", "län": "Blekinge län", "emissions": {"1990": 71148.9069419255, "2000": 64587.0780542397, "2005": 53666.4086992092, "2010": 40225.1201519883, "2015": 34661.6664403284, "2016": 34600.7860975629, "2017": 33821.644007655, "2018": 31697.7385965136, "2019": 31984.1983137485, "2020": 27907.544386694, "2021": 29250.7309323134}, "budget": 66333.60311984678, "emissionBudget": {"2024": 25248.457902182825, "2025": 17255.597957648217, "2026": 11793.023638495217, "2027": 8059.726871213083, "2028": 5508.273300369895, "2029": 3764.5289023300575, "2030": 2572.7986037887194, "2031": 1758.3322714191856, "2032": 1201.7001144828234, "2033": 821.2800212001355, "2034": 561.288848268755, "2035": 383.60262402400895, "2036": 262.16621550914283, "2037": 179.17271741625152, "2038": 122.45232515554387, "2039": 83.68780778807896, "2040": 57.19490555592248, "2041": 39.088814822759296, "2042": 26.714537411973268, "2043": 18.257563253623896, "2044": 12.47779854165385, "2045": 8.52772378675426, "2046": 5.828117254851568, "2047": 3.983120418259547, "2048": 2.7221909876897574, "2049": 1.860431770902204, "2050": 1.271478154851925}, "approximatedHistoricalEmission": {"2021": 29250.7309323134, "2022": 27495.367590732407, "2023": 26371.912746457383, "2024": 25248.457902182825}, "totalApproximatedHistoricalEmission": 81116.8747544379, "trend": {"2024": 25248.457902182825, "2025": 24125.003057908267, "2026": 23001.54821363371, "2027": 21878.09336935915, "2028": 20754.638525084592, "2029": 19631.18368080957, "2030": 18507.72883653501, "2031": 17384.273992260452, "2032": 16260.819147985894, "2033": 15137.364303711336, "2034": 14013.909459436312, "2035": 12890.454615161754, "2036": 11766.999770887196, "2037": 10643.544926612638, "2038": 9520.09008233808, "2039": 8396.635238063522, "2040": 7273.180393788498, "2041": 6149.72554951394, "2042": 5026.270705239382, "2043": 3902.8158609648235, "2044": 2779.3610166902654, "2045": 1655.9061724157073, "2046": 532.4513281406835, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 283856.2271976322, "historicalEmissionChangePercent": -2.622716034918423, "neededEmissionChangePercent": 31.65682425239757, "hitNetZero": "2046-06-16", "budgetRunsOut": "2026-10-20", "electricCarChangePercent": 0.04848084661477944, "electricCarChangeYearly": {"2015": 0.00847457627118644, "2016": 0.006896551724137931, "2017": 0.010958904109589041, "2018": 0.03058103975535168, "2019": 0.015625, "2020": 0.13025210084033614, "2021": 0.2804878048780488, "2022": 0.3458333333333333}, "climatePlanLink": "/data/climatePlans/Olofstr%C3%B6m_Handlingsplan%20f%C3%B6r%20klimat%20och%20energi.pdf", "climatePlanYear": 2023, "climatePlanComment": "Ny Handlingsplan för klimat och energi beslutad men ej publicerad", "bicycleMetrePerCapita": 3.389695099, "totalConsumptionEmission": 5971.9, "electricVehiclePerChargePoints": 2.2611940298507465, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Orsa", "län": "Dalarnas län", "emissions": {"1990": 32380.0540567679, "2000": 30309.2652884447, "2005": 29245.6610250897, "2010": 26370.4544183661, "2015": 22934.0955734713, "2016": 22191.9040271436, "2017": 20202.0788872682, "2018": 19470.0533143265, "2019": 19874.5807684836, "2020": 18257.6023550341, "2021": 18256.261785925}, "budget": 41824.01810988129, "emissionBudget": {"2024": 15406.024639026495, "2025": 10659.00542780482, "2026": 7374.673179618638, "2027": 5102.333878573417, "2028": 3530.164710266431, "2029": 2442.4240314698486, "2030": 1689.8461230867617, "2031": 1169.1581326248547, "2032": 808.9084091194828, "2033": 559.6615171937284, "2034": 387.21443651270084, "2035": 267.9030364561372, "2036": 185.35475481959267, "2037": 128.24186537302032, "2038": 88.72702537552308, "2039": 61.387792583099355, "2040": 42.472528097005544, "2041": 29.38557597602167, "2042": 20.331073146159678, "2043": 14.066511257488582, "2044": 9.732232899591338, "2045": 6.733464714746801, "2046": 4.658699348085273, "2047": 3.2232261599764316, "2048": 2.230061676469075, "2049": 1.5429184407253687, "2050": 1.0675029035518335}, "approximatedHistoricalEmission": {"2021": 18256.261785925, "2022": 16993.85341228661, "2023": 16199.939025656553, "2024": 15406.024639026495}, "totalApproximatedHistoricalEmission": 50024.93565041891, "trend": {"2024": 15406.024639026495, "2025": 14612.110252396436, "2026": 13818.195865766145, "2027": 13024.281479136087, "2028": 12230.367092506029, "2029": 11436.45270587597, "2030": 10642.538319245912, "2031": 9848.623932615621, "2032": 9054.709545985563, "2033": 8260.795159355504, "2034": 7466.880772725446, "2035": 6672.966386095388, "2036": 5879.051999465097, "2037": 5085.137612835038, "2038": 4291.22322620498, "2039": 3497.308839574922, "2040": 2703.3944529448636, "2041": 1909.4800663145725, "2042": 1115.5656796845142, "2043": 321.6512930544559, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 149573.7470012958, "historicalEmissionChangePercent": -3.6486198531800675, "neededEmissionChangePercent": 30.812745808523122, "hitNetZero": "2043-05-23", "budgetRunsOut": "2026-12-09", "electricCarChangePercent": 0.06616169766656933, "electricCarChangeYearly": {"2015": 0.008771929824561403, "2016": 0.0, "2017": 0.0, "2018": 0.019230769230769232, "2019": 0.04819277108433735, "2020": 0.15476190476190477, "2021": 0.27848101265822783, "2022": 0.5333333333333333}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.911915595, "totalConsumptionEmission": 5669.7, "electricVehiclePerChargePoints": 7.368421052631579, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1hESt5-M_HD0dtK51ACwswZJIkQlIEMJA/view?usp=drive_link"}, {"kommun": "Orust", "län": "Västra Götalands län", "emissions": {"1990": 73590.9455209839, "2000": 64884.4377361936, "2005": 53707.2899721604, "2010": 49038.5519843983, "2015": 41027.7122944939, "2016": 40683.0762472657, "2017": 40395.155463634, "2018": 39852.5209527997, "2019": 39324.0943420148, "2020": 36658.7861576455, "2021": 38514.0563417962}, "budget": 81895.0073069432, "emissionBudget": {"2024": 35923.49829445989, "2025": 23167.224355189817, "2026": 14940.646368131498, "2027": 9635.28951397907, "2028": 6213.841204100836, "2029": 4007.333921182392, "2030": 2584.347528105652, "2031": 1666.657253273057, "2032": 1074.8346999305475, "2033": 693.1656943297845, "2034": 447.02564945729733, "2035": 288.288836143188, "2036": 185.91875688943702, "2037": 119.89983596224091, "2038": 77.3239392533236, "2039": 49.86655347497385, "2040": 32.15916286062138, "2041": 20.739587635929198, "2042": 13.375052614789231, "2043": 8.625631116139855, "2044": 5.562707997832619, "2045": 3.5874152108418618, "2046": 2.313540077960925, "2047": 1.492012320223001, "2048": 0.9622054032706585, "2049": 0.6205305583166174, "2050": 0.4001829261152258}, "approximatedHistoricalEmission": {"2021": 38514.0563417962, "2022": 37113.541805813555, "2023": 36518.520050136605, "2024": 35923.49829445989}, "totalApproximatedHistoricalEmission": 110850.8391740782, "trend": {"2024": 35923.49829445989, "2025": 35328.47653878294, "2026": 34733.45478310599, "2027": 34138.43302742927, "2028": 33543.411271752324, "2029": 32948.389516075375, "2030": 32353.367760398425, "2031": 31758.34600472171, "2032": 31163.32424904476, "2033": 30568.30249336781, "2034": 29973.28073769086, "2035": 29378.258982014144, "2036": 28783.237226337194, "2037": 28188.215470660245, "2038": 27593.193714983296, "2039": 26998.17195930658, "2040": 26403.15020362963, "2041": 25808.12844795268, "2042": 25213.10669227573, "2043": 24618.084936599014, "2044": 24023.063180922065, "2045": 23428.041425245116, "2046": 22833.019669568166, "2047": 22237.99791389145, "2048": 21642.9761582145, "2049": 21047.95440253755, "2050": 20452.932646860834}, "trendEmission": 732893.6022371672, "historicalEmissionChangePercent": -0.988979869153927, "neededEmissionChangePercent": 35.50955375979444, "hitNetZero": "2084-05-01", "budgetRunsOut": "2026-04-29", "electricCarChangePercent": 0.07628487606585559, "electricCarChangeYearly": {"2015": 0.027210884353741496, "2016": 0.0273972602739726, "2017": 0.030120481927710843, "2018": 0.1422924901185771, "2019": 0.11884057971014493, "2020": 0.23728813559322035, "2021": 0.41566265060240964, "2022": 0.5798611111111112}, "climatePlanLink": "https://www.orust.se/download/18.1c4985fe183bfdb97a25a9/1665396992481/Energi-%20och%20klimatstrategi%202017-2030%20Orust.pdf", "climatePlanYear": 2018, "climatePlanComment": "Klimatstrategi till 2030", "bicycleMetrePerCapita": 1.250142775, "totalConsumptionEmission": 6443.1, "electricVehiclePerChargePoints": 22.2, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Osby", "län": "Skåne län", "emissions": {"1990": 67164.9591074885, "2000": 56325.0420090064, "2005": 49410.7915631143, "2010": 43644.4727691474, "2015": 35582.2819262466, "2016": 34750.4706627612, "2017": 36691.8243825544, "2018": 35799.9546297934, "2019": 36152.5280506998, "2020": 32266.0745108154, "2021": 31969.8315052147}, "budget": 72047.52546295305, "emissionBudget": {"2024": 31242.11511711753, "2025": 20249.59903513643, "2026": 13124.791952998545, "2027": 8506.843197763828, "2028": 5513.716442172449, "2029": 3573.719216156971, "2030": 2316.3086404380874, "2031": 1501.3170854362047, "2032": 973.0797319809532, "2033": 630.702317303615, "2034": 408.7901535492428, "2035": 264.95762747985657, "2036": 171.73247386277333, "2037": 111.30852453481552, "2038": 72.1446989927939, "2039": 46.760637736536005, "2040": 30.30794045929773, "2041": 19.644113069198347, "2042": 12.732345795442113, "2043": 8.252478942859602, "2044": 5.348850070245546, "2045": 3.4668609604536518, "2046": 2.247048386339583, "2047": 1.4564260027003255, "2048": 0.9439835449191293, "2049": 0.61184360305701, "2050": 0.3965668645567913}, "approximatedHistoricalEmission": {"2021": 31969.8315052147, "2022": 32409.64653846319, "2023": 31825.88082779036, "2024": 31242.11511711753}, "totalApproximatedHistoricalEmission": 95841.50067741967, "trend": {"2024": 31242.11511711753, "2025": 30658.349406444468, "2026": 30074.58369577164, "2027": 29490.81798509881, "2028": 28907.052274425747, "2029": 28323.286563752918, "2030": 27739.52085308009, "2031": 27155.755142407026, "2032": 26571.989431734197, "2033": 25988.223721061135, "2034": 25404.458010388305, "2035": 24820.692299715476, "2036": 24236.926589042414, "2037": 23653.160878369585, "2038": 23069.395167696755, "2039": 22485.629457023693, "2040": 21901.863746350864, "2041": 21318.098035678035, "2042": 20734.332325004973, "2043": 20150.566614332143, "2044": 19566.80090365908, "2045": 18983.03519298625, "2046": 18399.269482313422, "2047": 17815.50377164036, "2048": 17231.73806096753, "2049": 16647.9723502947, "2050": 16064.20663962164}, "trendEmission": 614982.1828376092, "historicalEmissionChangePercent": -1.6442169496533257, "neededEmissionChangePercent": 35.18492919180848, "hitNetZero": "2077-06-25", "budgetRunsOut": "2026-05-11", "electricCarChangePercent": 0.054337783814488456, "electricCarChangeYearly": {"2015": 0.0035714285714285713, "2016": 0.0033222591362126247, "2017": 0.020289855072463767, "2018": 0.02962962962962963, "2019": 0.02464788732394366, "2020": 0.24279835390946503, "2021": 0.2384937238493724, "2022": 0.39299610894941633}, "climatePlanLink": "https://www.osby.se/bygga-bo--miljo/natur-och-hallbarhet/klimatarbete.html", "climatePlanYear": 2021, "climatePlanComment": "Klimat– och energiplan. Gäller till 2030.", "bicycleMetrePerCapita": 2.069387541, "totalConsumptionEmission": 5941.6, "electricVehiclePerChargePoints": 21.944444444444443, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Oskarshamn", "län": "Kalmar län", "emissions": {"1990": 140317.370052916, "2000": 156443.271475327, "2005": 133868.012883387, "2010": 124345.444732144, "2015": 88235.6495382573, "2016": 85887.5420799182, "2017": 87244.8672949804, "2018": 83547.5707263416, "2019": 82289.5083817386, "2020": 75525.3148917755, "2021": 72186.9558804449}, "budget": 170309.080913349, "emissionBudget": {"2024": 66311.22391414363, "2025": 44925.29731196658, "2026": 30436.51164065015, "2027": 20620.481026948615, "2028": 13970.202722405835, "2029": 9464.695020938405, "2030": 6412.251391005546, "2031": 4344.246466525435, "2032": 2943.190497551471, "2033": 1993.986844813046, "2034": 1350.909341612521, "2035": 915.2297338386309, "2036": 620.0604584630908, "2037": 420.0857532642692, "2038": 284.6045699043927, "2039": 192.8172059658226, "2040": 130.63203773908424, "2041": 88.50210850420838, "2042": 59.9594352599401, "2043": 40.62201384185095, "2044": 27.521073229154013, "2045": 18.645295987372595, "2046": 12.632031445941513, "2047": 8.558095219261832, "2048": 5.798037639107019, "2049": 3.9281218078572917, "2050": 2.6612695359701912}, "approximatedHistoricalEmission": {"2021": 72186.9558804449, "2022": 71584.50207578391, "2023": 68947.8629949633, "2024": 66311.22391414363}, "totalApproximatedHistoricalEmission": 209781.45496804148, "trend": {"2024": 66311.22391414363, "2025": 63674.584833323024, "2026": 61037.94575250242, "2027": 58401.306671682745, "2028": 55764.66759086214, "2029": 53128.028510042466, "2030": 50491.38942922186, "2031": 47854.75034840219, "2032": 45218.11126758158, "2033": 42581.47218676098, "2034": 39944.8331059413, "2035": 37308.1940251207, "2036": 34671.554944301024, "2037": 32034.91586348042, "2038": 29398.276782660745, "2039": 26761.63770184014, "2040": 24124.998621020466, "2041": 21488.35954019986, "2042": 18851.720459379256, "2043": 16215.081378559582, "2044": 13578.442297738977, "2045": 10941.803216919303, "2046": 8305.164136098698, "2047": 5668.525055279024, "2048": 3031.885974458419, "2049": 395.2468936378136, "2050": 0}, "trendEmission": 834028.508544087, "historicalEmissionChangePercent": -3.2441081124993674, "neededEmissionChangePercent": 32.25083981237694, "hitNetZero": "2049-02-17", "budgetRunsOut": "2026-09-18", "electricCarChangePercent": 0.059555147704511514, "electricCarChangeYearly": {"2015": 0.018820577164366373, "2016": 0.04535398230088496, "2017": 0.05046343975283213, "2018": 0.026573426573426574, "2019": 0.03732303732303732, "2020": 0.18126272912423624, "2021": 0.35523613963039014, "2022": 0.45454545454545453}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Hade energi– och klimatprogram som gällde fram till 2020", "bicycleMetrePerCapita": 3.578830864, "totalConsumptionEmission": 5958.5, "electricVehiclePerChargePoints": 12.261538461538462, "procurementScore": "2", "procurementLink": "https://www.oskarshamn.se/bygga-bo-miljo/bygglov-boende-miljo/mat-maltider-och-menyer/"}, {"kommun": "Ovanåker", "län": "Gävleborgs län", "emissions": {"1990": 55070.0507670514, "2000": 54013.0875900965, "2005": 52545.0393688581, "2010": 46139.5689243925, "2015": 37689.4311492684, "2016": 36429.588005217, "2017": 33423.3983045009, "2018": 30885.8679604991, "2019": 30936.151676955, "2020": 29673.3740245393, "2021": 28308.7374505601}, "budget": 67347.38093476513, "emissionBudget": {"2024": 23019.13072057115, "2025": 16354.91838828733, "2026": 11620.045897237178, "2027": 8255.95478058746, "2028": 5865.793469482862, "2029": 4167.601923829759, "2030": 2961.049666319187, "2031": 2103.8034070086796, "2032": 1494.7364192114928, "2033": 1061.9989279768185, "2034": 754.5422112741948, "2035": 536.0965379495927, "2036": 380.89253816059926, "2037": 270.6212694103704, "2038": 192.27436644191013, "2039": 136.60948406304843, "2040": 97.0600058724442, "2041": 68.96040055030919, "2042": 48.995843358064384, "2043": 34.81117637384747, "2044": 24.73307769549107, "2045": 17.572664759205523, "2046": 12.485245489513787, "2047": 8.870672551342288, "2048": 6.302545799297841, "2049": 4.477911152997779, "2050": 3.181522028189915}, "approximatedHistoricalEmission": {"2021": 28308.7374505601, "2022": 26172.11326950183, "2023": 24595.62199503649, "2024": 23019.13072057115}, "totalApproximatedHistoricalEmission": 76431.66935010394, "trend": {"2024": 23019.13072057115, "2025": 21442.639446106274, "2026": 19866.148171640933, "2027": 18289.65689717559, "2028": 16713.16562271025, "2029": 15136.67434824491, "2030": 13560.183073779568, "2031": 11983.691799314693, "2032": 10407.200524849351, "2033": 8830.70925038401, "2034": 7254.217975918669, "2035": 5677.726701453328, "2036": 4101.235426987987, "2037": 2524.744152522646, "2038": 948.2528780577704, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 168245.81162943156, "historicalEmissionChangePercent": -4.617461034197268, "neededEmissionChangePercent": 28.950755843826514, "hitNetZero": "2038-08-04", "budgetRunsOut": "2027-04-19", "electricCarChangePercent": 0.06444507425844531, "electricCarChangeYearly": {"2015": 0.011764705882352941, "2016": 0.013888888888888888, "2017": 0.006097560975609756, "2018": 0.027777777777777776, "2019": 0.0625, "2020": 0.2457627118644068, "2021": 0.33043478260869563, "2022": 0.45132743362831856}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.630530428, "totalConsumptionEmission": 6103.6, "electricVehiclePerChargePoints": 79.66666666666667, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Oxelösund", "län": "Södermanlands län", "emissions": {"1990": 2274416.97155665, "2000": 2483106.92118653, "2005": 2605028.42337066, "2010": 2234728.95092309, "2015": 2245099.20923779, "2016": 1580315.92454898, "2017": 1594858.99272982, "2018": 1522486.07942995, "2019": 2134622.51519872, "2020": 1550724.29560151, "2021": 1689173.9907568}, "budget": 3648775.938341804, "emissionBudget": {"2024": 1505212.560171485, "2025": 996415.2179281667, "2026": 659603.3761542118, "2027": 436641.87981661275, "2028": 289046.6272647017, "2029": 191342.05076294814, "2030": 126663.9252519022, "2031": 83848.53144537433, "2032": 55505.75044602405, "2033": 36743.49782242087, "2034": 24323.329049286927, "2035": 16101.47022200145, "2036": 10658.793571581444, "2037": 7055.869981757716, "2038": 4670.819531790881, "2039": 3091.972379729757, "2040": 2046.8127984696741, "2041": 1354.941803311135, "2042": 896.9395206697155, "2043": 593.7528104699584, "2044": 393.05035826467133, "2045": 260.1900680010385, "2046": 172.23968904462433, "2047": 114.01861227873798, "2048": 75.47763246716637, "2049": 49.96441273045553, "2050": 33.07526293415844}, "approximatedHistoricalEmission": {"2021": 1689173.9907568, "2022": 1590012.2309478223, "2023": 1547612.3955596536, "2024": 1505212.560171485}, "totalApproximatedHistoricalEmission": 4734817.901971619, "trend": {"2024": 1505212.560171485, "2025": 1462812.7247833163, "2026": 1420412.8893951476, "2027": 1378013.0540069789, "2028": 1335613.2186188102, "2029": 1293213.3832306415, "2030": 1250813.5478424728, "2031": 1208413.712454304, "2032": 1166013.8770661354, "2033": 1123614.0416779518, "2034": 1081214.2062897831, "2035": 1038814.3709016144, "2036": 996414.5355134457, "2037": 954014.700125277, "2038": 911614.8647371083, "2039": 869215.0293489397, "2040": 826815.193960771, "2041": 784415.3585726023, "2042": 742015.5231844336, "2043": 699615.68779625, "2044": 657215.8524080813, "2045": 614816.0170199126, "2046": 572416.1816317439, "2047": 530016.3462435752, "2048": 487616.5108554065, "2049": 445216.67546723783, "2050": 402816.84007906914}, "trendEmission": 24804382.203257218, "historicalEmissionChangePercent": -1.9078838437464463, "neededEmissionChangePercent": 33.802358265290586, "hitNetZero": "2059-06-23", "budgetRunsOut": "2026-07-07", "electricCarChangePercent": 0.06918068895426813, "electricCarChangeYearly": {"2015": 0.007905138339920948, "2016": 0.013574660633484163, "2017": 0.014218009478672985, "2018": 0.023148148148148147, "2019": 0.049107142857142856, "2020": 0.21951219512195122, "2021": 0.36809815950920244, "2022": 0.4931506849315068}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 4.679544476, "totalConsumptionEmission": 6190.4, "electricVehiclePerChargePoints": 28.09090909090909, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Pajala", "län": "Norrbottens län", "emissions": {"1990": 60141.3982161159, "2000": 57047.6387542626, "2005": 52391.5637725386, "2010": 39625.1063811541, "2015": 34742.2370906464, "2016": 31878.3239872764, "2017": 33513.8100581474, "2018": 35567.2390916245, "2019": 49423.4977847687, "2020": 62510.2046629935, "2021": 61688.0519093829}, "budget": 91631.55806679482, "emissionBudget": {"2024": 78048.52926946618, "2025": 33300.28894093975, "2026": 14207.945414596003, "2027": 6061.980821312443, "2028": 2586.412771561509, "2029": 1103.5223010567329, "2030": 470.83028753926993, "2031": 200.88507450373206, "2032": 85.70989213391289, "2033": 36.569096174790744, "2034": 15.602619041355265, "2035": 6.657034119357873, "2036": 2.840299000368695, "2037": 1.2118457359316597, "2038": 0.517047707831151, "2039": 0.2206042603004413, "2040": 0.09412330608106573, "2041": 0.040158774520331696, "2042": 0.017134195961899662, "2043": 0.007310498758176594, "2044": 0.0031191070892465896, "2045": 0.0013308023646549242, "2046": 0.0005678019007032335, "2047": 0.00024225911149910112, "2048": 0.00010336259359407898, "2049": 4.4100821176067e-05, "2050": 1.881611481268839e-05}, "approximatedHistoricalEmission": {"2021": 61688.0519093829, "2022": 66762.03687416017, "2023": 72405.28307181224, "2024": 78048.52926946618}, "totalApproximatedHistoricalEmission": 209035.61053539696, "trend": {"2024": 78048.52926946618, "2025": 83691.77546711825, "2026": 89335.02166477032, "2027": 94978.26786242239, "2028": 100621.51406007633, "2029": 106264.7602577284, "2030": 111908.00645538047, "2031": 117551.25265303254, "2032": 123194.49885068461, "2033": 128837.74504833855, "2034": 134480.99124599062, "2035": 140124.2374436427, "2036": 145767.48364129476, "2037": 151410.7298389487, "2038": 157053.97603660077, "2039": 162697.22223425284, "2040": 168340.4684319049, "2041": 173983.71462955698, "2042": 179626.96082721092, "2043": 185270.207024863, "2044": 190913.45322251506, "2045": 196556.69942016713, "2046": 202199.94561782107, "2047": 207843.19181547314, "2048": 213486.4380131252, "2049": 219129.68421077728, "2050": 224772.93040842935}, "trendEmission": 3936678.9758126447, "historicalEmissionChangePercent": 11.189267926082792, "neededEmissionChangePercent": 57.33386746344835, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-02-16", "electricCarChangePercent": 0.04653639904835516, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.0, "2018": 0.021505376344086023, "2019": 0.06976744186046512, "2020": 0.15151515151515152, "2021": 0.15625, "2022": 0.375}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.945928683, "totalConsumptionEmission": 6688.8, "electricVehiclePerChargePoints": 6.3, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Partille", "län": "Västra Götalands län", "emissions": {"1990": 73790.4857507834, "2000": 62794.0661392042, "2005": 56777.7400907646, "2010": 58725.9807222667, "2015": 51208.7318087612, "2016": 49399.7345490473, "2017": 41950.6965292812, "2018": 47410.9257597881, "2019": 47326.4035831242, "2020": 42763.6569054246, "2021": 42692.4197822988}, "budget": 95609.72156010623, "emissionBudget": {"2024": 38940.641778362915, "2025": 25913.161591079406, "2026": 17243.987591866102, "2027": 11475.060926984554, "2028": 7636.112156570962, "2029": 5081.472703174026, "2030": 3381.480562838925, "2031": 2250.2159245517964, "2032": 1497.4126312456021, "2033": 996.45752380874, "2034": 663.0955129108887, "2035": 441.25880806430604, "2036": 293.636937519887, "2037": 195.40154100106375, "2038": 130.03051505740663, "2039": 86.52917863120838, "2040": 57.5810897256389, "2041": 38.317501060806904, "2042": 25.498490816008037, "2043": 16.968043737045186, "2044": 11.291433298535628, "2045": 7.51391662533994, "2046": 5.000157336968208, "2047": 3.3273690195232764, "2048": 2.2142072430857316, "2049": 1.4734505510410005, "2050": 0.9805118889130845}, "approximatedHistoricalEmission": {"2021": 42692.4197822988, "2022": 41329.597800705116, "2023": 40135.11978953378, "2024": 38940.641778362915}, "totalApproximatedHistoricalEmission": 122281.24837056975, "trend": {"2024": 38940.641778362915, "2025": 37746.16376719158, "2026": 36551.68575602071, "2027": 35357.207744849846, "2028": 34162.72973367851, "2029": 32968.251722507644, "2030": 31773.773711336777, "2031": 30579.295700165443, "2032": 29384.817688994575, "2033": 28190.339677823707, "2034": 26995.861666652374, "2035": 25801.383655481506, "2036": 24606.905644310173, "2037": 23412.427633139305, "2038": 22217.949621968437, "2039": 21023.471610797103, "2040": 19828.993599626236, "2041": 18634.515588455368, "2042": 17440.037577284034, "2043": 16245.559566113167, "2044": 15051.081554941833, "2045": 13856.603543770965, "2046": 12662.125532600097, "2047": 11467.647521428764, "2048": 10273.169510257896, "2049": 9078.691499087028, "2050": 7884.213487915695}, "trendEmission": 608723.1184616224, "historicalEmissionChangePercent": -2.5969586511950915, "neededEmissionChangePercent": 33.454713616256164, "hitNetZero": "2056-07-30", "budgetRunsOut": "2026-07-22", "electricCarChangePercent": 0.07797206459456414, "electricCarChangeYearly": {"2015": 0.013407821229050279, "2016": 0.01910828025477707, "2017": 0.02710843373493976, "2018": 0.05668449197860963, "2019": 0.10232067510548523, "2020": 0.2742927429274293, "2021": 0.4050387596899225, "2022": 0.560952380952381}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete pågår med ny Klimat– och energiplan.", "bicycleMetrePerCapita": 2.384192387, "totalConsumptionEmission": 6384.1, "electricVehiclePerChargePoints": 69.78571428571429, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Perstorp", "län": "Skåne län", "emissions": {"1990": 136397.902560983, "2000": 71461.1741995751, "2005": 81865.5399708917, "2010": 87019.0298043405, "2015": 53041.2452903236, "2016": 51045.8564099038, "2017": 47689.3885139542, "2018": 52457.3627639341, "2019": 50619.6875020151, "2020": 50429.9020443663, "2021": 51009.6333632543}, "budget": 105545.5016009661, "emissionBudget": {"2024": 49956.91537163127, "2025": 31119.661379872094, "2026": 19385.370717821403, "2027": 12075.729015175806, "2028": 7522.33389655532, "2029": 4685.887467344872, "2030": 2918.9798882331834, "2031": 1818.3201468851496, "2032": 1132.6861722811254, "2033": 705.5841992812196, "2034": 439.5295664929831, "2035": 273.79615362462613, "2036": 170.5558384565165, "2037": 106.24434874818111, "2038": 66.18279235162613, "2039": 41.22724695541466, "2040": 25.681689018081855, "2041": 15.997894584975267, "2042": 9.965568501814074, "2043": 6.207851604274224, "2044": 3.8670570107139395, "2045": 2.40890583045117, "2046": 1.5005797131783967, "2047": 0.9347561233561502, "2048": 0.5822876335580182, "2049": 0.3627244365912674, "2050": 0.22595193392054588}, "approximatedHistoricalEmission": {"2021": 51009.6333632543, "2022": 50270.947194789944, "2023": 50113.93128321064, "2024": 49956.91537163127}, "totalApproximatedHistoricalEmission": 150868.15284544337, "trend": {"2024": 49956.91537163127, "2025": 49799.899460051965, "2026": 49642.8835484726, "2027": 49485.867636893294, "2028": 49328.85172531399, "2029": 49171.83581373462, "2030": 49014.819902155316, "2031": 48857.80399057595, "2032": 48700.788078996644, "2033": 48543.77216741728, "2034": 48386.75625583797, "2035": 48229.740344258666, "2036": 48072.7244326793, "2037": 47915.708521099994, "2038": 47758.69260952063, "2039": 47601.67669794132, "2040": 47444.66078636196, "2041": 47287.64487478265, "2042": 47130.628963203344, "2043": 46973.61305162398, "2044": 46816.59714004467, "2045": 46659.58122846531, "2046": 46502.565316886, "2047": 46345.549405306636, "2048": 46188.53349372733, "2049": 46031.51758214802, "2050": 45874.50167056866}, "trendEmission": 1245808.4215485991, "historicalEmissionChangePercent": -0.5113169489411464, "neededEmissionChangePercent": 37.70699982500555, "hitNetZero": "2341-12-15", "budgetRunsOut": "2026-02-13", "electricCarChangePercent": 0.06374565186486536, "electricCarChangeYearly": {"2015": 0.022988505747126436, "2016": 0.018018018018018018, "2017": 0.008547008547008548, "2018": 0.06315789473684211, "2019": 0.11688311688311688, "2020": 0.21794871794871795, "2021": 0.3225806451612903, "2022": 0.47297297297297297}, "climatePlanLink": "https://www.perstorp.se/download/18.6ee8abfe17bedf7491a2a38/1643719465669/Klimat-%20och%20energiprogram.pdf", "climatePlanYear": 2021, "climatePlanComment": "Energi– och klimatprogram. Gäller till 2030. ", "bicycleMetrePerCapita": 3.362789196, "totalConsumptionEmission": 5974.1, "electricVehiclePerChargePoints": 4.774193548387097, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Piteå", "län": "Norrbottens län", "emissions": {"1990": 304864.477679964, "2000": 197456.808906165, "2005": 261610.540791138, "2010": 170663.572173294, "2015": 143484.873198738, "2016": 140279.929257591, "2017": 146436.772817364, "2018": 137145.674559352, "2019": 146512.245301487, "2020": 128155.704137901, "2021": 134037.461587914}, "budget": 289138.28151944873, "emissionBudget": {"2024": 128182.83456839388, "2025": 82280.20400773986, "2026": 52815.433473216246, "2027": 33902.079444301504, "2028": 21761.650242454012, "2029": 13968.742597424942, "2030": 8966.496914487225, "2031": 5755.569361864385, "2032": 3694.4839211073822, "2033": 2371.4789250493245, "2034": 1522.2457079383887, "2035": 977.1252743849066, "2036": 627.2139884269086, "2037": 402.60690987246306, "2038": 258.4322525771329, "2039": 165.88694216213938, "2040": 106.48236551547186, "2041": 68.35073344524129, "2042": 43.8741451684186, "2043": 28.162691418690066, "2044": 18.077553075957706, "2045": 11.603930901191818, "2046": 7.448530882131062, "2047": 4.781191199299699, "2048": 3.069033296096187, "2049": 1.970003913235389, "2050": 1.2645400175681618}, "approximatedHistoricalEmission": {"2021": 134037.461587914, "2022": 131933.9211818031, "2023": 130058.3778750985, "2024": 128182.83456839388}, "totalApproximatedHistoricalEmission": 393102.44713505555, "trend": {"2024": 128182.83456839388, "2025": 126307.29126168974, "2026": 124431.74795498513, "2027": 122556.20464828052, "2028": 120680.6613415759, "2029": 118805.1180348713, "2030": 116929.57472816668, "2031": 115054.03142146254, "2032": 113178.48811475793, "2033": 111302.94480805332, "2034": 109427.40150134871, "2035": 107551.8581946441, "2036": 105676.31488793949, "2037": 103800.77158123488, "2038": 101925.22827453073, "2039": 100049.68496782612, "2040": 98174.14166112151, "2041": 96298.5983544169, "2042": 94423.05504771229, "2043": 92547.51174100768, "2044": 90671.96843430307, "2045": 88796.42512759892, "2046": 86920.88182089431, "2047": 85045.3385141897, "2048": 83169.79520748509, "2049": 81294.25190078048, "2050": 79418.70859407587}, "trendEmission": 2698820.061112112, "historicalEmissionChangePercent": -0.8832141837422888, "neededEmissionChangePercent": 35.81027889983348, "hitNetZero": "2092-04-18", "budgetRunsOut": "2026-04-18", "electricCarChangePercent": 0.08428524112409641, "electricCarChangeYearly": {"2015": 0.011098779134295227, "2016": 0.026345933562428408, "2017": 0.04738760631834751, "2018": 0.06606606606606606, "2019": 0.09408194233687406, "2020": 0.24660633484162897, "2021": 0.44749596122778673, "2022": 0.6323185011709602}, "climatePlanLink": "https://www.pitea.se/contentassets/9c4b5902081c401a985a37bee096f992/handlingsplan-miljo-klimat-och-energi.pdf?t=638201013076470932", "climatePlanYear": 2019, "climatePlanComment": "Handlingsplan klimat och energi, gäller tillsvidare.", "bicycleMetrePerCapita": 3.046185101, "totalConsumptionEmission": 6605.3, "electricVehiclePerChargePoints": 32.15686274509804, "procurementScore": "2", "procurementLink": "https://www.pitea.se/contentassets/ce699811aafa4dd7a941622e5800b9ae/klimat--och-energiplan.pdf"}, {"kommun": "Ragunda", "län": "Jämtlands län", "emissions": {"1990": 52653.1274152654, "2000": 51096.6545448331, "2005": 48902.087310614, "2010": 42048.458956496, "2015": 33975.5213389555, "2016": 33907.0026872045, "2017": 30816.88182752, "2018": 26602.5552474909, "2019": 25935.3581063959, "2020": 24012.4863844684, "2021": 23761.3196384102}, "budget": 58953.51455900168, "emissionBudget": {"2024": 16577.340441156644, "2025": 12513.94106638504, "2026": 9446.552754877948, "2027": 7131.035576825723, "2028": 5383.092617748388, "2029": 4063.6013968894254, "2030": 3067.540814430311, "2031": 2315.6322998113747, "2032": 1748.029862456957, "2033": 1319.5568226830267, "2034": 996.1101041156843, "2035": 751.945897641504, "2036": 567.6306571368953, "2037": 428.4943423885492, "2038": 323.4627995343013, "2039": 244.17634571168531, "2040": 184.32440420027294, "2041": 139.14323226010856, "2042": 105.0367647615153, "2043": 79.29039574804315, "2044": 59.854917201189394, "2045": 45.18341823574077, "2046": 34.1081631873898, "2047": 25.74764905894993, "2048": 19.436444830542577, "2049": 14.672228395912917, "2050": 11.075805682505758}, "approximatedHistoricalEmission": {"2021": 23761.3196384102, "2022": 20528.280543173198, "2023": 18552.81049216492, "2024": 16577.340441156644}, "totalApproximatedHistoricalEmission": 59250.42107512154, "trend": {"2024": 16577.340441156644, "2025": 14601.870390148368, "2026": 12626.400339139625, "2027": 10650.930288131349, "2028": 8675.460237123072, "2029": 6699.9901861147955, "2030": 4724.520135106519, "2031": 2749.0500840977766, "2032": 773.5800330894999, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 69790.47191352933, "historicalEmissionChangePercent": -5.659778036841039, "neededEmissionChangePercent": 24.511768876287203, "hitNetZero": "2032-05-20", "budgetRunsOut": "2029-02-11", "electricCarChangePercent": 0.050618318360253836, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.03333333333333333, "2018": 0.0, "2019": 0.0, "2020": 0.0967741935483871, "2021": 0.2777777777777778, "2022": 0.38181818181818183}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.487975575, "totalConsumptionEmission": 6312.0, "electricVehiclePerChargePoints": 5.6923076923076925, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1mCQmKMHi1-lOTKEpsodUI3q1kCJUnJR_/view?usp=drive_link"}, {"kommun": "Robertsfors", "län": "Västerbottens län", "emissions": {"1990": 51464.2743730163, "2000": 49935.8541491598, "2005": 48756.3127418382, "2010": 48294.3148439398, "2015": 43973.352449219, "2016": 42930.93834704, "2017": 45798.987073553, "2018": 44372.4159431043, "2019": 44172.3581025587, "2020": 37782.4144641121, "2021": 37555.3370470512}, "budget": 87858.28159133815, "emissionBudget": {"2024": 35688.45985880075, "2025": 23774.71297877827, "2026": 15838.088263254118, "2027": 10550.917693876538, "2028": 7028.743768352044, "2029": 4682.364169120567, "2030": 3119.267814397015, "2031": 2077.9741486362377, "2032": 1384.291705403053, "2033": 922.1787128128257, "2034": 614.331195546326, "2035": 409.2512791476452, "2036": 272.63243458609946, "2037": 181.62055484138975, "2038": 120.99083511825143, "2039": 80.60091103342376, "2040": 53.6942062848684, "2041": 35.76966750867672, "2042": 23.82881137851648, "2043": 15.874127193806894, "2044": 10.574925881210616, "2045": 7.044737391087979, "2046": 4.693018699787959, "2047": 3.1263655824022245, "2048": 2.0827024949358934, "2049": 1.3874416053030012, "2050": 0.9242770932509132}, "approximatedHistoricalEmission": {"2021": 37555.3370470512, "2022": 37915.44006904028, "2023": 36801.94996392075, "2024": 35688.45985880075}, "totalApproximatedHistoricalEmission": 111339.28848588701, "trend": {"2024": 35688.45985880075, "2025": 34574.96975368122, "2026": 33461.47964856168, "2027": 32347.989543441683, "2028": 31234.49943832215, "2029": 30121.00933320215, "2030": 29007.519228082616, "2031": 27894.029122962616, "2032": 26780.539017843083, "2033": 25667.048912723083, "2034": 24553.55880760355, "2035": 23440.06870248355, "2036": 22326.578597364016, "2037": 21213.088492244016, "2038": 20099.598387124483, "2039": 18986.108282004483, "2040": 17872.61817688495, "2041": 16759.12807176495, "2042": 15645.637966645416, "2043": 14532.147861525416, "2044": 13418.657756405883, "2045": 12305.167651285883, "2046": 11191.67754616635, "2047": 10078.18744104635, "2048": 8964.697335926816, "2049": 7851.207230807282, "2050": 6737.7171256872825}, "trendEmission": 551540.3007983477, "historicalEmissionChangePercent": -2.387101399806946, "neededEmissionChangePercent": 33.3826310442045, "hitNetZero": "2056-01-11", "budgetRunsOut": "2026-07-26", "electricCarChangePercent": 0.100632611114207, "electricCarChangeYearly": {"2015": 0.010869565217391304, "2016": 0.0, "2017": 0.06818181818181818, "2018": 0.08571428571428572, "2019": 0.12857142857142856, "2020": 0.20754716981132076, "2021": 0.4666666666666667, "2022": 0.8192771084337349}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.337627834, "totalConsumptionEmission": 5986.9, "electricVehiclePerChargePoints": 13.0625, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Ronneby", "län": "Blekinge län", "emissions": {"1990": 129432.353451112, "2000": 130097.955405933, "2005": 111575.876666887, "2010": 107581.352078925, "2015": 82690.5132934546, "2016": 77730.3509943048, "2017": 77135.196140403, "2018": 73140.9815482681, "2019": 68632.7670812859, "2020": 62645.9786817864, "2021": 63258.8422269992}, "budget": 149666.7941500857, "emissionBudget": {"2024": 51397.90709160268, "2025": 36458.76462977584, "2026": 25861.782970275133, "2027": 18344.884287587152, "2028": 13012.822043699241, "2029": 9230.559042313636, "2030": 6547.635858502583, "2031": 4644.52208571791, "2032": 3294.5609485459063, "2033": 2336.974966070371, "2034": 1657.717698150367, "2035": 1175.8910585943358, "2036": 834.1105263127172, "2037": 591.6707717272452, "2038": 419.69773917595535, "2039": 297.7098087086346, "2040": 211.17847900575381, "2041": 149.7980539795703, "2042": 106.25825643651345, "2043": 75.37358971611008, "2044": 53.46575614184725, "2045": 37.925579643827064, "2046": 26.902258475579345, "2047": 19.082938688972124, "2048": 13.536356040056486, "2049": 9.601924411624418, "2050": 6.811061421088652}, "approximatedHistoricalEmission": {"2021": 63258.8422269992, "2022": 58324.06329756882, "2023": 54860.98519458622, "2024": 51397.90709160268}, "totalApproximatedHistoricalEmission": 170513.423151456, "trend": {"2024": 51397.90709160268, "2025": 47934.82898862008, "2026": 44471.75088563748, "2027": 41008.67278265394, "2028": 37545.59467967134, "2029": 34082.51657668874, "2030": 30619.438473705202, "2031": 27156.3603707226, "2032": 23693.282267739996, "2033": 20230.204164756462, "2034": 16767.12606177386, "2035": 13304.047958791256, "2036": 9840.969855807722, "2037": 6377.891752825119, "2038": 2914.8136498415843, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 381646.4520150367, "historicalEmissionChangePercent": -4.308449639964562, "neededEmissionChangePercent": 29.065662995191456, "hitNetZero": "2038-10-31", "budgetRunsOut": "2027-04-10", "electricCarChangePercent": 0.06084937111254478, "electricCarChangeYearly": {"2015": 0.014388489208633094, "2016": 0.04562043795620438, "2017": 0.03544776119402985, "2018": 0.07727272727272727, "2019": 0.09792843691148775, "2020": 0.19622641509433963, "2021": 0.3852295409181637, "2022": 0.43014705882352944}, "climatePlanLink": "https://www.ronneby.se/download/18.2e5b091017e6102741ae787e/1643191137416/Program%20f%C3%B6r%20klimat%20och%20energi%20Ronneby%20kommun%202021-2025.pdf", "climatePlanYear": 2021, "climatePlanComment": "Program för klimat och energi 2021–2025", "bicycleMetrePerCapita": 3.962831222, "totalConsumptionEmission": 6076.0, "electricVehiclePerChargePoints": 9.53191489361702, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1rmnLBQdqN0EK8oGFEoVD5vTY2T7n2oR0/view?usp=drive_link"}, {"kommun": "Rättvik", "län": "Dalarnas län", "emissions": {"1990": 186962.28416206, "2000": 212446.57506232, "2005": 236084.776854862, "2010": 217587.444212846, "2015": 186095.115695446, "2016": 203351.538935695, "2017": 194678.137760319, "2018": 157363.003440239, "2019": 169739.906624526, "2020": 176805.382394022, "2021": 176132.127440084}, "budget": 374486.5125577416, "emissionBudget": {"2024": 157469.4212589236, "2025": 103413.65872028518, "2026": 67914.04149718102, "2027": 44600.65613727381, "2028": 29290.23930872834, "2029": 19235.549273581037, "2030": 12632.411499147569, "2031": 8295.984586359957, "2032": 5448.156930429804, "2033": 3577.925396268618, "2034": 2349.7029003997573, "2035": 1543.1019679462665, "2036": 1013.3892600100774, "2037": 665.515185409661, "2038": 437.05857116193494, "2039": 287.02604961377216, "2040": 188.49636774738718, "2041": 123.78974208706586, "2042": 81.29546701143096, "2043": 53.38853482672529, "2044": 35.061433997835046, "2045": 23.0256207250171, "2046": 15.12143541547882, "2047": 9.930581753049687, "2048": 6.521633115137748, "2049": 4.282900996751754, "2050": 2.8126760006476883}, "approximatedHistoricalEmission": {"2021": 176132.127440084, "2022": 165177.9576150123, "2023": 161323.68943696748, "2024": 157469.4212589236}, "totalApproximatedHistoricalEmission": 493302.4214014836, "trend": {"2024": 157469.4212589236, "2025": 153615.15308087878, "2026": 149760.8849028349, "2027": 145906.616724791, "2028": 142052.3485467462, "2029": 138198.0803687023, "2030": 134343.8121906584, "2031": 130489.5440126136, "2032": 126635.27583456971, "2033": 122781.00765652582, "2034": 118926.739478481, "2035": 115072.47130043712, "2036": 111218.2031223923, "2037": 107363.93494434841, "2038": 103509.66676630452, "2039": 99655.3985882597, "2040": 95801.13041021582, "2041": 91946.86223217193, "2042": 88092.59405412711, "2043": 84238.32587608323, "2044": 80384.0576980384, "2045": 76529.78951999452, "2046": 72675.52134195063, "2047": 68821.25316390581, "2048": 64966.98498586193, "2049": 61112.71680781804, "2050": 57258.44862977322}, "trendEmission": 2791462.3085530596, "historicalEmissionChangePercent": -0.41883160605563186, "neededEmissionChangePercent": 34.3277838366826, "hitNetZero": "2064-10-29", "budgetRunsOut": "2026-06-14", "electricCarChangePercent": 0.06738883066063339, "electricCarChangeYearly": {"2015": 0.023148148148148147, "2016": 0.06167400881057269, "2017": 0.04186046511627907, "2018": 0.05641025641025641, "2019": 0.13186813186813187, "2020": 0.24299065420560748, "2021": 0.30434782608695654, "2022": 0.5614973262032086}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.793276136, "totalConsumptionEmission": 6586.6, "electricVehiclePerChargePoints": 10.225806451612904, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Sala", "län": "Västmanlands län", "emissions": {"1990": 138398.115595249, "2000": 104429.219840113, "2005": 96484.6370014235, "2010": 88184.223219354, "2015": 75205.0248493749, "2016": 71476.1611231589, "2017": 67183.1712073682, "2018": 67112.4876906606, "2019": 67046.6991621637, "2020": 62226.2129080975, "2021": 62672.5396044912}, "budget": 140094.83873012892, "emissionBudget": {"2024": 55510.22289004922, "2025": 37350.04154955153, "2026": 25130.96743488845, "2027": 16909.3660411472, "2028": 11377.463309134693, "2029": 7655.323743995549, "2030": 5150.8829370014555, "2031": 3465.7704778981815, "2032": 2331.9429217048023, "2033": 1569.0472940340192, "2034": 1055.7331348040289, "2035": 710.3498130114214, "2036": 477.95871912178546, "2037": 321.59442150914595, "2038": 216.38473744308791, "2039": 145.5944241152906, "2040": 97.96317699642925, "2041": 65.91450260234144, "2042": 44.35055891942383, "2043": 29.84126404369486, "2044": 20.078688102744774, "2045": 13.509940977600321, "2046": 9.09016088522706, "2047": 6.116312799316847, "2048": 4.1153597534101936, "2049": 2.769018926219748, "2050": 1.8631337898003988}, "approximatedHistoricalEmission": {"2021": 62672.5396044912, "2022": 59526.92461933335, "2023": 57518.57375469105, "2024": 55510.22289004922}, "totalApproximatedHistoricalEmission": 176136.87962129462, "trend": {"2024": 55510.22289004922, "2025": 53501.87202540692, "2026": 51493.521160765085, "2027": 49485.170296122786, "2028": 47476.819431480486, "2029": 45468.46856683865, "2030": 43460.11770219635, "2031": 41451.76683755452, "2032": 39443.41597291222, "2033": 37435.065108270384, "2034": 35426.714243628085, "2035": 33418.363378985785, "2036": 31410.01251434395, "2037": 29401.66164970165, "2038": 27393.310785059817, "2039": 25384.959920417517, "2040": 23376.609055775683, "2041": 21368.258191133384, "2042": 19359.907326491084, "2043": 17351.55646184925, "2044": 15343.20559720695, "2045": 13334.854732565116, "2046": 11326.503867922816, "2047": 9318.153003280982, "2048": 7309.802138638683, "2049": 5301.451273996383, "2050": 3293.100409354549}, "trendEmission": 764443.2028922464, "historicalEmissionChangePercent": -2.9400275463345267, "neededEmissionChangePercent": 32.71502147715763, "hitNetZero": "2051-08-15", "budgetRunsOut": "2026-08-26", "electricCarChangePercent": 0.06924026936717274, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.02142857142857143, "2017": 0.010482180293501049, "2018": 0.039735099337748346, "2019": 0.047961630695443645, "2020": 0.19109947643979058, "2021": 0.33163265306122447, "2022": 0.5307262569832403}, "climatePlanLink": "https://www.sala.se/resources/files/_Nystruktur/Styrdokument/06%20Planer/Energi-%20och%20klimatstrategi%20Sala%20kommun%202020-2030%20med%20utblick%20mot%202045.pdf", "climatePlanYear": 2019, "climatePlanComment": "Energi– och klimatstrategi. 2020–2030 med utblick mot 2045.", "bicycleMetrePerCapita": 1.058042274, "totalConsumptionEmission": 6148.8, "electricVehiclePerChargePoints": 20.09090909090909, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Salem", "län": "Stockholms län", "emissions": {"1990": 55147.2907314068, "2000": 53123.6970790706, "2005": 50774.540282397, "2010": 46972.2156198222, "2015": 41780.6921887169, "2016": 40099.992070785, "2017": 40691.6952644617, "2018": 40232.6338269838, "2019": 39737.8237187339, "2020": 36350.193476073, "2021": 36625.9984524092}, "budget": 81617.62347967649, "emissionBudget": {"2024": 34234.67201172141, "2025": 22506.113278923905, "2026": 14795.676580465815, "2027": 9726.781464249854, "2028": 6394.4542947218115, "2029": 4203.759062293238, "2030": 2763.5806652647784, "2031": 1816.7972950521496, "2032": 1194.3752729188252, "2033": 785.1906739650723, "2034": 516.1898512642986, "2035": 339.34682540576296, "2036": 223.08898098426056, "2037": 146.66025938827175, "2038": 96.41548223913703, "2039": 63.38421365255498, "2040": 41.669226218130426, "2041": 27.39364131162867, "2042": 18.0087717583693, "2043": 11.839092749869906, "2044": 7.78310253584523, "2045": 5.1166661469179, "2046": 3.3637321798655377, "2047": 2.2113411062940926, "2048": 1.4537511391829823, "2049": 0.9557061860155882, "2050": 0.6282879437685494}, "approximatedHistoricalEmission": {"2021": 36625.9984524092, "2022": 35943.068436298054, "2023": 35088.870224009734, "2024": 34234.67201172141}, "totalApproximatedHistoricalEmission": 106462.2738923731, "trend": {"2024": 34234.67201172141, "2025": 33380.47379943286, "2026": 32526.27558714454, "2027": 31672.07737485622, "2028": 30817.8791625679, "2029": 29963.680950279348, "2030": 29109.482737991028, "2031": 28255.284525702707, "2032": 27401.086313414155, "2033": 26546.888101125835, "2034": 25692.689888837514, "2035": 24838.491676549194, "2036": 23984.29346426064, "2037": 23130.09525197232, "2038": 22275.897039684, "2039": 21421.69882739568, "2040": 20567.50061510713, "2041": 19713.30240281881, "2042": 18859.10419053049, "2043": 18004.905978241935, "2044": 17150.707765953615, "2045": 16296.509553665295, "2046": 15442.311341376975, "2047": 14588.113129088422, "2048": 13733.914916800102, "2049": 12879.716704511782, "2050": 12025.51849222323}, "trendEmission": 601382.4765512808, "historicalEmissionChangePercent": -2.111887944172099, "neededEmissionChangePercent": 34.259299253055005, "hitNetZero": "2064-01-19", "budgetRunsOut": "2026-06-17", "electricCarChangePercent": 0.0714780271065529, "electricCarChangeYearly": {"2015": 0.00974025974025974, "2016": 0.01507537688442211, "2017": 0.027855153203342618, "2018": 0.04100946372239748, "2019": 0.06461538461538462, "2020": 0.18620689655172415, "2021": 0.4171597633136095, "2022": 0.5090361445783133}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.830194816, "totalConsumptionEmission": 6075.5, "electricVehiclePerChargePoints": 48.69230769230769, "procurementScore": "2", "procurementLink": "https://www.salem.se/bygga-bo--miljo/energi-och-klimat/samordnad-varudistribution/"}, {"kommun": "Sandviken", "län": "Gävleborgs län", "emissions": {"1990": 236345.643479017, "2000": 247185.355595772, "2005": 278632.856315522, "2010": 277274.572641715, "2015": 219101.875946672, "2016": 225416.520103901, "2017": 220757.487103173, "2018": 218402.956161077, "2019": 210413.124184133, "2020": 187313.66742965, "2021": 168389.147393076}, "budget": 429475.9776488934, "emissionBudget": {"2024": 155966.056775596, "2025": 108471.1325831547, "2026": 75439.40551629917, "2027": 52466.5297496529, "2028": 36489.37481852857, "2029": 25377.597508359613, "2030": 17649.588640506896, "2031": 12274.91999888864, "2032": 8536.950296581474, "2033": 5937.270497314927, "2034": 4129.247533794612, "2035": 2871.805352823304, "2036": 1997.2805982221366, "2037": 1389.0669101625622, "2038": 966.0670026165088, "2039": 671.8794081958404, "2040": 467.27808520004817, "2041": 324.98214150444517, "2042": 226.01828684433335, "2043": 157.19099440837604, "2044": 109.3230511038784, "2045": 76.03189704119828, "2046": 52.87859522133558, "2047": 36.77595774135095, "2048": 25.576909941206864, "2049": 17.788206271649216, "2050": 12.371325664049724}, "approximatedHistoricalEmission": {"2021": 168389.147393076, "2022": 173015.2177704759, "2023": 164490.63727303594, "2024": 155966.056775596}, "totalApproximatedHistoricalEmission": 499683.4571278478, "trend": {"2024": 155966.056775596, "2025": 147441.47627815604, "2026": 138916.8957807161, "2027": 130392.31528327614, "2028": 121867.73478583246, "2029": 113343.15428839251, "2030": 104818.57379095256, "2031": 96293.99329351261, "2032": 87769.41279607266, "2033": 79244.83229863271, "2034": 70720.25180118904, "2035": 62195.671303749084, "2036": 53671.090806309134, "2037": 45146.51030886918, "2038": 36621.92981142923, "2039": 28097.34931398928, "2040": 19572.768816545606, "2041": 11048.188319105655, "2042": 2523.6078216657043, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 1427668.7852861937, "historicalEmissionChangePercent": -4.165154368141493, "neededEmissionChangePercent": 30.45209013700782, "hitNetZero": "2042-04-14", "budgetRunsOut": "2026-12-31", "electricCarChangePercent": 0.04678196704923624, "electricCarChangeYearly": {"2015": 0.012216404886561954, "2016": 0.008928571428571428, "2017": 0.02127659574468085, "2018": 0.022770398481973434, "2019": 0.052732502396931925, "2020": 0.1577574967405476, "2021": 0.2275064267352185, "2022": 0.3547008547008547}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete pågår med att ta fram en hållbarhetsplan. ", "bicycleMetrePerCapita": 3.210885786, "totalConsumptionEmission": 6202.0, "electricVehiclePerChargePoints": 5.431578947368421, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Sigtuna", "län": "Stockholms län", "emissions": {"1990": 386940.251862089, "2000": 299005.278573117, "2005": 293088.691594982, "2010": 251261.897566776, "2015": 237800.199880201, "2016": 231026.312906616, "2017": 232398.621126419, "2018": 233405.011316719, "2019": 236409.978184602, "2020": 208117.733670013, "2021": 211306.066490469}, "budget": 471146.71587065497, "emissionBudget": {"2024": 201218.8030283861, "2025": 131277.0245723623, "2026": 85646.35571428905, "2027": 55876.48159328277, "2028": 36454.337948247, "2029": 23783.150215470225, "2030": 15516.349109799743, "2031": 10123.010934883558, "2032": 6604.34678690306, "2033": 4308.737465784282, "2034": 2811.0605254511247, "2035": 1833.9621154688314, "2036": 1196.493995957324, "2037": 780.6038468771494, "2038": 509.2732331446968, "2039": 332.25460908914835, "2040": 216.76600707898868, "2041": 141.42016555851836, "2042": 92.2638355344662, "2043": 60.19378717251313, "2044": 39.27098839085532, "2045": 25.62075924504926, "2046": 16.71522238655018, "2047": 10.90516704675007, "2048": 7.114632732210259, "2049": 4.641652777737382, "2050": 3.0282575812432584}, "approximatedHistoricalEmission": {"2021": 211306.066490469, "2022": 209882.24599868618, "2023": 205550.52451353706, "2024": 201218.8030283861}, "totalApproximatedHistoricalEmission": 621695.2052716508, "trend": {"2024": 201218.8030283861, "2025": 196887.0815432351, "2026": 192555.36005808413, "2027": 188223.63857293315, "2028": 183891.91708778404, "2029": 179560.19560263306, "2030": 175228.47411748208, "2031": 170896.7526323311, "2032": 166565.031147182, "2033": 162233.309662031, "2034": 157901.58817688003, "2035": 153569.86669172905, "2036": 149238.14520657808, "2037": 144906.42372142896, "2038": 140574.70223627798, "2039": 136242.980751127, "2040": 131911.25926597603, "2041": 127579.53778082505, "2042": 123247.81629567593, "2043": 118916.09481052496, "2044": 114584.37332537398, "2045": 110252.651840223, "2046": 105920.93035507388, "2047": 101589.2088699229, "2048": 97257.48738477193, "2049": 92925.76589962095, "2050": 88594.04441446997}, "trendEmission": 3767567.0167571334, "historicalEmissionChangePercent": -1.8282548585959575, "neededEmissionChangePercent": 34.75906694771315, "hitNetZero": "2070-06-03", "budgetRunsOut": "2026-05-28", "electricCarChangePercent": 0.08230968541458143, "electricCarChangeYearly": {"2015": 0.019955654101995565, "2016": 0.018108651911468814, "2017": 0.031190926275992438, "2018": 0.07347876004592423, "2019": 0.12512030798845045, "2020": 0.316008316008316, "2021": 0.43105022831050227, "2022": 0.5832716506291635}, "climatePlanLink": "https://www.sigtuna.se/download/18.24e83a616b997088b4b830f/1566301462415/Plan%20f%C3%B6r%20Klimatsmart.pdf", "climatePlanYear": 2018, "climatePlanComment": "Plan för klimatsmart Sigtuna", "bicycleMetrePerCapita": 2.417291994, "totalConsumptionEmission": 6010.3, "electricVehiclePerChargePoints": 5.0, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1s8VP3YFBH92yQeCuHFqXf29iWWFINlUa/view?usp=drive_link"}, {"kommun": "Simrishamn", "län": "Skåne län", "emissions": {"1990": 72294.8669507433, "2000": 67734.3553232718, "2005": 60488.5157485077, "2010": 60701.1078661139, "2015": 50614.8238884586, "2016": 48045.0585816113, "2017": 47406.6679740105, "2018": 42263.8707745091, "2019": 46938.8356059295, "2020": 42316.1050356446, "2021": 42381.5768764867}, "budget": 94784.52804770412, "emissionBudget": {"2024": 37861.24542753585, "2025": 25393.230501821068, "2026": 17031.033924986838, "2027": 11422.576443483678, "2028": 7661.029458452511, "2029": 5138.190377072002, "2030": 3446.142648871656, "2031": 2311.299948979243, "2032": 1550.1701462940237, "2033": 1039.6865554046772, "2034": 697.3093476696442, "2035": 467.6797288757917, "2036": 313.66900434117815, "2037": 210.37525941287146, "2038": 141.0969817243842, "2039": 94.63260227125902, "2040": 63.46931949347745, "2041": 42.56835826429105, "2042": 28.550252937614342, "2043": 19.148423289923457, "2044": 12.842692332403587, "2045": 8.613489677323567, "2046": 5.776997727662161, "2047": 3.8745855623738077, "2048": 2.598653139202599, "2049": 1.742895602426759, "2050": 1.1689459570932403}, "approximatedHistoricalEmission": {"2021": 42381.5768764867, "2022": 40477.35117724538, "2023": 39169.29830239061, "2024": 37861.24542753585}, "totalApproximatedHistoricalEmission": 119768.06063164727, "trend": {"2024": 37861.24542753585, "2025": 36553.19255268155, "2026": 35245.13967782678, "2027": 33937.086802972015, "2028": 32629.03392811725, "2029": 31320.981053262483, "2030": 30012.928178408183, "2031": 28704.875303553417, "2032": 27396.82242869865, "2033": 26088.769553843886, "2034": 24780.716678989585, "2035": 23472.66380413482, "2036": 22164.610929280054, "2037": 20856.558054425288, "2038": 19548.505179570988, "2039": 18240.452304716222, "2040": 16932.399429861456, "2041": 15624.34655500669, "2042": 14316.29368015239, "2043": 13008.240805297624, "2044": 11700.187930442858, "2045": 10392.135055588093, "2046": 9084.082180733792, "2047": 7776.029305879027, "2048": 6467.976431024261, "2049": 5159.923556169495, "2050": 3851.870681314729}, "trendEmission": 542270.5094150621, "historicalEmissionChangePercent": -2.6477348038309927, "neededEmissionChangePercent": 32.93081034425509, "hitNetZero": "2052-12-03", "budgetRunsOut": "2026-08-16", "electricCarChangePercent": 0.06034983087158206, "electricCarChangeYearly": {"2015": 0.009900990099009901, "2016": 0.011146496815286623, "2017": 0.02337228714524207, "2018": 0.04032258064516129, "2019": 0.050434782608695654, "2020": 0.2431818181818182, "2021": 0.30544747081712065, "2022": 0.42823529411764705}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Klimatplan finns men saknas på kommunens webbplats. Lämnas ut på begäran. Ska arbetas in i kommunens hållbarhetspolicy.", "bicycleMetrePerCapita": 3.729507637, "totalConsumptionEmission": 6254.4, "electricVehiclePerChargePoints": 16.78048780487805, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1ovZ3qqKSWsWP86RLrS8v6a7lXm-IoLhT/view?usp=drive_link"}, {"kommun": "Sjöbo", "län": "Skåne län", "emissions": {"1990": 66028.6151838961, "2000": 63364.2090151149, "2005": 60022.1668807001, "2010": 59273.6388244371, "2015": 50354.6892881688, "2016": 48692.8580696507, "2017": 50151.2539966752, "2018": 46112.3907524522, "2019": 46464.3141580136, "2020": 42943.5871333503, "2021": 43101.3112244717}, "budget": 97110.97796310761, "emissionBudget": {"2024": 38914.56868132204, "2025": 26066.371731942574, "2026": 17460.189288798047, "2027": 11695.46007920523, "2028": 7834.038005077054, "2029": 5247.519212528681, "2030": 3514.976295495619, "2031": 2354.4570029201354, "2032": 1577.0996196200592, "2033": 1056.397805150364, "2034": 707.6130821687458, "2035": 473.98458385199115, "2036": 317.49184885161554, "2037": 212.66741054745725, "2038": 142.45224774289696, "2039": 95.4196171137154, "2040": 63.915476760752234, "2041": 42.81287530933786, "2042": 28.677597119614116, "2043": 19.20928156805031, "2044": 12.867064727269678, "2045": 8.618820756478275, "2046": 5.773194804473748, "2047": 3.8670926327538013, "2048": 2.5903171357928714, "2049": 1.7350871833665127, "2050": 1.162223533282246}, "approximatedHistoricalEmission": {"2021": 43101.3112244717, "2022": 41553.54124577623, "2023": 40234.05496354913, "2024": 38914.56868132204}, "totalApproximatedHistoricalEmission": 122795.53616222223, "trend": {"2024": 38914.56868132204, "2025": 37595.08239909494, "2026": 36275.59611686831, "2027": 34956.10983464122, "2028": 33636.62355241412, "2029": 32317.137270187493, "2030": 30997.6509879604, "2031": 29678.164705733303, "2032": 28358.678423506673, "2033": 27039.19214127958, "2034": 25719.705859052483, "2035": 24400.219576825853, "2036": 23080.73329459876, "2037": 21761.247012371663, "2038": 20441.760730145033, "2039": 19122.27444791794, "2040": 17802.788165690843, "2041": 16483.301883464213, "2042": 15163.815601237118, "2043": 13844.329319010023, "2044": 12524.843036783393, "2045": 11205.356754556298, "2046": 9885.870472329203, "2047": 8566.384190102573, "2048": 7246.897907875478, "2049": 5927.411625648383, "2050": 4607.9253434217535}, "trendEmission": 565792.4223216672, "historicalEmissionChangePercent": -2.4675543834198805, "neededEmissionChangePercent": 33.01641874691073, "hitNetZero": "2053-06-21", "budgetRunsOut": "2026-08-12", "electricCarChangePercent": 0.06578047080306838, "electricCarChangeYearly": {"2015": 0.00477326968973747, "2016": 0.014830508474576272, "2017": 0.017241379310344827, "2018": 0.0407725321888412, "2019": 0.06692913385826772, "2020": 0.19230769230769232, "2021": 0.3163538873994638, "2022": 0.5}, "climatePlanLink": "https://www.sjobo.se/bygga-bo-och-miljo/hallbarhet-miljo-och-natur/lokala-miljomal.html", "climatePlanYear": 2022, "climatePlanComment": "Hållbara Sjöbo 2034 – Kommunalt miljömålsprogram. ", "bicycleMetrePerCapita": 2.627200704, "totalConsumptionEmission": 6132.8, "electricVehiclePerChargePoints": 17.11111111111111, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Skara", "län": "Västra Götalands län", "emissions": {"1990": 101109.845480631, "2000": 89513.0870050987, "2005": 81228.3868170459, "2010": 79080.0081597043, "2015": 61433.557186142, "2016": 58654.7483953484, "2017": 59787.1299084877, "2018": 56359.0266312272, "2019": 56037.3699180081, "2020": 51459.0910005909, "2021": 51343.2670589828}, "budget": 117033.71854666295, "emissionBudget": {"2024": 46065.18176522525, "2025": 31076.481788584824, "2026": 20964.808633085442, "2027": 14143.27413289563, "2028": 9541.332177130174, "2029": 6436.771207212762, "2030": 4342.373036053872, "2031": 2929.450648038924, "2032": 1976.2652881370755, "2033": 1333.2276110232744, "2034": 899.42168870981, "2035": 606.7676422488104, "2036": 409.33744015924697, "2037": 276.1471249441094, "2038": 186.29430668553252, "2039": 125.6778201491957, "2040": 84.7847406529477, "2041": 57.19746124697252, "2042": 38.586537481909275, "2043": 26.03124058974905, "2044": 17.561189234952554, "2045": 11.847125237175893, "2046": 7.992304764074778, "2047": 5.391766708214465, "2048": 3.63739235351535, "2049": 2.4538567503773474, "2050": 1.6554202478468107}, "approximatedHistoricalEmission": {"2021": 51343.2670589828, "2022": 49523.17784818774, "2023": 47794.179806706496, "2024": 46065.18176522525}, "totalApproximatedHistoricalEmission": 146021.58206699826, "trend": {"2024": 46065.18176522525, "2025": 44336.183723744005, "2026": 42607.185682263225, "2027": 40878.18764078198, "2028": 39149.189599300735, "2029": 37420.19155781949, "2030": 35691.193516338244, "2031": 33962.195474857, "2032": 32233.19743337622, "2033": 30504.199391894974, "2034": 28775.20135041373, "2035": 27046.203308932483, "2036": 25317.205267451238, "2037": 23588.207225969993, "2038": 21859.209184488747, "2039": 20130.211143007968, "2040": 18401.213101526722, "2041": 16672.215060045477, "2042": 14943.217018564232, "2043": 13214.218977082986, "2044": 11485.220935601741, "2045": 9756.222894120961, "2046": 8027.224852639716, "2047": 6298.226811158471, "2048": 4569.2287696772255, "2049": 2840.23072819598, "2050": 1111.2326867147349}, "trendEmission": 613293.3878752235, "historicalEmissionChangePercent": -2.8820648268290405, "neededEmissionChangePercent": 32.53802416981981, "hitNetZero": "2050-08-16", "budgetRunsOut": "2026-09-04", "electricCarChangePercent": 0.06307028341146065, "electricCarChangeYearly": {"2015": 0.0076045627376425855, "2016": 0.01391304347826087, "2017": 0.01926444833625219, "2018": 0.015521064301552107, "2019": 0.06438631790744467, "2020": 0.1975, "2021": 0.2753623188405797, "2022": 0.4943310657596372}, "climatePlanLink": "https://skara.se/download/18.a9ae3d177427fab272ada/1611824198185/milj%C3%B6strategi%202017web.pdf", "climatePlanYear": 2017, "climatePlanComment": "Miljöstrategi. ", "bicycleMetrePerCapita": 3.680481651, "totalConsumptionEmission": 6113.9, "electricVehiclePerChargePoints": 17.45, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Skellefteå", "län": "Västerbottens län", "emissions": {"1990": 606046.903296444, "2000": 522131.933766314, "2005": 485559.681304623, "2010": 535190.284330015, "2015": 528915.550228399, "2016": 521073.81486466, "2017": 529371.104180673, "2018": 528017.24631959, "2019": 506186.85656076, "2020": 481197.103109729, "2021": 497032.578523585}, "budget": 1064005.3142174776, "emissionBudget": {"2024": 470559.1963458676, "2025": 302375.3395923176, "2026": 194302.53771167703, "2027": 124856.33323173579, "2028": 80231.0877236545, "2029": 51555.473965213256, "2030": 33128.89019942996, "2031": 21288.20242417775, "2032": 13679.527437371427, "2033": 8790.28990711157, "2034": 5648.52821157944, "2035": 3629.6722058274977, "2036": 2332.381078446061, "2037": 1498.758341416945, "2038": 963.0829999115954, "2039": 618.8648557190477, "2040": 397.6746652981253, "2041": 255.54066927298697, "2042": 164.2071757413356, "2043": 105.51743736783038, "2044": 67.80415982680648, "2045": 43.57008855126681, "2046": 27.99758335202782, "2047": 17.990890072013734, "2048": 11.560716563054338, "2049": 7.428769055689032, "2050": 4.773632272858243}, "approximatedHistoricalEmission": {"2021": 497032.578523585, "2022": 484743.9525061697, "2023": 477651.5744260177, "2024": 470559.1963458676}, "totalApproximatedHistoricalEmission": 1446191.4143669137, "trend": {"2024": 470559.1963458676, "2025": 463466.8182657175, "2026": 456374.4401855655, "2027": 449282.0621054154, "2028": 442189.6840252653, "2029": 435097.30594511516, "2030": 428004.9278649632, "2031": 420912.5497848131, "2032": 413820.17170466296, "2033": 406727.793624511, "2034": 399635.4155443609, "2035": 392543.03746421076, "2036": 385450.65938406065, "2037": 378358.2813039087, "2038": 371265.90322375856, "2039": 364173.52514360845, "2040": 357081.1470634565, "2041": 349988.76898330636, "2042": 342896.39090315625, "2043": 335804.0128230043, "2044": 328711.63474285416, "2045": 321619.25666270405, "2046": 314526.87858255394, "2047": 307434.50050240196, "2048": 300342.12242225185, "2049": 293249.74434210174, "2050": 286157.36626194976}, "trendEmission": 9837315.313901635, "historicalEmissionChangePercent": -0.9877386765881085, "neededEmissionChangePercent": 35.74127507433359, "hitNetZero": "2090-04-20", "budgetRunsOut": "2026-04-20", "electricCarChangePercent": 0.08220670884696615, "electricCarChangeYearly": {"2015": 0.011855905152758778, "2016": 0.01853448275862069, "2017": 0.02861098292570374, "2018": 0.03705848291835553, "2019": 0.07295173961840629, "2020": 0.283921568627451, "2021": 0.44814814814814813, "2022": 0.5769230769230769}, "climatePlanLink": "https://static1.squarespace.com/static/5dd54ca29c9179411df12b85/t/6390ab7bb0c4e669d7aee685/1670425468289/Viable-Cities-Klimatkontrakt-Skelleftea-FINAL.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatkontrakt 2030 inom Viable Cities.", "bicycleMetrePerCapita": 3.352954207, "totalConsumptionEmission": 6176.7, "electricVehiclePerChargePoints": 26.899159663865547, "procurementScore": "2", "procurementLink": "https://skelleftea.se/invanare/startsida/jobb-och-foretagande/upphandling-och-inkop/policy-for-inkop-och-upphandling"}, {"kommun": "Skinnskatteberg", "län": "Västmanlands län", "emissions": {"1990": 34470.9438062771, "2000": 29428.7744237824, "2005": 27952.5321305346, "2010": 22990.9575508567, "2015": 19576.1205265807, "2016": 18535.2108636826, "2017": 17331.2650506636, "2018": 16929.5941362503, "2019": 17026.3097926718, "2020": 16083.1074261299, "2021": 15746.9656758898}, "budget": 35911.813788626656, "emissionBudget": {"2024": 13740.519063444575, "2025": 9372.03926375831, "2026": 6392.416440446191, "2027": 4360.095684415663, "2028": 2973.9042433119635, "2029": 2028.4202660965652, "2030": 1383.5310216071564, "2031": 943.6693764812825, "2032": 643.6515540317439, "2033": 439.01744968376244, "2034": 299.4420193963043, "2035": 204.24136453966798, "2036": 139.3075530051691, "2037": 95.01794295209406, "2038": 64.80918864831678, "2039": 44.20460812723318, "2040": 30.150776771574325, "2041": 20.565035602459158, "2042": 14.026858828033117, "2043": 9.567343931952289, "2044": 6.525628512730922, "2045": 4.450956063568331, "2046": 3.0358776692798557, "2047": 2.07069067661009, "2048": 1.4123625340994224, "2049": 0.963334577327292, "2050": 0.6570646597235674}, "approximatedHistoricalEmission": {"2021": 15746.9656758898, "2022": 14933.135255242465, "2023": 14336.82715934352, "2024": 13740.519063444575}, "totalApproximatedHistoricalEmission": 44013.704784253176, "trend": {"2024": 13740.519063444575, "2025": 13144.21096754563, "2026": 12547.902871646686, "2027": 11951.59477574774, "2028": 11355.286679848796, "2029": 10758.97858394985, "2030": 10162.670488050906, "2031": 9566.362392151961, "2032": 8970.054296253016, "2033": 8373.746200354071, "2034": 7777.438104455126, "2035": 7181.130008556182, "2036": 6584.821912657237, "2037": 5988.513816758292, "2038": 5392.20572085958, "2039": 4795.897624960635, "2040": 4199.58952906169, "2041": 3603.281433162745, "2042": 3006.9733372638, "2043": 2410.6652413648553, "2044": 1814.3571454659104, "2045": 1218.0490495669656, "2046": 621.7409536680207, "2047": 25.43285776907578, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 158321.16352284106, "historicalEmissionChangePercent": -3.5314545188454436, "neededEmissionChangePercent": 31.792683955500756, "hitNetZero": "2047-01-10", "budgetRunsOut": "2026-10-13", "electricCarChangePercent": 0.08467082063406652, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.0, "2018": 0.012987012987012988, "2019": 0.031914893617021274, "2020": 0.175, "2021": 0.47368421052631576, "2022": 0.6}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.952591988, "totalConsumptionEmission": 6703.6, "electricVehiclePerChargePoints": 10000000000.0, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Skurup", "län": "Skåne län", "emissions": {"1990": 45364.2306933898, "2000": 42241.2380830484, "2005": 40596.9740106325, "2010": 42388.8253225969, "2015": 36482.6647685024, "2016": 35160.1515841525, "2017": 32423.2681296748, "2018": 32581.3048550645, "2019": 33393.9526562175, "2020": 31101.5629682918, "2021": 31112.2751602701}, "budget": 68801.4759319668, "emissionBudget": {"2024": 28195.52683247975, "2025": 18715.525684231143, "2026": 12422.924519843411, "2027": 8246.044285881715, "2028": 5473.529703582192, "2029": 3633.199917115546, "2030": 2411.632411365098, "2031": 1600.7847132629095, "2032": 1062.5631361313945, "2033": 705.3043478682652, "2034": 468.1643906196692, "2035": 310.7564802439352, "2036": 206.27282200121712, "2037": 136.9190340389569, "2038": 90.88362538643322, "2039": 60.32640692623788, "2040": 40.04324604301381, "2041": 26.579762252738185, "2042": 17.643019266050317, "2043": 11.71102005587562, "2044": 7.7734988938672664, "2045": 5.159865217943864, "2046": 3.4249968297225166, "2047": 2.273432112686807, "2048": 1.5090506146291338, "2049": 1.001672205123058, "2050": 0.664886384054569}, "approximatedHistoricalEmission": {"2021": 31112.2751602701, "2022": 29856.788370328024, "2023": 29026.15760140377, "2024": 28195.52683247975}, "totalApproximatedHistoricalEmission": 88536.84696810672, "trend": {"2024": 28195.52683247975, "2025": 27364.896063555498, "2026": 26534.265294631477, "2027": 25703.634525707224, "2028": 24873.003756783204, "2029": 24042.37298785895, "2030": 23211.74221893493, "2031": 22381.111450010678, "2032": 21550.480681086658, "2033": 20719.849912162405, "2034": 19889.219143238384, "2035": 19058.58837431413, "2036": 18227.95760539011, "2037": 17397.326836465858, "2038": 16566.696067541838, "2039": 15736.065298617585, "2040": 14905.434529693564, "2041": 14074.803760769311, "2042": 13244.172991845291, "2043": 12413.542222921038, "2044": 11582.911453997018, "2045": 10752.280685072765, "2046": 9921.649916148745, "2047": 9091.019147224491, "2048": 8260.388378300471, "2049": 7429.757609376451, "2050": 6599.126840452198}, "trendEmission": 452330.49774811405, "historicalEmissionChangePercent": -2.542950725723505, "neededEmissionChangePercent": 33.62235862650438, "hitNetZero": "2057-12-02", "budgetRunsOut": "2026-07-15", "electricCarChangePercent": 0.0663886080143808, "electricCarChangeYearly": {"2015": 0.005141388174807198, "2016": 0.0024509803921568627, "2017": 0.022779043280182234, "2018": 0.05647840531561462, "2019": 0.09235668789808917, "2020": 0.2231404958677686, "2021": 0.3563636363636364, "2022": 0.4580152671755725}, "climatePlanLink": "https://www.skurup.se/36987", "climatePlanYear": 2017, "climatePlanComment": "Klimatstrategi och energiplan, gäller till 2030", "bicycleMetrePerCapita": 4.412308506, "totalConsumptionEmission": 5808.7, "electricVehiclePerChargePoints": 20.28, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Skövde", "län": "Västra Götalands län", "emissions": {"1990": 756741.622217686, "2000": 645559.291126671, "2005": 614079.091128438, "2010": 189373.699134178, "2015": 136142.01973774, "2016": 147686.49235449499, "2017": 136263.58698435803, "2018": 140813.83315306, "2019": 136091.66800786095, "2020": 108306.95490232401, "2021": 131967.22007073794}, "budget": 277650.1322809709, "emissionBudget": {"2024": 114298.38369825669, "2025": 75728.08377400617, "2026": 50173.436286049284, "2027": 33242.273979397076, "2028": 22024.5783649576, "2029": 14592.324594123822, "2030": 9668.10503846306, "2031": 6405.576742200152, "2032": 4243.997477993707, "2033": 2811.8490056572887, "2034": 1862.982923909175, "2035": 1234.3142778272625, "2036": 817.7915733394618, "2037": 541.825586431907, "2038": 358.9850711147136, "2039": 237.84458414355714, "2040": 157.5832834239078, "2041": 104.40637655920465, "2042": 69.17416130300427, "2043": 45.831152748229314, "2044": 30.365305811670154, "2045": 20.118450917032064, "2046": 13.329425029056415, "2047": 8.831374360677975, "2048": 5.8512031035416365, "2049": 3.876698728946982, "2050": 2.5684962167733407}, "approximatedHistoricalEmission": {"2021": 131967.22007073794, "2022": 120830.91176124569, "2023": 117564.64772975072, "2024": 114298.38369825669}, "totalApproximatedHistoricalEmission": 361528.3613754937, "trend": {"2024": 114298.38369825669, "2025": 111032.11966676265, "2026": 107765.85563526768, "2027": 104499.59160377271, "2028": 101233.32757227868, "2029": 97967.06354078464, "2030": 94700.79950928967, "2031": 91434.5354777947, "2032": 88168.27144630067, "2033": 84902.00741480663, "2034": 81635.74338331167, "2035": 78369.4793518167, "2036": 75103.21532032266, "2037": 71836.95128882863, "2038": 68570.68725733366, "2039": 65304.42322583869, "2040": 62038.159194344655, "2041": 58771.89516285062, "2042": 55505.63113135565, "2043": 52239.36709986068, "2044": 48973.10306836665, "2045": 45706.83903687261, "2046": 42440.57500537764, "2047": 39174.310973882675, "2048": 35908.04694238864, "2049": 32641.782910894603, "2050": 29375.518879399635}, "trendEmission": 1867760.7335095326, "historicalEmissionChangePercent": 0.3600615966581233, "neededEmissionChangePercent": 33.74527152201436, "hitNetZero": "2058-12-20", "budgetRunsOut": "2026-07-09", "electricCarChangePercent": 0.06008614401892933, "electricCarChangeYearly": {"2015": 0.016739203213927016, "2016": 0.016448370392933294, "2017": 0.02524271844660194, "2018": 0.039271127866792335, "2019": 0.05175237471339666, "2020": 0.19880034275921166, "2021": 0.3125822007891276, "2022": 0.4500838926174497}, "climatePlanLink": "https://skovde.se/globalassets/energi--och-klimatplanen_webb.pdf", "climatePlanYear": 2021, "climatePlanComment": "Energi– och klimatplan 2021–2030", "bicycleMetrePerCapita": 3.108804107, "totalConsumptionEmission": 6036.7, "electricVehiclePerChargePoints": 9.99388379204893, "procurementScore": "2", "procurementLink": "https://docs.google.com/presentation/d/1UhGuEOewdkD4-C4WKgel_IngCRST9XLi/edit#slide=id.p2"}, {"kommun": "Smedjebacken", "län": "Dalarnas län", "emissions": {"1990": 156725.679104253, "2000": 102936.632525076, "2005": 107790.352597616, "2010": 97238.6448570713, "2015": 74797.6949325639, "2016": 77030.7376980843, "2017": 76643.8132772613, "2018": 75233.7525336295, "2019": 67373.4547326501, "2020": 57546.8436852671, "2021": 71079.1096970575}, "budget": 148028.85982644797, "emissionBudget": {"2024": 58659.221877338365, "2025": 39467.43796761765, "2026": 26554.71057875591, "2027": 17866.694425416128, "2028": 12021.172994691742, "2029": 8088.155353613506, "2030": 5441.919607435478, "2031": 3661.4639208877174, "2032": 2463.527396774651, "2033": 1657.5247949426407, "2034": 1115.2254484551843, "2035": 750.3524560699601, "2036": 504.856492568504, "2037": 339.6804741914614, "2038": 228.54578725909894, "2039": 153.77150246334133, "2040": 103.46143437343986, "2041": 69.61152249365234, "2042": 46.836428406682174, "2043": 31.512757476239646, "2044": 21.20259630246736, "2045": 14.265653848425048, "2046": 9.598299982696062, "2047": 6.457983877689156, "2048": 4.345098177769026, "2049": 2.9234941635077947, "2050": 1.9670023033754487}, "approximatedHistoricalEmission": {"2021": 71079.1096970575, "2022": 62901.643468535505, "2023": 60780.43267293647, "2024": 58659.221877338365}, "totalApproximatedHistoricalEmission": 188551.24192866992, "trend": {"2024": 58659.221877338365, "2025": 56538.01108173933, "2026": 54416.80028614029, "2027": 52295.58949054219, "2028": 50174.37869494315, "2029": 48053.16789934412, "2030": 45931.95710374508, "2031": 43810.746308146976, "2032": 41689.53551254794, "2033": 39568.324716948904, "2034": 37447.11392134987, "2035": 35325.90312575176, "2036": 33204.69233015273, "2037": 31083.48153455369, "2038": 28962.270738954656, "2039": 26841.05994335655, "2040": 24719.849147757515, "2041": 22598.63835215848, "2042": 20477.427556559443, "2043": 18356.21676096134, "2044": 16235.005965362303, "2045": 14113.795169763267, "2046": 11992.584374164231, "2047": 9871.373578566127, "2048": 7750.162782967091, "2049": 5628.951987368055, "2050": 3507.74119176995}, "trendEmission": 808170.5198983992, "historicalEmissionChangePercent": -0.14575255536473466, "neededEmissionChangePercent": 32.71741986256217, "hitNetZero": "2051-08-20", "budgetRunsOut": "2026-08-26", "electricCarChangePercent": 0.07060793700347996, "electricCarChangeYearly": {"2015": 0.013888888888888888, "2016": 0.004901960784313725, "2017": 0.03864734299516908, "2018": 0.05405405405405406, "2019": 0.050505050505050504, "2020": 0.2642857142857143, "2021": 0.375886524822695, "2022": 0.5}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.874182105, "totalConsumptionEmission": 6344.6, "electricVehiclePerChargePoints": 3.734042553191489, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1vh9_Pz3sY-ayXP2HYXuymnvxr7-g-JhA/view?usp=drive_link"}, {"kommun": "Sollefteå", "län": "Västernorrlands län", "emissions": {"1990": 141431.830084516, "2000": 129974.890278038, "2005": 105338.162854244, "2010": 90225.7930607062, "2015": 79217.2301977891, "2016": 73676.8364350968, "2017": 65793.0483123263, "2018": 61568.7014981703, "2019": 63136.927975969, "2020": 58393.1923098289, "2021": 56168.719156538}, "budget": 135660.94077333045, "emissionBudget": {"2024": 43485.89190282021, "2025": 31559.92762519119, "2026": 22904.647648326387, "2027": 16623.069929831792, "2028": 12064.208894838372, "2029": 8755.611139979728, "2030": 6354.393156051544, "2031": 4611.706908418981, "2032": 3346.950698023011, "2033": 2429.0526690988477, "2034": 1762.8872970078232, "2035": 1279.4171412942228, "2036": 928.5382135408387, "2037": 673.8874962496217, "2038": 489.07449470480003, "2039": 354.9462821345381, "2040": 257.6026036221238, "2041": 186.95533587176564, "2042": 135.68301375632086, "2043": 98.47207695973675, "2044": 71.4662040023606, "2045": 51.866665883317786, "2046": 37.642282354367964, "2047": 27.31892240834595, "2048": 19.826734057389697, "2049": 14.38927119842635, "2050": 10.44302732979319}, "approximatedHistoricalEmission": {"2021": 56168.719156538, "2022": 50797.95916786697, "2023": 47141.92553534359, "2024": 43485.89190282021}, "totalApproximatedHistoricalEmission": 147767.19023288967, "trend": {"2024": 43485.89190282021, "2025": 39829.85827029776, "2026": 36173.82463777438, "2027": 32517.791005250998, "2028": 28861.757372727618, "2029": 25205.72374020517, "2030": 21549.69010768179, "2031": 17893.65647515841, "2032": 14237.622842635028, "2033": 10581.58921011258, "2034": 6925.555577589199, "2035": 3269.5219450658187, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 258789.53713590885, "historicalEmissionChangePercent": -5.481807858931987, "neededEmissionChangePercent": 27.424904390326116, "hitNetZero": "2035-11-20", "budgetRunsOut": "2027-09-10", "electricCarChangePercent": 0.062291872535175784, "electricCarChangeYearly": {"2015": 0.005319148936170213, "2016": 0.008086253369272238, "2017": 0.028846153846153848, "2018": 0.030821917808219176, "2019": 0.08960573476702509, "2020": 0.22167487684729065, "2021": 0.34051724137931033, "2022": 0.42433234421364985}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.558660435, "totalConsumptionEmission": 6071.1, "electricVehiclePerChargePoints": 11.416666666666666, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Sollentuna", "län": "Stockholms län", "emissions": {"1990": 192297.397274444, "2000": 179489.421214289, "2005": 174951.835121893, "2010": 187693.420165136, "2015": 168986.690555682, "2016": 160866.118581577, "2017": 143683.536050638, "2018": 125272.787293164, "2019": 123667.272404552, "2020": 112121.031157713, "2021": 112633.150159207}, "budget": 280600.25332633883, "emissionBudget": {"2024": 73911.42809680477, "2025": 56795.82103140702, "2026": 43643.66065835856, "2027": 33537.13496999459, "2028": 25770.968911156768, "2029": 19803.207376360922, "2030": 15217.395346799654, "2031": 11693.51594112092, "2032": 8985.658317276107, "2033": 6904.856999501684, "2034": 5305.905087877868, "2035": 4077.2211218277207, "2036": 3133.0624654891585, "2037": 2407.541832868925, "2038": 1850.0294012200304, "2039": 1421.6196531463897, "2040": 1092.4163891013197, "2041": 839.4464472518653, "2042": 645.056541474518, "2043": 495.68134222411135, "2044": 380.8968318768732, "2045": 292.69287377825736, "2046": 224.91423186283623, "2047": 172.8310328893546, "2048": 132.80869637372572, "2049": 102.05429856905566, "2050": 78.42167072488807}, "approximatedHistoricalEmission": {"2021": 112633.150159207, "2022": 94380.50378846377, "2023": 84145.96594263613, "2024": 73911.42809680477}, "totalApproximatedHistoricalEmission": 271798.75885910576, "trend": {"2024": 73911.42809680477, "2025": 63676.8902509734, "2026": 53442.352405145764, "2027": 43207.8145593144, "2028": 32973.276713483036, "2029": 22738.73886765167, "2030": 12504.201021824032, "2031": 2269.6631759926677, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 267768.65104278736, "historicalEmissionChangePercent": -6.410257178274332, "neededEmissionChangePercent": 23.156915657184637, "hitNetZero": "2031-03-20", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.09384386828142256, "electricCarChangeYearly": {"2015": 0.032583065380493034, "2016": 0.07394502516453735, "2017": 0.14926209602092286, "2018": 0.21539614159955048, "2019": 0.27415245933764454, "2020": 0.4370603929177783, "2021": 0.5860694183864915, "2022": 0.6611704598235021}, "climatePlanLink": "https://www.sollentuna.se/globalassets/kommun-och-politik/politik-och-demokrati/miljo-och-klimat/plan-for-miljo--och-klimatarbetet-i-sollentuna-kommun-2021-2030.pdf", "climatePlanYear": 2021, "climatePlanComment": "Plan för miljö– och klimatarbetet 2021–2030", "bicycleMetrePerCapita": 1.370438966, "totalConsumptionEmission": 6657.6, "electricVehiclePerChargePoints": 79.54761904761905, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/1lqp_KRVXeN4AnuRHFj3tuIUnA5yjGrke/edit?usp=drive_link&ouid=104089955738391943844&rtpof=true&sd=true"}, {"kommun": "Solna", "län": "Stockholms län", "emissions": {"1990": 198204.603662609, "2000": 163954.032194089, "2005": 162074.708642765, "2010": 172274.023197084, "2015": 143491.213214482, "2016": 144940.41300953, "2017": 128444.55858096, "2018": 113321.756228237, "2019": 110709.890661572, "2020": 99936.1143370108, "2021": 101943.766644076}, "budget": 249660.90529788865, "emissionBudget": {"2024": 70601.32931604981, "2025": 53210.731027217036, "2026": 40103.804331729196, "2027": 30225.39045845801, "2028": 22780.23852324269, "2029": 17168.98472789174, "2030": 12939.901234388819, "2031": 9752.530310293901, "2032": 7350.276152064741, "2033": 5539.747921068858, "2034": 4175.191026035946, "2035": 3146.7533094046757, "2036": 2371.6415197535503, "2037": 1787.4561318195756, "2038": 1347.167941093985, "2039": 1015.3320292475842, "2040": 765.234309820988, "2041": 576.7409399673453, "2042": 434.6774674964972, "2043": 327.60722822948253, "2044": 246.91064988103886, "2045": 186.09134283805315, "2046": 140.25311543246312, "2047": 105.70581139623754, "2048": 79.66823787466943, "2049": 60.04426854322247, "2050": 45.25409725469687}, "approximatedHistoricalEmission": {"2021": 101943.766644076, "2022": 87200.30110002682, "2023": 78900.81520804018, "2024": 70601.32931604981}, "totalApproximatedHistoricalEmission": 252373.6642881299, "trend": {"2024": 70601.32931604981, "2025": 62301.843424063176, "2026": 54002.35753207654, "2027": 45702.8716400899, "2028": 37403.385748099536, "2029": 29103.899856112897, "2030": 20804.41396412626, "2031": 12504.928072135895, "2032": 4205.442180149257, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 301329.80707487836, "historicalEmissionChangePercent": -5.362065812309443, "neededEmissionChangePercent": 24.632111685862217, "hitNetZero": "2032-07-01", "budgetRunsOut": "2029-01-04", "electricCarChangePercent": 0.09063096588168804, "electricCarChangeYearly": {"2015": 0.035277636271013754, "2016": 0.10657069886231715, "2017": 0.15093504481575745, "2018": 0.21587132792768843, "2019": 0.28033964728935334, "2020": 0.5307766677408959, "2021": 0.6498606229547934, "2022": 0.5627859684799187}, "climatePlanLink": "https://www.solna.se/download/18.5002ae1016ed574744199bd/1596180205909/Klimatstrategi_2019.pdf", "climatePlanYear": 2019, "climatePlanComment": "Klimatstrategi", "bicycleMetrePerCapita": 1.307139177, "totalConsumptionEmission": 6978.6, "electricVehiclePerChargePoints": 58.33116883116883, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1e7xk7cX43q9lQh-RVgv2iXNVYpy-bTcu/view?usp=drive_link"}, {"kommun": "Sorsele", "län": "Västerbottens län", "emissions": {"1990": 18803.4188918504, "2000": 18014.6767088845, "2005": 16886.9733412671, "2010": 17027.8369689132, "2015": 14856.7633581033, "2016": 13339.3468415919, "2017": 18407.0111414451, "2018": 15722.7611813232, "2019": 16299.1702382612, "2020": 14882.5454482634, "2021": 15392.0842487046}, "budget": 32259.598591818274, "emissionBudget": {"2024": 16110.922990091145, "2025": 9777.488252779815, "2026": 5933.8174846993315, "2027": 3601.1487849870828, "2028": 2185.485584120733, "2029": 1326.3398775168014, "2030": 804.9366618901936, "2031": 488.5045233413185, "2032": 296.46639372165, "2033": 179.92120524319066, "2034": 109.19160074027087, "2035": 66.26681749995639, "2036": 40.216381771139126, "2037": 24.406745695356108, "2038": 14.8121041526733, "2039": 8.989253715680189, "2040": 5.455449241510101, "2041": 3.310833954411433, "2042": 2.0092976743835336, "2043": 1.2194139603116347, "2044": 0.7400448552547685, "2045": 0.4491226159565109, "2046": 0.2725660785712491, "2047": 0.16541644652983178, "2048": 0.10038887056668012, "2049": 0.06092456672279058, "2050": 0.03697424634232045}, "approximatedHistoricalEmission": {"2021": 15392.0842487046, "2022": 15926.314491379482, "2023": 16018.618740735314, "2024": 16110.922990091145}, "totalApproximatedHistoricalEmission": 47696.43685151267, "trend": {"2024": 16110.922990091145, "2025": 16203.227239447006, "2026": 16295.531488802837, "2027": 16387.83573815867, "2028": 16480.13998751453, "2029": 16572.44423687036, "2030": 16664.74848622619, "2031": 16757.052735582052, "2032": 16849.356984937884, "2033": 16941.661234293715, "2034": 17033.965483649547, "2035": 17126.269733005407, "2036": 17218.57398236124, "2037": 17310.87823171707, "2038": 17403.18248107293, "2039": 17495.48673042876, "2040": 17587.790979784593, "2041": 17680.095229140454, "2042": 17772.399478496285, "2043": 17864.703727852117, "2044": 17957.007977207977, "2045": 18049.31222656381, "2046": 18141.61647591964, "2047": 18233.9207252755, "2048": 18326.224974631332, "2049": 18418.529223987163, "2050": 18510.833473343024}, "trendEmission": 450082.83402464417, "historicalEmissionChangePercent": 1.9320618194053696, "neededEmissionChangePercent": 39.31143325063774, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-12-28", "electricCarChangePercent": 0.017857142857142853, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.0, "2018": 0.0, "2019": 0.0, "2020": 0.0, "2021": 0.0, "2022": 0.21428571428571427}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.773361199, "totalConsumptionEmission": 6375.6, "electricVehiclePerChargePoints": 0.7142857142857143, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1fBenhGplUcQVmAaD-1OG1dxAdjd_Kpma/view?usp=drive_link"}, {"kommun": "Sotenäs", "län": "Västra Götalands län", "emissions": {"1990": 53413.0281071896, "2000": 46342.6758004993, "2005": 36327.5732888974, "2010": 35562.6170894389, "2015": 29758.4610683972, "2016": 29638.4179865095, "2017": 29039.753531695, "2018": 30713.3023714351, "2019": 30960.0154003337, "2020": 27755.8737801066, "2021": 27416.5036901078}, "budget": 60811.247051312144, "emissionBudget": {"2024": 27425.18283000472, "2025": 17469.78841134549, "2026": 11128.221424408588, "2027": 7088.655520878666, "2028": 4515.459854480213, "2029": 2876.3391925829, "2030": 1832.22250167493, "2031": 1167.1221893094532, "2032": 743.4545769049647, "2033": 473.57912734738466, "2034": 301.6689880271994, "2035": 192.16256182380326, "2036": 122.40718016184549, "2037": 77.97313697822739, "2038": 49.66873742362784, "2039": 31.638889659475296, "2040": 20.15391151070933, "2041": 12.838002646526451, "2042": 8.177782851961089, "2043": 5.209231857568085, "2044": 3.3182706165149356, "2045": 2.11373196384598, "2046": 1.3464431721595438, "2047": 0.8576816961013504, "2048": 0.5463415813141517, "2049": 0.3480185304520904, "2050": 0.22168713068974513}, "approximatedHistoricalEmission": {"2021": 27416.5036901078, "2022": 28058.80416422151, "2023": 27741.993497113115, "2024": 27425.18283000472}, "totalApproximatedHistoricalEmission": 83221.64092139088, "trend": {"2024": 27425.18283000472, "2025": 27108.372162896325, "2026": 26791.56149578793, "2027": 26474.750828679535, "2028": 26157.94016157114, "2029": 25841.129494462744, "2030": 25524.31882735435, "2031": 25207.50816024607, "2032": 24890.697493137675, "2033": 24573.88682602928, "2034": 24257.076158920885, "2035": 23940.26549181249, "2036": 23623.454824704095, "2037": 23306.6441575957, "2038": 22989.833490487305, "2039": 22673.02282337891, "2040": 22356.212156270514, "2041": 22039.40148916212, "2042": 21722.590822053724, "2043": 21405.780154945445, "2044": 21088.96948783705, "2045": 20772.158820728655, "2046": 20455.34815362026, "2047": 20138.537486511865, "2048": 19821.72681940347, "2049": 19504.916152295074, "2050": 19188.10548518668}, "trendEmission": 605972.7480974882, "historicalEmissionChangePercent": -1.2381725395485168, "neededEmissionChangePercent": 36.30019344034222, "hitNetZero": "2110-07-05", "budgetRunsOut": "2026-03-31", "electricCarChangePercent": 0.08320347022902196, "electricCarChangeYearly": {"2015": 0.015, "2016": 0.02631578947368421, "2017": 0.0379746835443038, "2018": 0.046511627906976744, "2019": 0.15384615384615385, "2020": 0.3251231527093596, "2021": 0.4271356783919598, "2022": 0.5887445887445888}, "climatePlanLink": "https://www.sotenas.se/download/18.31f128a417e9f4ede9dc1776/1644237756609/H%C3%A5llbarhetsstrategi%202030%20antagen%20210218%20m%C3%A5l%202022.pdf", "climatePlanYear": 2018, "climatePlanComment": "Hållbarhetsstrategi 2030. ", "bicycleMetrePerCapita": 1.432852918, "totalConsumptionEmission": 6663.6, "electricVehiclePerChargePoints": 7.557142857142857, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Staffanstorp", "län": "Skåne län", "emissions": {"1990": 95093.944420055, "2000": 78615.2606846436, "2005": 75340.2411443428, "2010": 81906.7874350151, "2015": 70637.9578553952, "2016": 68083.2118413961, "2017": 66847.6624430646, "2018": 64087.1796820814, "2019": 64053.4994027899, "2020": 59210.0760544293, "2021": 59245.4924784036}, "budget": 133945.88157668203, "emissionBudget": {"2024": 52869.76194854034, "2025": 35627.63833377772, "2026": 24008.59331422642, "2027": 16178.803307920478, "2028": 10902.499494681977, "2029": 7346.9275180167115, "2030": 4950.914602777123, "2031": 3336.300153211338, "2032": 2248.251001153268, "2033": 1515.0413128511123, "2034": 1020.9492527605646, "2035": 687.9927087604041, "2036": 463.621444481811, "2037": 312.4231420572454, "2038": 210.5343073636689, "2039": 141.87391588609722, "2040": 95.60535886479857, "2041": 64.42611093504485, "2042": 43.415179018202345, "2043": 29.256426343705755, "2044": 19.715189520370686, "2045": 13.285583593081496, "2046": 8.952829554409337, "2047": 6.033092672876291, "2048": 4.065553463104543, "2049": 2.739676954685532, "2050": 1.84620123290751}, "approximatedHistoricalEmission": {"2021": 59245.4924784036, "2022": 56778.178430338856, "2023": 54823.9701894396, "2024": 52869.76194854034}, "totalApproximatedHistoricalEmission": 167659.77583325043, "trend": {"2024": 52869.76194854034, "2025": 50915.55370764062, "2026": 48961.34546674136, "2027": 47007.1372258421, "2028": 45052.92898494238, "2029": 43098.72074404312, "2030": 41144.512503143866, "2031": 39190.30426224414, "2032": 37236.096021344885, "2033": 35281.88778044516, "2034": 33327.679539545905, "2035": 31373.471298646647, "2036": 29419.263057746924, "2037": 27465.054816847667, "2038": 25510.84657594841, "2039": 23556.638335048687, "2040": 21602.43009414943, "2041": 19648.221853250172, "2042": 17694.01361235045, "2043": 15739.805371451192, "2044": 13785.597130551469, "2045": 11831.388889652211, "2046": 9877.180648752954, "2047": 7922.972407853231, "2048": 5968.7641669539735, "2049": 4014.555926054716, "2050": 2060.347685154993}, "trendEmission": 714091.4252380393, "historicalEmissionChangePercent": -2.8525365752099567, "neededEmissionChangePercent": 32.612447984057255, "hitNetZero": "2051-01-13", "budgetRunsOut": "2026-08-31", "electricCarChangePercent": 0.08181108702724145, "electricCarChangeYearly": {"2015": 0.013043478260869565, "2016": 0.014344262295081968, "2017": 0.024844720496894408, "2018": 0.06976744186046512, "2019": 0.10978043912175649, "2020": 0.3087557603686636, "2021": 0.45, "2022": 0.5562015503875969}, "climatePlanLink": "https://staffanstorp.se/wp-content/uploads/2021/11/6-17-miljoplan.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljöplan", "bicycleMetrePerCapita": 4.478156915, "totalConsumptionEmission": 5848.9, "electricVehiclePerChargePoints": 39.0, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Stenungsund", "län": "Västra Götalands län", "emissions": {"1990": 780521.849217751, "2000": 1113076.35589691, "2005": 1058830.50410254, "2010": 1143575.59931725, "2015": 963030.393684002, "2016": 1081848.44510307, "2017": 1033823.80035977, "2018": 1052944.03642716, "2019": 1053158.16416174, "2020": 631828.660555302, "2021": 1054375.11108919}, "budget": 2035414.3806632855, "emissionBudget": {"2024": 851571.7188233212, "2025": 560431.0135975723, "2026": 368827.32723439153, "2027": 242730.31651411485, "2028": 159744.14639184176, "2029": 105129.811030318, "2030": 69187.36878257732, "2031": 45533.15517399608, "2032": 29965.993165811713, "2033": 19721.0305980794, "2034": 12978.680389412313, "2035": 8541.44735554137, "2036": 5621.2435115515045, "2037": 3699.4173587758546, "2038": 2434.637241081693, "2039": 1602.2681197623215, "2040": 1054.4745986330452, "2041": 693.9641783094718, "2042": 456.70733216432063, "2043": 300.56535160181477, "2044": 197.80617524883291, "2045": 130.17895362206406, "2046": 85.67255266331969, "2047": 56.382280511780635, "2048": 37.10595116970498, "2049": 24.419934768705307, "2050": 16.071093593059476}, "approximatedHistoricalEmission": {"2021": 1054375.11108919, "2022": 894905.3654717505, "2023": 873238.5421475321, "2024": 851571.7188233212}, "totalApproximatedHistoricalEmission": 2721117.3225755384, "trend": {"2024": 851571.7188233212, "2025": 829904.8954991102, "2026": 808238.0721748918, "2027": 786571.2488506809, "2028": 764904.42552647, "2029": 743237.6022022516, "2030": 721570.7788780406, "2031": 699903.9555538297, "2032": 678237.1322296113, "2033": 656570.3089054003, "2034": 634903.4855811894, "2035": 613236.662256971, "2036": 591569.8389327601, "2037": 569903.0156085491, "2038": 548236.1922843307, "2039": 526569.3689601198, "2040": 504902.54563590884, "2041": 483235.72231169045, "2042": 461568.8989874795, "2043": 439902.07566326857, "2044": 418235.2523390502, "2045": 396568.42901483923, "2046": 374901.6056906283, "2047": 353234.7823664099, "2048": 331567.95904219896, "2049": 309901.135717988, "2050": 288234.3123937696}, "trendEmission": 14817478.405822214, "historicalEmissionChangePercent": 6.106510925101933, "neededEmissionChangePercent": 34.188630128304304, "hitNetZero": "2063-04-11", "budgetRunsOut": "2026-06-20", "electricCarChangePercent": 0.08220843541623976, "electricCarChangeYearly": {"2015": 0.023376623376623377, "2016": 0.012716763005780347, "2017": 0.01797175866495507, "2018": 0.06735751295336788, "2019": 0.10340314136125654, "2020": 0.26644736842105265, "2021": 0.42391304347826086, "2022": 0.6045272969374168}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.347065342, "totalConsumptionEmission": 6323.3, "electricVehiclePerChargePoints": 41.19444444444444, "procurementScore": "2", "procurementLink": "https://goteborg.se/wps/portal/start/foretag-och-organisationer/upphandling-och-inkop/hallbar-upphandling/ekologisk-hallbarhet-i-upphandling"}, {"kommun": "Stockholm", "län": "Stockholms län", "emissions": {"1990": 2077052.10424792, "2000": 2091721.57819248, "2005": 2337205.12315979, "2010": 2284948.94427555, "2015": 1888969.22376053, "2016": 1768737.31098062, "2017": 1650089.99560539, "2018": 1601080.53631855, "2019": 1388008.49167374, "2020": 996569.234833702, "2021": 1052156.51907693}, "budget": 3064703.776797525, "emissionBudget": {"2024": 552903.9509764314, "2025": 461634.7790530849, "2026": 385431.6266958176, "2027": 321807.51017526997, "2028": 268685.9780890166, "2029": 224333.34381268045, "2030": 187302.10450172916, "2031": 156383.70005339195, "2032": 130569.07025923717, "2033": 109015.72288250664, "2034": 91020.23788635129, "2035": 75995.31045459305, "2036": 63450.58357572148, "2037": 52976.64463789673, "2038": 44231.66374412784, "2039": 36930.23767258483, "2040": 30834.075390950376, "2041": 25744.221135099644, "2042": 21494.561242703217, "2043": 17946.402829270573, "2044": 14983.947375049825, "2045": 12510.511497717687, "2046": 10445.371571121517, "2047": 8721.129210320298, "2048": 7281.511642283836, "2049": 6079.5351746391325, "2050": 5075.971825004423}, "approximatedHistoricalEmission": {"2021": 1052156.51907693, "2022": 861250.7917104363, "2023": 707077.3713434339, "2024": 552903.9509764314}, "totalApproximatedHistoricalEmission": 2370858.398080551, "trend": {"2024": 552903.9509764314, "2025": 398730.5306094289, "2026": 244557.1102424264, "2027": 90383.68987542391, "2028": 0, "2029": 0, "2030": 0, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 1010123.3062154949, "historicalEmissionChangePercent": -8.662455617140123, "neededEmissionChangePercent": 16.507238149078976, "hitNetZero": "2027-08-01", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.09141670840433368, "electricCarChangeYearly": {"2015": 0.039811313828420396, "2016": 0.06210059781488353, "2017": 0.07784613510385575, "2018": 0.12369662866687207, "2019": 0.15769794273853854, "2020": 0.44371911913877166, "2021": 0.5427802207664004, "2022": 0.6318091888327105}, "climatePlanLink": "https://start.stockholm/globalassets/start/om-stockholms-stad/politik-och-demokrati/styrdokument/klimathandlingsplan-2020-2023.pdf", "climatePlanYear": 2020, "climatePlanComment": "Klimathandlingsplan 2020–2023", "bicycleMetrePerCapita": 1.218575773, "totalConsumptionEmission": 6981.8, "electricVehiclePerChargePoints": 17.190896840844438, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1lWsJ0ha6OjIKLcy0oKrYebDU7o1TC6ta/view?usp=drive_link"}, {"kommun": "Storfors", "län": "Värmlands län", "emissions": {"1990": 33726.0008882249, "2000": 19217.1311355889, "2005": 17047.9871714679, "2010": 17513.2640623166, "2015": 12041.2202946075, "2016": 11782.8556742392, "2017": 12914.4783347831, "2018": 11539.2978493834, "2019": 11536.2927648921, "2020": 10885.2916539786, "2021": 11281.0686929347}, "budget": 24285.27000732933, "emissionBudget": {"2024": 10542.836091667414, "2025": 6829.980809081064, "2026": 4424.676381840425, "2027": 2866.444523238793, "2028": 1856.9729163758757, "2029": 1203.0054599686582, "2030": 779.3447733954272, "2031": 504.8840558334572, "2032": 327.0797707723964, "2033": 211.89256268336698, "2034": 137.2706664630993, "2035": 88.92825511474454, "2036": 57.61052059785074, "2037": 37.32190718543731, "2038": 24.17830530783926, "2039": 15.663466624427762, "2040": 10.147286320146486, "2041": 6.573731226422794, "2042": 4.258669842739027, "2043": 2.7589002660402335, "2044": 1.7873023641253714, "2045": 1.1578706849715277, "2046": 0.7501050465921028, "2047": 0.4859416411745285, "2048": 0.31480827878738915, "2049": 0.20394270421761387, "2050": 0.13212049811333998}, "approximatedHistoricalEmission": {"2021": 11281.0686929347, "2022": 10932.39097848389, "2023": 10737.613535075681, "2024": 10542.836091667414}, "totalApproximatedHistoricalEmission": 32581.95690586063, "trend": {"2024": 10542.836091667414, "2025": 10348.058648259204, "2026": 10153.281204850937, "2027": 9958.503761442727, "2028": 9763.72631803446, "2029": 9568.948874626192, "2030": 9374.171431217983, "2031": 9179.393987809715, "2032": 8984.616544401506, "2033": 8789.839100993238, "2034": 8595.061657585029, "2035": 8400.284214176761, "2036": 8205.506770768552, "2037": 8010.7293273602845, "2038": 7815.951883952017, "2039": 7621.174440543808, "2040": 7426.39699713554, "2041": 7231.619553727331, "2042": 7036.842110319063, "2043": 6842.064666910854, "2044": 6647.287223502586, "2045": 6452.509780094377, "2046": 6257.732336686109, "2047": 6062.9548932779, "2048": 5868.177449869632, "2049": 5673.400006461365, "2050": 5478.622563053155}, "trendEmission": 208278.96251136746, "historicalEmissionChangePercent": -0.8705464509657984, "neededEmissionChangePercent": 35.216854841562274, "hitNetZero": "2078-02-02", "budgetRunsOut": "2026-05-10", "electricCarChangePercent": 0.062111168637293435, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.010309278350515464, "2017": 0.0125, "2018": 0.0, "2019": 0.029850746268656716, "2020": 0.07575757575757576, "2021": 0.2857142857142857, "2022": 0.5172413793103449}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.950304305, "totalConsumptionEmission": 6219.8, "electricVehiclePerChargePoints": 6.933333333333334, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Storuman", "län": "Västerbottens län", "emissions": {"1990": 59212.253504431, "2000": 57571.5872661453, "2005": 52314.6456948685, "2010": 41346.8178718481, "2015": 31882.5761340415, "2016": 30722.8480911588, "2017": 33850.8719145132, "2018": 32589.7091334306, "2019": 31916.3697016088, "2020": 28910.2275773557, "2021": 29140.3773059041}, "budget": 64878.70907578002, "emissionBudget": {"2024": 28333.352895804215, "2025": 18307.796537001297, "2026": 11829.712327829426, "2027": 7643.852359641809, "2028": 4939.129310739747, "2029": 3191.453366761735, "2030": 2062.1801842821824, "2031": 1332.4923236340617, "2032": 860.9993472329585, "2033": 556.3408229728511, "2034": 359.4835609351102, "2035": 232.2828475754211, "2036": 150.09120622204392, "2037": 96.98249535137789, "2038": 62.66592588153002, "2039": 40.49203160179996, "2040": 26.16421285055042, "2041": 16.90619134206339, "2042": 10.924055209574023, "2043": 7.0586556018037285, "2044": 4.561000283228888, "2045": 2.9471226189726862, "2046": 1.904304142053599, "2047": 1.2304796013905195, "2048": 0.7950831046375776, "2049": 0.513748576218371, "2050": 0.3319622791968569}, "approximatedHistoricalEmission": {"2021": 29140.3773059041, "2022": 29318.091447584447, "2023": 28825.722171694273, "2024": 28333.352895804215}, "totalApproximatedHistoricalEmission": 86880.67872013288, "trend": {"2024": 28333.352895804215, "2025": 27840.983619914157, "2026": 27348.6143440241, "2027": 26856.245068133925, "2028": 26363.875792243867, "2029": 25871.50651635381, "2030": 25379.137240463635, "2031": 24886.767964573577, "2032": 24394.39868868352, "2033": 23902.029412793345, "2034": 23409.660136903287, "2035": 22917.29086101323, "2036": 22424.92158512317, "2037": 21932.552309232997, "2038": 21440.18303334294, "2039": 20947.81375745288, "2040": 20455.444481562707, "2041": 19963.07520567265, "2042": 19470.70592978259, "2043": 18978.336653892417, "2044": 18485.96737800236, "2045": 17993.5981021123, "2046": 17501.228826222243, "2047": 17008.85955033207, "2048": 16516.49027444201, "2049": 16024.120998551953, "2050": 15531.751722661778}, "trendEmission": 570246.3600400588, "historicalEmissionChangePercent": -1.311758704299844, "neededEmissionChangePercent": 35.38429212974496, "hitNetZero": "2081-07-03", "budgetRunsOut": "2026-05-04", "electricCarChangePercent": 0.05899824729406899, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.047619047619047616, "2017": 0.0, "2018": 0.06896551724137931, "2019": 0.11428571428571428, "2020": 0.21739130434782608, "2021": 0.3333333333333333, "2022": 0.40425531914893614}, "climatePlanLink": "https://www.storuman.se/kommun/Trafik--infrastruktur/strategi-for-co2-effektiva-resor-i-storumans-kommun/", "climatePlanYear": 2020, "climatePlanComment": "Strategi för koldioxideffektiva resor i Storumans kommun", "bicycleMetrePerCapita": 3.261116272, "totalConsumptionEmission": 6942.8, "electricVehiclePerChargePoints": 1.9428571428571428, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Strängnäs", "län": "Södermanlands län", "emissions": {"1990": 150907.139732357, "2000": 155847.446536176, "2005": 158594.984069139, "2010": 130197.217695462, "2015": 110566.934191911, "2016": 105127.84769721, "2017": 106556.771837188, "2018": 106162.420185408, "2019": 104255.246866558, "2020": 95521.5227426158, "2021": 97788.2316329065}, "budget": 215058.3894829964, "emissionBudget": {"2024": 90886.22161693685, "2025": 59560.73645396197, "2026": 39032.11360122416, "2027": 25579.030463407325, "2028": 16762.78169643879, "2029": 10985.203313489203, "2030": 7198.965781695476, "2031": 4717.719540282343, "2032": 3091.6771013627445, "2033": 2026.0779000268196, "2034": 1327.755623369496, "2035": 870.1220201681194, "2036": 570.2196373004974, "2037": 373.68372162364915, "2038": 244.8872586492717, "2039": 160.48269158792297, "2040": 105.16959698662951, "2041": 68.92110308525278, "2042": 45.166270353702465, "2043": 29.59894555286427, "2044": 19.397164542934327, "2045": 12.711601216796002, "2046": 8.330331226360054, "2047": 5.459140603716993, "2048": 3.5775547599892548, "2049": 2.3444895432822017, "2050": 1.5364212674067066}, "approximatedHistoricalEmission": {"2021": 97788.2316329065, "2022": 95161.2417995669, "2023": 93023.73170825187, "2024": 90886.22161693685}, "totalApproximatedHistoricalEmission": 282522.2001327404, "trend": {"2024": 90886.22161693685, "2025": 88748.71152562089, "2026": 86611.20143430587, "2027": 84473.69134298991, "2028": 82336.18125167489, "2029": 80198.67116035987, "2030": 78061.16106904391, "2031": 75923.65097772889, "2032": 73786.14088641293, "2033": 71648.63079509791, "2034": 69511.12070378289, "2035": 67373.61061246693, "2036": 65236.10052115191, "2037": 63098.59042983595, "2038": 60961.08033852093, "2039": 58823.570247205906, "2040": 56686.06015588995, "2041": 54548.55006457493, "2042": 52411.03997325897, "2043": 50273.52988194395, "2044": 48136.019790628925, "2045": 45998.50969931297, "2046": 43860.99960799795, "2047": 41723.48951668199, "2048": 39585.97942536697, "2049": 37448.469334051944, "2050": 35310.95924273599}, "trendEmission": 1640563.3511757446, "historicalEmissionChangePercent": -1.955144619666009, "neededEmissionChangePercent": 34.46670419967959, "hitNetZero": "2066-06-28", "budgetRunsOut": "2026-06-09", "electricCarChangePercent": 0.06106344520813337, "electricCarChangeYearly": {"2015": 0.009823182711198428, "2016": 0.014349775784753363, "2017": 0.0343980343980344, "2018": 0.04862385321100918, "2019": 0.07553956834532374, "2020": 0.21895424836601307, "2021": 0.3390909090909091, "2022": 0.42768595041322316}, "climatePlanLink": "https://www.strangnas.se/download/18.269b989517934ecd2754df9c/1620303852652/Klimat%20och%20energiplan%20f%C3%B6r%20Str%C3%A4ngn%C3%A4s%20kommun.pdf", "climatePlanYear": 2021, "climatePlanComment": "Klimat– och energiplan 2021–2040", "bicycleMetrePerCapita": 2.468682063, "totalConsumptionEmission": 6398.4, "electricVehiclePerChargePoints": 21.7, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Strömstad", "län": "Västra Götalands län", "emissions": {"1990": 84583.3409593481, "2000": 73698.7217361907, "2005": 63504.0356072859, "2010": 55581.2012925234, "2015": 49517.6727306613, "2016": 48452.1122742838, "2017": 54509.8845101564, "2018": 55395.1975826076, "2019": 55630.1130746084, "2020": 49484.8103891686, "2021": 53167.1119846155}, "budget": 108467.48522292271, "emissionBudget": {"2024": 55336.83091146161, "2025": 33223.88174060133, "2026": 19947.407535490678, "2027": 11976.296764284969, "2028": 7190.492495379522, "2029": 4317.126015138127, "2030": 2591.97503405484, "2031": 1556.2053443901227, "2032": 934.3358026561693, "2033": 560.9692803537255, "2034": 336.80239225123574, "2035": 202.21401670092706, "2036": 121.4080110209574, "2037": 72.8925985475335, "2038": 43.76425310266135, "2039": 26.275779541386825, "2040": 15.77581111433564, "2041": 9.471696773950798, "2042": 5.68674657217129, "2043": 3.41428651570026, "2044": 2.049915934066617, "2045": 1.2307565042995112, "2046": 0.7389383865466965, "2047": 0.44365391302401497, "2048": 0.2663669909765634, "2049": 0.1599250492310388, "2050": 0.09601798360143102}, "approximatedHistoricalEmission": {"2021": 53167.1119846155, "2022": 54327.26358602685, "2023": 54832.04724874429, "2024": 55336.83091146161}, "totalApproximatedHistoricalEmission": 163411.2822828097, "trend": {"2024": 55336.83091146161, "2025": 55841.61457417894, "2026": 56346.39823689638, "2027": 56851.1818996137, "2028": 57355.96556233114, "2029": 57860.749225048465, "2030": 58365.53288776579, "2031": 58870.31655048323, "2032": 59375.10021320055, "2033": 59879.883875917876, "2034": 60384.667538635316, "2035": 60889.45120135264, "2036": 61394.23486407008, "2037": 61899.018526787404, "2038": 62403.80218950473, "2039": 62908.58585222217, "2040": 63413.36951493949, "2041": 63918.153177656815, "2042": 64422.936840374256, "2043": 64927.72050309158, "2044": 65432.50416580902, "2045": 65937.28782852634, "2046": 66442.07149124367, "2047": 66946.8551539611, "2048": 67451.63881667843, "2049": 67956.42247939575, "2050": 68461.2061421132}, "trendEmission": 1609374.481696472, "historicalEmissionChangePercent": 1.4655799219174028, "neededEmissionChangePercent": 39.96063527064059, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-12-11", "electricCarChangePercent": 0.07956377478869936, "electricCarChangeYearly": {"2015": 0.03415559772296015, "2016": 0.018867924528301886, "2017": 0.05008944543828265, "2018": 0.06108597285067873, "2019": 0.09382151029748284, "2020": 0.2514124293785311, "2021": 0.4421364985163205, "2022": 0.5956284153005464}, "climatePlanLink": "https://www.stromstad.se/download/18.52a121a217ce4d028c542f2/1636710420332/Strategi%20Agenda%202030%20antagen%20september%202021.pdf", "climatePlanYear": 2021, "climatePlanComment": "Strategi Agenda 2030. Gäller 2021–2025. ", "bicycleMetrePerCapita": 4.20120415, "totalConsumptionEmission": 6236.3, "electricVehiclePerChargePoints": 2.1517857142857144, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Strömsund", "län": "Jämtlands län", "emissions": {"1990": 115515.873891828, "2000": 101308.288350358, "2005": 102870.587877141, "2010": 80312.1296937297, "2015": 69823.1971354768, "2016": 66532.7472601122, "2017": 58379.1068225176, "2018": 44786.919796671, "2019": 44907.7582471524, "2020": 43357.7783332669, "2021": 45590.2016067924}, "budget": 110606.5210673896, "emissionBudget": {"2024": 24942.47138275951, "2025": 19906.885795641007, "2026": 15887.924496311514, "2027": 12680.343243631256, "2028": 10120.334145195211, "2029": 8077.160155885011, "2030": 6446.47847075191, "2031": 5145.011844737217, "2032": 4106.2957089808915, "2033": 3277.2838932999766, "2034": 2615.639612557049, "2035": 2087.5733703645196, "2036": 1666.1173640793497, "2037": 1329.7482667169686, "2038": 1061.2880526659997, "2039": 847.026733497766, "2040": 676.0222028860314, "2041": 539.5414344334716, "2042": 430.61449494966473, "2043": 343.6785970950656, "2044": 274.29401352371815, "2045": 218.91734455066495, "2046": 174.7205603558334, "2047": 139.4465763949159, "2048": 111.29398640126267, "2049": 88.82506641113949, "2050": 70.89235167205608}, "approximatedHistoricalEmission": {"2021": 45590.2016067924, "2022": 34408.20516955294, "2023": 29675.338276157156, "2024": 24942.47138275951}, "totalApproximatedHistoricalEmission": 99349.87994048605, "trend": {"2024": 24942.47138275951, "2025": 20209.604489361867, "2026": 15476.737595966086, "2027": 10743.870702568442, "2028": 6011.00380917266, "2029": 1278.136915775016, "2030": 0, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 66190.58920422383, "historicalEmissionChangePercent": -6.380512028296803, "neededEmissionChangePercent": 20.18879969768813, "hitNetZero": "2029-04-07", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.024459543701216134, "electricCarChangeYearly": {"2015": 0.02356020942408377, "2016": 0.018617021276595744, "2017": 0.03951367781155015, "2018": 0.05019305019305019, "2019": 0.05504587155963303, "2020": 0.1411764705882353, "2021": 0.08029197080291971, "2022": 0.22875816993464052}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.501032709, "totalConsumptionEmission": 6304.1, "electricVehiclePerChargePoints": 3.4482758620689653, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Sundbyberg", "län": "Stockholms län", "emissions": {"1990": 45302.3997962639, "2000": 64553.8466753027, "2005": 39084.3462444404, "2010": 30690.0107017824, "2015": 21870.9869602274, "2016": 24298.63491638, "2017": 16967.4555040747, "2018": 20365.4965119684, "2019": 19895.804846443, "2020": 17519.1526328395, "2021": 17518.5543303956}, "budget": 41009.23395359452, "emissionBudget": {"2024": 14700.602290145122, "2025": 10271.960729210055, "2026": 7177.473081709495, "2027": 5015.217756057966, "2028": 3504.3543673853, "2029": 2448.6473229160592, "2030": 1710.9781384631149, "2031": 1195.5360671590918, "2032": 835.3739044042388, "2033": 583.7126786294758, "2034": 407.8658543156053, "2035": 284.99390403372723, "2036": 199.13784024081687, "2037": 139.14641279865427, "2038": 97.22775024234187, "2039": 67.93732750312499, "2040": 47.470814214693874, "2041": 33.16995656183747, "2042": 23.177315083287937, "2043": 16.195014710632744, "2044": 11.316172754916177, "2045": 7.907110188361424, "2046": 5.525047459506743, "2047": 3.8605949205986416, "2048": 2.6975683467310256, "2049": 1.8849102625241918, "2050": 1.3170701317260358}, "approximatedHistoricalEmission": {"2021": 17518.5543303956, "2022": 16392.596084017074, "2023": 15546.599187080981, "2024": 14700.602290145122}, "totalApproximatedHistoricalEmission": 48048.77358136841, "trend": {"2024": 14700.602290145122, "2025": 13854.605393209029, "2026": 13008.608496272936, "2027": 12162.611599336844, "2028": 11316.614702400984, "2029": 10470.617805464892, "2030": 9624.6209085288, "2031": 8778.62401159294, "2032": 7932.627114656847, "2033": 7086.630217720754, "2034": 6240.633320784662, "2035": 5394.636423848802, "2036": 4548.63952691271, "2037": 3702.642629976617, "2038": 2856.6457330405246, "2039": 2010.648836104665, "2040": 1164.6519391685724, "2041": 318.6550422324799, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 127823.01484632562, "historicalEmissionChangePercent": -2.216617784703468, "neededEmissionChangePercent": 30.125579030893896, "hitNetZero": "2041-05-13", "budgetRunsOut": "2027-01-22", "electricCarChangePercent": 0.11283712498598085, "electricCarChangeYearly": {"2015": 0.007127882599580713, "2016": 0.01021021021021021, "2017": 0.01494345718901454, "2018": 0.23180873180873182, "2019": 0.2512846865364851, "2020": 0.4610318331503842, "2021": 0.6775294847920547, "2022": 0.6905537459283387}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 0.7312642807, "totalConsumptionEmission": 6735.9, "electricVehiclePerChargePoints": 111.1923076923077, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1u8cO9XWLg7ND9Hu_aZq3K_X91Jywc7jT/view?usp=drive_link"}, {"kommun": "Sundsvall", "län": "Västernorrlands län", "emissions": {"1990": 618552.082352451, "2000": 665540.962905154, "2005": 756615.042010583, "2010": 678961.798157491, "2015": 556956.660935583, "2016": 584362.917283945, "2017": 579844.672650631, "2018": 547232.688916581, "2019": 543403.79480495, "2020": 506020.197761347, "2021": 498927.295715117}, "budget": 1130643.937472883, "emissionBudget": {"2024": 466560.9441770986, "2025": 308813.6477586595, "2026": 204401.74050618816, "2027": 135292.17968569364, "2028": 89549.01185663769, "2029": 59271.90723905678, "2030": 39231.68904844753, "2031": 25967.1992565794, "2032": 17187.51992549199, "2033": 11376.307404978796, "2034": 7529.903716976827, "2035": 4983.994187967102, "2036": 3298.8732657610794, "2037": 2183.5027115053713, "2038": 1445.2462119824302, "2039": 956.5990471381309, "2040": 633.1666738848402, "2041": 419.08889426324345, "2042": 277.3922073585517, "2043": 183.60409392026781, "2044": 121.52635297612755, "2045": 80.4375008875989, "2046": 53.241057520367455, "2047": 35.23990893063766, "2048": 23.32506601628947, "2049": 15.43870915600627, "2050": 10.218780955959264}, "approximatedHistoricalEmission": {"2021": 498927.295715117, "2022": 492790.54507369176, "2023": 479675.7446253933, "2024": 466560.9441770986}, "totalApproximatedHistoricalEmission": 1455210.4096451928, "trend": {"2024": 466560.9441770986, "2025": 453446.14372880384, "2026": 440331.3432805054, "2027": 427216.54283221066, "2028": 414101.74238391593, "2029": 400986.9419356175, "2030": 387872.14148732275, "2031": 374757.3410390243, "2032": 361642.54059072956, "2033": 348527.74014243484, "2034": 335412.9396941364, "2035": 322298.13924584165, "2036": 309183.3387975469, "2037": 296068.53834924847, "2038": 282953.73790095374, "2039": 269838.9374526553, "2040": 256724.13700436056, "2041": 243609.33655606583, "2042": 230494.53610776737, "2043": 217379.73565947264, "2044": 204264.93521117792, "2045": 191150.13476287946, "2046": 178035.33431458473, "2047": 164920.53386628628, "2048": 151805.73341799155, "2049": 138690.93296969682, "2050": 125576.13252139837}, "trendEmission": 7697781.997080479, "historicalEmissionChangePercent": -1.7429413731647372, "neededEmissionChangePercent": 33.810651831706004, "hitNetZero": "2059-07-20", "budgetRunsOut": "2026-07-06", "electricCarChangePercent": 0.06560283314932576, "electricCarChangeYearly": {"2015": 0.021411764705882352, "2016": 0.02212689094603748, "2017": 0.038834951456310676, "2018": 0.03553038105046344, "2019": 0.054164239953407106, "2020": 0.1923743500866551, "2021": 0.3104026845637584, "2022": 0.534269902085994}, "climatePlanLink": "https://sundsvall.se/download/18.75ef5e4f1817ff175a69ca1b/1659440126510/Klimatplan%202022-2024.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatplan 2022–2024.", "bicycleMetrePerCapita": 2.684605556, "totalConsumptionEmission": 6210.2, "electricVehiclePerChargePoints": 16.15891472868217, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Sunne", "län": "Värmlands län", "emissions": {"1990": 95757.6568745329, "2000": 98306.909780816, "2005": 106760.846981131, "2010": 73105.018767258, "2015": 65214.6301302222, "2016": 62293.1641656749, "2017": 63612.3841641081, "2018": 54287.4850595508, "2019": 55955.8348548961, "2020": 49630.413571995, "2021": 50616.0916247363}, "budget": 118969.8373151673, "emissionBudget": {"2024": 40920.50065023266, "2025": 29010.97597984022, "2026": 20567.605819311524, "2027": 14581.59868294466, "2028": 10337.762305363487, "2029": 7329.054365430708, "2030": 5196.002413749658, "2031": 3683.7550572741125, "2032": 2611.632990408845, "2033": 1851.5419105088226, "2034": 1312.6681501423302, "2035": 930.6285008285673, "2036": 659.7778779507375, "2037": 467.7557670387391, "2038": 331.6198752792005, "2039": 235.105047183918, "2040": 166.67994692662853, "2041": 118.16932490492316, "2042": 83.77726058811474, "2043": 59.39468129564033, "2044": 42.10842108522174, "2045": 29.853163408092854, "2046": 21.1646825623455, "2047": 15.004901887329607, "2048": 10.637867115897649, "2049": 7.541816509380469, "2050": 5.3468421480995545}, "approximatedHistoricalEmission": {"2021": 50616.0916247363, "2022": 46404.61965116393, "2023": 43662.56015069783, "2024": 40920.50065023266}, "totalApproximatedHistoricalEmission": 135835.47593934624, "trend": {"2024": 40920.50065023266, "2025": 38178.44114976749, "2026": 35436.38164930232, "2027": 32694.322148836218, "2028": 29952.26264837105, "2029": 27210.20314790588, "2030": 24468.14364744071, "2031": 21726.08414697461, "2032": 18984.02464650944, "2033": 16241.96514604427, "2034": 13499.9056455791, "2035": 10757.846145112999, "2036": 8015.786644647829, "2037": 5273.72714418266, "2038": 2531.66764371749, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 305431.0118795084, "historicalEmissionChangePercent": -3.8776742363974517, "neededEmissionChangePercent": 29.104054156592348, "hitNetZero": "2038-11-29", "budgetRunsOut": "2027-04-07", "electricCarChangePercent": 0.05265839985775768, "electricCarChangeYearly": {"2015": 0.0024509803921568627, "2016": 0.012315270935960592, "2017": 0.03225806451612903, "2018": 0.041379310344827586, "2019": 0.055865921787709494, "2020": 0.1801470588235294, "2021": 0.29045643153526973, "2022": 0.3702290076335878}, "climatePlanLink": "https://sunne.se/globalassets/dokument/7.-kommun-och-politik/kommunfakta/forfattningssamling/bygga-bo-och-miljo/miljostrategi-2018-2030-kf-2018-05-07.pdf", "climatePlanYear": 2018, "climatePlanComment": "Miljöstrategi. ", "bicycleMetrePerCapita": 2.987040734, "totalConsumptionEmission": 6363.6, "electricVehiclePerChargePoints": 17.181818181818183, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Surahammar", "län": "Västmanlands län", "emissions": {"1990": 62711.2060610526, "2000": 59123.2413393237, "2005": 61486.5756211616, "2010": 52180.6478444162, "2015": 41026.4362734628, "2016": 31860.0674104941, "2017": 26044.1543452283, "2018": 27647.1164246562, "2019": 27467.6687078426, "2020": 25029.4070872459, "2021": 25547.0441284823}, "budget": 60615.60536025655, "emissionBudget": {"2024": 16658.274328454398, "2025": 12655.460776048632, "2026": 9614.482526592274, "2027": 7304.220359095437, "2028": 5549.090645977184, "2029": 4215.700715946753, "2030": 3202.7107971858204, "2031": 2433.132032264548, "2032": 1848.4752015804083, "2033": 1404.3054489228089, "2034": 1066.8651611816094, "2035": 810.508335644595, "2036": 615.7514426863411, "2037": 467.792646288793, "2038": 355.38684077974943, "2039": 269.99100477829967, "2040": 205.11491787725632, "2041": 155.82789348978756, "2042": 118.38403876599298, "2043": 89.93756073245383, "2044": 68.32648146506223, "2045": 51.90832430160482, "2046": 39.43528298289963, "2047": 29.959386377134408, "2048": 22.760451154455737, "2049": 17.291346699602048, "2050": 13.136412308211485}, "approximatedHistoricalEmission": {"2021": 25547.0441284823, "2022": 20849.41595122777, "2023": 18753.84513984155, "2024": 16658.274328454398}, "totalApproximatedHistoricalEmission": 60705.92031953767, "trend": {"2024": 16658.274328454398, "2025": 14562.703517068177, "2026": 12467.132705681026, "2027": 10371.561894294806, "2028": 8275.991082908586, "2029": 6180.420271521434, "2030": 4084.849460135214, "2031": 1989.2786487489939, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 66261.07474458544, "historicalEmissionChangePercent": -6.9833582918008, "neededEmissionChangePercent": 24.02898087449829, "hitNetZero": "2031-12-11", "budgetRunsOut": "2029-08-21", "electricCarChangePercent": 0.08341704594444087, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.005025125628140704, "2017": 0.005291005291005291, "2018": 0.011049723756906077, "2019": 0.03977272727272727, "2020": 0.2037037037037037, "2021": 0.44516129032258067, "2022": 0.5974842767295597}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 0.6599069754, "totalConsumptionEmission": 6040.2, "electricVehiclePerChargePoints": 49.833333333333336, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Svalöv", "län": "Skåne län", "emissions": {"1990": 68460.7965704761, "2000": 57621.6286108437, "2005": 53527.2253447011, "2010": 51931.1329674847, "2015": 42771.6711887478, "2016": 42259.9030075629, "2017": 38969.7037504134, "2018": 37685.0129478558, "2019": 37442.1209784772, "2020": 34013.5525984376, "2021": 34907.3224756623}, "budget": 79404.84494156172, "emissionBudget": {"2024": 29375.613193284255, "2025": 20291.812537624384, "2026": 14016.989308540618, "2027": 9682.52534914971, "2028": 6688.4046975625215, "2029": 4620.153914939648, "2030": 3191.466898752595, "2031": 2204.571785562811, "2032": 1522.8535691845068, "2033": 1051.9426077958021, "2034": 726.6511189836936, "2035": 501.94929343783235, "2036": 346.7318587978299, "2037": 239.51220467309645, "2038": 165.4480104201095, "2039": 114.2866359955784, "2040": 78.94585818239776, "2041": 54.53348477591365, "2042": 37.67013280080962, "2043": 26.02142355401786, "2044": 17.974836652634313, "2045": 12.416490282254303, "2046": 8.576947535527182, "2047": 5.92470395054582, "2048": 4.09261182445319, "2049": 2.8270562859281827, "2050": 1.952847615806777}, "approximatedHistoricalEmission": {"2021": 34907.3224756623, "2022": 32347.9938882445, "2023": 30861.803540764377, "2024": 29375.613193284255}, "totalApproximatedHistoricalEmission": 95351.26526348216, "trend": {"2024": 29375.613193284255, "2025": 27889.422845803667, "2026": 26403.232498323545, "2027": 24917.042150843423, "2028": 23430.8518033633, "2029": 21944.66145588318, "2030": 20458.471108403057, "2031": 18972.280760922935, "2032": 17486.090413442813, "2033": 15999.90006596269, "2034": 14513.709718482569, "2035": 13027.519371002447, "2036": 11541.329023522325, "2037": 10055.138676042203, "2038": 8568.94832856208, "2039": 7082.757981081959, "2040": 5596.567633601837, "2041": 4110.377286121249, "2042": 2624.186938641127, "2043": 1137.9965911610052, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 290448.29124780954, "historicalEmissionChangePercent": -3.2421012741001323, "neededEmissionChangePercent": 30.922931194289337, "hitNetZero": "2043-10-02", "budgetRunsOut": "2026-12-02", "electricCarChangePercent": 0.06736436245177074, "electricCarChangeYearly": {"2015": 0.022935779816513763, "2016": 0.004132231404958678, "2017": 0.019230769230769232, "2018": 0.07692307692307693, "2019": 0.10975609756097561, "2020": 0.18222222222222223, "2021": 0.33191489361702126, "2022": 0.522633744855967}, "climatePlanLink": "https://svalov.se/download/18.37f8c5ee180940ed9988850/1652432039176/Energi-%20och%20klimatplan%202022-2030.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimatplan 2022–2030", "bicycleMetrePerCapita": 2.955402172, "totalConsumptionEmission": 6000.6, "electricVehiclePerChargePoints": 21.35, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1JEHzpx_KGTW0UpukUBd6aXjUWRmZuIc0/view?usp=drive_link"}, {"kommun": "Svedala", "län": "Skåne län", "emissions": {"1990": 113965.474496974, "2000": 100147.85656133, "2005": 93492.1565213109, "2010": 93336.8796312977, "2015": 82567.4172559422, "2016": 79188.7082417533, "2017": 77995.3810889029, "2018": 75676.578625795, "2019": 75444.7431179016, "2020": 68466.052668362, "2021": 71581.5772144457}, "budget": 157275.7649940149, "emissionBudget": {"2024": 63641.46490709856, "2025": 42462.287300728865, "2026": 28331.306412284175, "2027": 18902.96011003997, "2028": 12612.2634700259, "2029": 8415.041290430645, "2030": 5614.608360184157, "2031": 3746.1286225770355, "2032": 2499.4583338009747, "2033": 1667.666167348389, "2034": 1112.6852598855592, "2035": 742.3958774285985, "2036": 495.33471745609785, "2037": 330.49278663445995, "2038": 220.50843231494542, "2039": 147.12565807306177, "2040": 98.16386174527423, "2041": 65.4960112257242, "2042": 43.69966105868598, "2043": 29.156895830841016, "2044": 19.453802475695376, "2045": 12.979791571744144, "2046": 8.660260093439542, "2047": 5.778221050119946, "2048": 3.8552928138199607, "2049": 2.572293886192411, "2050": 1.7162628512221387}, "approximatedHistoricalEmission": {"2021": 71581.5772144457, "2022": 67709.56985297566, "2023": 65675.51738003734, "2024": 63641.46490709856}, "totalApproximatedHistoricalEmission": 200996.60829378513, "trend": {"2024": 63641.46490709856, "2025": 61607.412434160244, "2026": 59573.359961221926, "2027": 57539.30748828361, "2028": 55505.25501534529, "2029": 53471.20254240697, "2030": 51437.150069468655, "2031": 49403.09759653034, "2032": 47369.04512359202, "2033": 45334.9926506537, "2034": 43300.94017771538, "2035": 41266.887704777066, "2036": 39232.83523183875, "2037": 37198.78275890043, "2038": 35164.73028596211, "2039": 33130.677813023794, "2040": 31096.62534008501, "2041": 29062.572867146693, "2042": 27028.520394208375, "2043": 24994.467921270058, "2044": 22960.41544833174, "2045": 20926.362975393422, "2046": 18892.310502455104, "2047": 16858.258029516786, "2048": 14824.205556578469, "2049": 12790.15308364015, "2050": 10756.100610701833}, "trendEmission": 967168.3517314063, "historicalEmissionChangePercent": -2.2629924169060507, "neededEmissionChangePercent": 33.27889707957897, "hitNetZero": "2055-04-08", "budgetRunsOut": "2026-07-30", "electricCarChangePercent": 0.07491986404593716, "electricCarChangeYearly": {"2015": 0.019455252918287938, "2016": 0.024761904761904763, "2017": 0.03951890034364261, "2018": 0.04230769230769231, "2019": 0.05921052631578947, "2020": 0.23192019950124687, "2021": 0.3937007874015748, "2022": 0.5700934579439252}, "climatePlanLink": "https://www.svedala.se/contentassets/ff83c3d46b1e464cb1c0a32030db2256/hallbarhetsstrategi-svedala-kommun-2021-tillganglighetsanpassad-webb.pdf", "climatePlanYear": 2021, "climatePlanComment": "Hållbarhetsstrategi.", "bicycleMetrePerCapita": 3.437934295, "totalConsumptionEmission": 5950.1, "electricVehiclePerChargePoints": 73.84615384615384, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Svenljunga", "län": "Västra Götalands län", "emissions": {"1990": 54174.7924972031, "2000": 48835.0896053109, "2005": 45425.7537240334, "2010": 47569.6589799112, "2015": 34529.2895304157, "2016": 33053.380464053, "2017": 31629.602691937, "2018": 31273.6736132212, "2019": 30717.3383448397, "2020": 27975.5897151681, "2021": 30903.7259124321}, "budget": 65195.56514389947, "emissionBudget": {"2024": 26737.97074626293, "2025": 17742.541112379007, "2026": 11773.435168727512, "2027": 7812.509763639137, "2028": 5184.154661086363, "2029": 3440.0545232143995, "2030": 2282.720307616745, "2031": 1514.7469226554256, "2032": 1005.1420807175411, "2033": 666.9831027998156, "2034": 442.5906227136493, "2035": 293.6902876426362, "2036": 194.88434826469327, "2037": 129.31959549431352, "2038": 85.81272907611246, "2039": 56.94283564174986, "2040": 37.785612528968585, "2041": 25.073435456778252, "2042": 16.638003820190686, "2043": 11.040496289304656, "2044": 7.326152802431133, "2045": 4.861422301872795, "2046": 3.225898699424292, "2047": 2.1406127204662706, "2048": 1.4204484535859017, "2049": 0.9425683543799044, "2050": 0.6254609946848814}, "approximatedHistoricalEmission": {"2021": 30903.7259124321, "2022": 28305.437653321307, "2023": 27521.70419979212, "2024": 26737.97074626293}, "totalApproximatedHistoricalEmission": 84647.99018246094, "trend": {"2024": 26737.97074626293, "2025": 25954.23729273351, "2026": 25170.50383920432, "2027": 24386.770385675132, "2028": 23603.036932145944, "2029": 22819.303478616755, "2030": 22035.570025087567, "2031": 21251.83657155838, "2032": 20468.10311802919, "2033": 19684.3696645, "2034": 18900.63621097058, "2035": 18116.902757441392, "2036": 17333.169303912204, "2037": 16549.435850383015, "2038": 15765.702396853827, "2039": 14981.968943324639, "2040": 14198.23548979545, "2041": 13414.502036266262, "2042": 12630.768582737073, "2043": 11847.035129207885, "2044": 11063.301675678464, "2045": 10279.568222149275, "2046": 9495.834768620087, "2047": 8712.101315090898, "2048": 7928.36786156171, "2049": 7144.634408032522, "2050": 6360.900954503333}, "trendEmission": 430285.3321099592, "historicalEmissionChangePercent": -1.657514977219367, "neededEmissionChangePercent": 33.642903267598115, "hitNetZero": "2058-02-03", "budgetRunsOut": "2026-07-14", "electricCarChangePercent": 0.07129087547601946, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.013043478260869565, "2017": 0.024896265560165973, "2018": 0.021739130434782608, "2019": 0.06878306878306878, "2020": 0.211340206185567, "2021": 0.3655913978494624, "2022": 0.5170454545454546}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 4.050901246, "totalConsumptionEmission": 6070.4, "electricVehiclePerChargePoints": 10000000000.0, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Säffle", "län": "Värmlands län", "emissions": {"1990": 162646.801798649, "2000": 119975.64868208, "2005": 85986.3030297037, "2010": 82738.8114136594, "2015": 64920.5231642597, "2016": 64753.1771578997, "2017": 61542.4025889801, "2018": 61829.2117161505, "2019": 60000.4093972222, "2020": 56771.8956203948, "2021": 62848.4238097407}, "budget": 128169.63806648056, "emissionBudget": {"2024": 56726.39456559415, "2025": 36439.42229757188, "2026": 23407.64837161251, "2027": 15036.40748787513, "2028": 9658.960462496565, "2029": 6204.641453838114, "2030": 3985.6851801146936, "2031": 2560.2907876585227, "2032": 1644.6579750135875, "2033": 1056.481501169452, "2034": 678.653664938473, "2035": 435.9478101837097, "2036": 280.04047281053414, "2037": 179.89003403618437, "2038": 115.55624092748015, "2039": 74.23004219680055, "2040": 47.68326764797384, "2041": 30.63037479569571, "2042": 19.676081493644425, "2043": 12.639355069169445, "2044": 8.119162172414317, "2045": 5.2155188315550145, "2046": 3.35030094296248, "2047": 2.152138027094167, "2048": 1.3824722514536936, "2049": 0.8880608501769771, "2050": 0.5704650294338802}, "approximatedHistoricalEmission": {"2021": 62848.4238097407, "2022": 58420.74130347464, "2023": 57573.56793453451, "2024": 56726.39456559415}, "totalApproximatedHistoricalEmission": 175781.71842567658, "trend": {"2024": 56726.39456559415, "2025": 55879.22119665402, "2026": 55032.04782771389, "2027": 54184.87445877376, "2028": 53337.7010898334, "2029": 52490.52772089327, "2030": 51643.35435195314, "2031": 50796.18098301301, "2032": 49949.00761407288, "2033": 49101.834245132515, "2034": 48254.660876192385, "2035": 47407.487507252255, "2036": 46560.314138312126, "2037": 45713.14076937176, "2038": 44865.96740043163, "2039": 44018.7940314915, "2040": 43171.62066255137, "2041": 42324.44729361124, "2042": 41477.27392467088, "2043": 40630.10055573075, "2044": 39782.92718679062, "2045": 38935.75381785049, "2046": 38088.58044891013, "2047": 37241.40707997, "2048": 36394.23371102987, "2049": 35547.06034208974, "2050": 34699.88697314961}, "trendEmission": 1188541.6600036686, "historicalEmissionChangePercent": -0.397576167462798, "neededEmissionChangePercent": 35.76284448073628, "hitNetZero": "2090-11-30", "budgetRunsOut": "2026-04-20", "electricCarChangePercent": 0.06686873815265758, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.014598540145985401, "2018": 0.03153153153153153, "2019": 0.0502092050209205, "2020": 0.17964071856287425, "2021": 0.28205128205128205, "2022": 0.5275590551181102}, "climatePlanLink": "https://saffle.se/download/18.1112efe616fe8dd058623460/1580994326995/Huvuddokument.pdf", "climatePlanYear": 2018, "climatePlanComment": "Energi- och klimatplan till 2030. ", "bicycleMetrePerCapita": 3.257070608, "totalConsumptionEmission": 5995.4, "electricVehiclePerChargePoints": 24.0, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Säter", "län": "Dalarnas län", "emissions": {"1990": 56436.7280419218, "2000": 54063.2637171183, "2005": 49330.1547045155, "2010": 44733.5732993207, "2015": 38721.3594994793, "2016": 36416.6475050616, "2017": 35400.9468275324, "2018": 33527.6072188683, "2019": 33026.0284440184, "2020": 30536.1454124993, "2021": 30700.30201637}, "budget": 70600.74823380954, "emissionBudget": {"2024": 25861.484913839493, "2025": 17929.523120606947, "2026": 12430.368959995372, "2027": 8617.857343011468, "2028": 5974.679064113983, "2029": 4142.188539255615, "2030": 2871.740173927648, "2031": 1990.9503269573597, "2032": 1380.3070488059714, "2033": 956.9538341497032, "2034": 663.4470507746751, "2035": 459.9615712629631, "2036": 318.8870110910284, "2037": 221.08135156454932, "2038": 153.27361199937857, "2039": 106.26314688725276, "2040": 73.67123563596604, "2041": 51.075571532703286, "2042": 35.41021112069858, "2043": 24.549564772067065, "2044": 17.01998128290253, "2045": 11.799792198351119, "2046": 8.180684432604926, "2047": 5.671591216260258, "2048": 3.932060598274152, "2049": 2.7260604579846315, "2050": 1.8899519564497973}, "approximatedHistoricalEmission": {"2021": 30700.30201637, "2022": 28589.991700836923, "2023": 27225.738307338208, "2024": 25861.484913839493}, "totalApproximatedHistoricalEmission": 84096.62347327988, "trend": {"2024": 25861.484913839493, "2025": 24497.231520340778, "2026": 23132.978126841597, "2027": 21768.724733342882, "2028": 20404.471339844167, "2029": 19040.217946345452, "2030": 17675.96455284627, "2031": 16311.711159347557, "2032": 14947.457765848842, "2033": 13583.204372350127, "2034": 12218.950978850946, "2035": 10854.69758535223, "2036": 9490.444191853516, "2037": 8126.190798354801, "2038": 6761.93740485562, "2039": 5397.684011356905, "2040": 4033.43061785819, "2041": 2669.177224359475, "2042": 1304.9238308602944, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 245150.1406177294, "historicalEmissionChangePercent": -3.755086965429687, "neededEmissionChangePercent": 30.6709449192836, "hitNetZero": "2042-12-11", "budgetRunsOut": "2026-12-17", "electricCarChangePercent": 0.0856519990705167, "electricCarChangeYearly": {"2015": 0.021164021164021163, "2016": 0.016483516483516484, "2017": 0.022099447513812154, "2018": 0.045454545454545456, "2019": 0.06896551724137931, "2020": 0.27450980392156865, "2021": 0.4666666666666667, "2022": 0.6158940397350994}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Kretsloppsplan och Plan för klimatneutralitet kommer under 2023.", "bicycleMetrePerCapita": 2.146936866, "totalConsumptionEmission": 6320.1, "electricVehiclePerChargePoints": 42.875, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1jO9A8oBwRQKxaLjumj1OOQ2Ct38qjd1n/view?usp=drive_link"}, {"kommun": "Sävsjö", "län": "Jönköpings län", "emissions": {"1990": 56041.8371978068, "2000": 55379.7868019927, "2005": 49132.6334808975, "2010": 45054.4341184776, "2015": 38427.9137624255, "2016": 37303.7558247459, "2017": 36761.5395828403, "2018": 35588.60538361, "2019": 34730.4778545937, "2020": 30991.4370075893, "2021": 31268.2196793714}, "budget": 72598.21631708005, "emissionBudget": {"2024": 27267.11095394194, "2025": 18729.353153810483, "2026": 12864.900507893299, "2027": 8836.699469480673, "2028": 6069.7910151741435, "2029": 4169.24476102546, "2030": 2863.789187120725, "2031": 1967.0921182023408, "2032": 1351.1648898235237, "2033": 928.0940849685328, "2034": 637.4933489176742, "2035": 437.88423662677496, "2036": 300.7758512488812, "2037": 206.59824019104124, "2038": 141.90910830376677, "2039": 97.47515274548539, "2040": 66.95416183165108, "2041": 45.989769293144796, "2042": 31.589655097987336, "2043": 21.69844129569364, "2044": 14.90432083548329, "2045": 10.237545478029688, "2046": 7.032010285581565, "2047": 4.830178167476321, "2048": 3.317774033607717, "2049": 2.2789272271985204, "2050": 1.56535956163939}, "approximatedHistoricalEmission": {"2021": 31268.2196793714, "2022": 29848.16678335052, "2023": 28557.63886864623, "2024": 27267.11095394194}, "totalApproximatedHistoricalEmission": 87673.47096865342, "trend": {"2024": 27267.11095394194, "2025": 25976.583039237186, "2026": 24686.055124532897, "2027": 23395.527209828608, "2028": 22104.99929512432, "2029": 20814.47138042003, "2030": 19523.943465715274, "2031": 18233.415551010985, "2032": 16942.887636306696, "2033": 15652.359721602406, "2034": 14361.831806898117, "2035": 13071.303892193828, "2036": 11780.775977489073, "2037": 10490.248062784784, "2038": 9199.720148080494, "2039": 7909.192233376205, "2040": 6618.664318671916, "2041": 5328.136403967161, "2042": 4037.6084892628714, "2043": 2747.080574558582, "2044": 1456.5526598542929, "2045": 166.02474515000358, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 288130.9372130367, "historicalEmissionChangePercent": -3.3089277795908583, "neededEmissionChangePercent": 31.311559976240094, "hitNetZero": "2045-02-10", "budgetRunsOut": "2026-11-09", "electricCarChangePercent": 0.06408601095112333, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.014423076923076924, "2017": 0.010416666666666666, "2018": 0.03592814371257485, "2019": 0.06179775280898876, "2020": 0.2153846153846154, "2021": 0.27044025157232704, "2022": 0.4946236559139785}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 4.341989408, "totalConsumptionEmission": 5823.0, "electricVehiclePerChargePoints": 25.666666666666668, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Söderhamn", "län": "Gävleborgs län", "emissions": {"1990": 183090.800019136, "2000": 207984.544102055, "2005": 191534.390753741, "2010": 156016.205566023, "2015": 137111.69429857, "2016": 139994.321066449, "2017": 124301.267816654, "2018": 107917.600493115, "2019": 113335.588794732, "2020": 100166.783278193, "2021": 96823.3419136609}, "budget": 242806.94552412827, "emissionBudget": {"2024": 71774.55429023132, "2025": 53406.188784168415, "2026": 39738.6097155943, "2027": 29568.803505342927, "2028": 22001.628818797864, "2029": 16371.02666642184, "2030": 12181.394219491189, "2031": 9063.962093165754, "2032": 6744.335446831747, "2033": 5018.34188535362, "2034": 3734.060305396725, "2035": 2778.4488747236833, "2036": 2067.3951457870508, "2037": 1538.3125195164587, "2038": 1144.6314036885253, "2039": 851.7001803520368, "2040": 633.7351874796934, "2041": 471.55125373334863, "2042": 350.8730291303542, "2043": 261.07847576782655, "2044": 194.2639212771425, "2045": 144.54838147412855, "2046": 107.55591902719738, "2047": 80.03047560830383, "2048": 59.5492752423205, "2049": 44.309572758776696, "2050": 32.96997704969584}, "approximatedHistoricalEmission": {"2021": 96823.3419136609, "2022": 86880.68370117061, "2023": 79327.6189957019, "2024": 71774.55429023132}, "totalApproximatedHistoricalEmission": 250507.2507988186, "trend": {"2024": 71774.55429023132, "2025": 64221.48958476074, "2026": 56668.42487929016, "2027": 49115.36017381959, "2028": 41562.29546834901, "2029": 34009.23076287843, "2030": 26456.16605740972, "2031": 18903.10135193914, "2032": 11350.036646468565, "2033": 3796.971940997988, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 341970.354011029, "historicalEmissionChangePercent": -5.37078135285147, "neededEmissionChangePercent": 25.59175140508378, "hitNetZero": "2033-06-30", "budgetRunsOut": "2028-05-27", "electricCarChangePercent": 0.06065326724571211, "electricCarChangeYearly": {"2015": 0.040380047505938245, "2016": 0.015765765765765764, "2017": 0.03824091778202677, "2018": 0.06444444444444444, "2019": 0.04805491990846682, "2020": 0.16573033707865167, "2021": 0.30294906166219837, "2022": 0.5107913669064749}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete med ny energi– och klimatplan pågår 2023.", "bicycleMetrePerCapita": 2.8062868, "totalConsumptionEmission": 6077.3, "electricVehiclePerChargePoints": 17.511627906976745, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1m5bLwwYggrtNNlKg16vsYWon6MGm8Par/view?usp=drive_link"}, {"kommun": "Söderköping", "län": "Östergötlands län", "emissions": {"1990": 72832.0075837128, "2000": 63556.371344405, "2005": 56165.2213184089, "2010": 51399.3301714707, "2015": 45384.788251437, "2016": 44328.5724276244, "2017": 41846.093522104, "2018": 39784.0126356058, "2019": 39083.7911488804, "2020": 33910.7478004584, "2021": 34326.3895574425}, "budget": 82549.382447531, "emissionBudget": {"2024": 27643.524825605564, "2025": 19776.985936343273, "2026": 14149.034003218925, "2027": 10122.632633133231, "2028": 7242.027363992639, "2029": 5181.158127693944, "2030": 3706.752017762232, "2031": 2651.9187761790718, "2032": 1897.2602326110655, "2033": 1357.3554448880036, "2034": 971.0917733365051, "2035": 694.7474486461044, "2036": 497.04263866007864, "2037": 355.5988368544817, "2038": 254.40580533119646, "2039": 182.00935177046256, "2040": 130.21481207465882, "2041": 93.15948394246413, "2042": 66.64901872645868, "2043": 47.682656764643504, "2044": 34.1135668548441, "2045": 24.405843183277142, "2046": 17.460653822018443, "2047": 12.491862280802772, "2048": 8.937043528448132, "2049": 6.393822252757319, "2050": 4.57432739022963}, "approximatedHistoricalEmission": {"2021": 34326.3895574425, "2022": 31698.74966200115, "2023": 29671.137243803125, "2024": 27643.524825605564}, "totalApproximatedHistoricalEmission": 92354.84409732831, "trend": {"2024": 27643.524825605564, "2025": 25615.912407407537, "2026": 23588.29998920951, "2027": 21560.68757101195, "2028": 19533.075152813923, "2029": 17505.462734615896, "2030": 15477.850316418335, "2031": 13450.237898220308, "2032": 11422.625480022281, "2033": 9395.01306182472, "2034": 7367.400643626694, "2035": 5339.788225428667, "2036": 3312.175807231106, "2037": 1284.5633890330791, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 188674.8550896668, "historicalEmissionChangePercent": -4.437556516985292, "neededEmissionChangePercent": 28.457076074378527, "hitNetZero": "2037-08-16", "budgetRunsOut": "2027-05-31", "electricCarChangePercent": 0.07926457547430098, "electricCarChangeYearly": {"2015": 0.015015015015015015, "2016": 0.022151898734177215, "2017": 0.0339943342776204, "2018": 0.07003891050583658, "2019": 0.10546875, "2020": 0.2882882882882883, "2021": 0.42700729927007297, "2022": 0.562962962962963}, "climatePlanLink": "/data/climatePlans/Söderköping Mål och strategier för Miljö och klimat.pdf", "climatePlanYear": 2022, "climatePlanComment": "Mål och strategier för miljö och klimat 2022–2025", "bicycleMetrePerCapita": 2.754640529, "totalConsumptionEmission": 6070.9, "electricVehiclePerChargePoints": 12.326530612244898, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Södertälje", "län": "Stockholms län", "emissions": {"1990": 643575.540993731, "2000": 370430.77645954, "2005": 367872.007968134, "2010": 469345.863573777, "2015": 311341.738513186, "2016": 292214.239640774, "2017": 253970.413427884, "2018": 354904.100055642, "2019": 457095.326327766, "2020": 267642.807331948, "2021": 263087.387205743}, "budget": 651786.8019510063, "emissionBudget": {"2024": 316297.78629184025, "2025": 194689.5319530542, "2026": 119836.48161585996, "2027": 73762.47804392061, "2028": 45402.727899012214, "2029": 27946.562471021007, "2030": 17201.837644730404, "2031": 10588.179446488233, "2032": 6517.300436525129, "2033": 4011.56829600374, "2034": 2469.224850110271, "2035": 1519.8722570611335, "2036": 935.5209905978961, "2037": 575.8375546255304, "2038": 354.44302442128105, "2039": 218.16892030010519, "2040": 134.28865714772917, "2041": 82.65816878835999, "2042": 50.878257423698905, "2043": 31.316893616408144, "2044": 19.276364314407406, "2045": 11.86510468544923, "2046": 7.303281204923492, "2047": 4.495359946010386, "2048": 2.76701122100723, "2049": 1.703167530327555, "2050": 1.048344008993986}, "approximatedHistoricalEmission": {"2021": 263087.387205743, "2022": 315639.28669470025, "2023": 315968.5364932703, "2024": 316297.78629184025}, "totalApproximatedHistoricalEmission": 921300.4099367622, "trend": {"2024": 316297.78629184025, "2025": 316627.0360904102, "2026": 316956.28588898014, "2027": 317285.5356875501, "2028": 317614.78548612003, "2029": 317944.03528469, "2030": 318273.28508326004, "2031": 318602.53488183, "2032": 318931.7846803999, "2033": 319261.0344789699, "2034": 319590.2842775398, "2035": 319919.53407610976, "2036": 320248.7838746797, "2037": 320578.03367324977, "2038": 320907.2834718197, "2039": 321236.53327038966, "2040": 321565.7830689596, "2041": 321895.03286752955, "2042": 322224.2826660995, "2043": 322553.53246466944, "2044": 322882.7822632394, "2045": 323212.03206180944, "2046": 323541.2818603794, "2047": 323870.53165894933, "2048": 324199.7814575193, "2049": 324529.0312560892, "2050": 324858.28105465916}, "trendEmission": 8335028.875504492, "historicalEmissionChangePercent": 1.0260119439827597, "neededEmissionChangePercent": 38.44739344036415, "hitNetZero": "Aldrig", "budgetRunsOut": "2026-01-22", "electricCarChangePercent": 0.07725999060272203, "electricCarChangeYearly": {"2015": 0.03426318981200728, "2016": 0.08409986859395532, "2017": 0.09640190088255261, "2018": 0.08956619296933432, "2019": 0.08756756756756756, "2020": 0.3804869684499314, "2021": 0.47784200385356457, "2022": 0.5586734693877551}, "climatePlanLink": "https://www.sodertalje.se/globalassets/styrande-dokument/miljo--och-klimatstrategi-2022-2030_antagen-av-kf.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljö– och klimatstrategi, gäller till 2030", "bicycleMetrePerCapita": 2.64348271, "totalConsumptionEmission": 5805.2, "electricVehiclePerChargePoints": 144.68539325842696, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Sölvesborg", "län": "Blekinge län", "emissions": {"1990": 85629.7454763797, "2000": 75183.8794608898, "2005": 66873.2680394814, "2010": 61280.2561379788, "2015": 50947.1857846873, "2016": 45678.0371662731, "2017": 45132.3917235743, "2018": 45057.2863372865, "2019": 46129.3196636425, "2020": 37484.1667197043, "2021": 39524.008095575}, "budget": 91817.89731102697, "emissionBudget": {"2024": 33637.41092287609, "2025": 23319.494695981597, "2026": 16166.488976298939, "2027": 11207.591297672143, "2028": 7769.782472855329, "2029": 5386.4847559197515, "2030": 3734.2381369260374, "2031": 2588.800506294534, "2032": 1794.7136244791607, "2033": 1244.2044051132714, "2034": 862.5580040116556, "2035": 597.9775567639447, "2036": 414.55433342491466, "2037": 287.3942231066312, "2038": 199.23911732555558, "2039": 138.1246478915414, "2040": 95.75638866131027, "2041": 66.38414004614033, "2042": 46.0215147132646, "2043": 31.904907030973437, "2044": 22.118417852980123, "2045": 15.333829615741818, "2046": 10.63034129509046, "2047": 7.369597737938528, "2048": 5.109052410585507, "2049": 3.5419051978556317, "2050": 2.4554636403033245}, "approximatedHistoricalEmission": {"2021": 39524.008095575, "2022": 37184.578495761845, "2023": 35410.99470931897, "2024": 33637.41092287609}, "totalApproximatedHistoricalEmission": 109176.28271430636, "trend": {"2024": 33637.41092287609, "2025": 31863.827136432752, "2026": 30090.243349989876, "2027": 28316.659563547, "2028": 26543.07577710366, "2029": 24769.491990660783, "2030": 22995.90820421744, "2031": 21222.324417774566, "2032": 19448.74063133169, "2033": 17675.156844888348, "2034": 15901.573058445472, "2035": 14127.989272002596, "2036": 12354.405485559255, "2037": 10580.821699116379, "2038": 8807.237912673503, "2039": 7033.654126230162, "2040": 5260.070339787286, "2041": 3486.48655334441, "2042": 1712.9027669010684, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 319009.2745914443, "historicalEmissionChangePercent": -3.770552319960782, "neededEmissionChangePercent": 30.673931030397757, "hitNetZero": "2042-12-14", "budgetRunsOut": "2026-12-17", "electricCarChangePercent": 0.06815959442215519, "electricCarChangeYearly": {"2015": 0.039119804400977995, "2016": 0.02278481012658228, "2017": 0.0475, "2018": 0.05235602094240838, "2019": 0.09495548961424333, "2020": 0.2226027397260274, "2021": 0.4223433242506812, "2022": 0.49050632911392406}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 4.856791173, "totalConsumptionEmission": 6169.9, "electricVehiclePerChargePoints": 18.366666666666667, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Tanum", "län": "Västra Götalands län", "emissions": {"1990": 118396.202733909, "2000": 110598.89201265, "2005": 101922.536757279, "2010": 92089.782974437, "2015": 79125.4331871693, "2016": 77101.2750117468, "2017": 79599.3632064484, "2018": 77169.762581666, "2019": 78382.6081644549, "2020": 72780.0800490424, "2021": 75194.2350471489}, "budget": 159773.68395872088, "emissionBudget": {"2024": 72410.5211666401, "2025": 46023.16246963701, "2026": 29251.70886192211, "2027": 18591.99640848586, "2028": 11816.825201043583, "2029": 7510.616652673441, "2030": 4773.647874425181, "2031": 3034.0669858170236, "2032": 1928.4125508593959, "2033": 1225.6733235277068, "2034": 779.0216337982068, "2035": 495.1357709074827, "2036": 314.70169889486255, "2037": 200.02020679256893, "2038": 127.13017840653036, "2039": 80.8022475371057, "2040": 51.35683194095419, "2041": 32.641718113103465, "2042": 20.746641120704442, "2043": 13.1862886720573, "2044": 8.381029388381448, "2045": 5.326870612029034, "2046": 3.3856879868045113, "2047": 2.1518981741563477, "2048": 1.3677178080157177, "2049": 0.8693032155653518, "2050": 0.5525175413842204}, "approximatedHistoricalEmission": {"2021": 75194.2350471489, "2022": 73957.14540860173, "2023": 73183.83328762092, "2024": 72410.5211666401}, "totalApproximatedHistoricalEmission": 220943.35680311715, "trend": {"2024": 72410.5211666401, "2025": 71637.20904565929, "2026": 70863.89692467847, "2027": 70090.58480369765, "2028": 69317.27268271684, "2029": 68543.96056173602, "2030": 67770.6484407552, "2031": 66997.33631977439, "2032": 66224.02419879357, "2033": 65450.71207781276, "2034": 64677.39995683194, "2035": 63904.087835851125, "2036": 63130.77571487031, "2037": 62357.46359388949, "2038": 61584.15147290868, "2039": 60810.83935192786, "2040": 60037.527230947046, "2041": 59264.21510996623, "2042": 58490.902988985414, "2043": 57717.5908680046, "2044": 56944.27874702378, "2045": 56170.966626042966, "2046": 55397.65450506215, "2047": 54624.342384081334, "2048": 53851.03026310052, "2049": 53077.7181421197, "2050": 52304.406021138886}, "trendEmission": 1621294.0534411268, "historicalEmissionChangePercent": -0.7715658424359474, "neededEmissionChangePercent": 36.44133238079756, "hitNetZero": "2117-07-29", "budgetRunsOut": "2026-03-27", "electricCarChangePercent": 0.07740142887033657, "electricCarChangeYearly": {"2015": 0.016611295681063124, "2016": 0.011834319526627219, "2017": 0.015337423312883436, "2018": 0.05309734513274336, "2019": 0.07692307692307693, "2020": 0.3197969543147208, "2021": 0.4304932735426009, "2022": 0.5125}, "climatePlanLink": "https://www.tanum.se/download/18.29bde0b1171537ea620dbcc5/1587128543377/Klimat-%20och%20milj%C3%B6strategi.pdf", "climatePlanYear": 2020, "climatePlanComment": "Klimat– och miljöstrategi 2020–2024.", "bicycleMetrePerCapita": 0.9730676817, "totalConsumptionEmission": 6397.7, "electricVehiclePerChargePoints": 4.440677966101695, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Tibro", "län": "Västra Götalands län", "emissions": {"1990": 41581.795150041, "2000": 33768.2136261123, "2005": 29682.5564056569, "2010": 27055.9094786649, "2015": 23405.8984206941, "2016": 22908.0498009054, "2017": 21929.4843009661, "2018": 20638.2485864096, "2019": 20390.2207240302, "2020": 18323.6568298605, "2021": 18164.1222101262}, "budget": 43178.71907166517, "emissionBudget": {"2024": 15158.516235271003, "2025": 10670.660681266889, "2026": 7511.487114404869, "2027": 5287.62373345111, "2028": 3722.1610475691573, "2029": 2620.171850805773, "2030": 1844.4394103362324, "2031": 1298.3716077078209, "2032": 913.9735478730009, "2033": 643.3810176166016, "2034": 452.90056237698855, "2035": 318.814067846225, "2036": 224.42544412663278, "2037": 157.98167349293382, "2038": 111.20935621517664, "2039": 78.28452906182964, "2040": 55.10748105199536, "2041": 38.7922684633833, "2042": 27.307364876927444, "2043": 19.222700967475564, "2044": 13.531596115200218, "2045": 9.525409240601006, "2046": 6.705300721989841, "2047": 4.720118226592929, "2048": 3.3226721659104332, "2049": 2.3389563125593407, "2050": 1.6464810125383456}, "approximatedHistoricalEmission": {"2021": 18164.1222101262, "2022": 17046.61467460892, "2023": 16102.565454939846, "2024": 15158.516235271003}, "totalApproximatedHistoricalEmission": 49810.49935224737, "trend": {"2024": 15158.516235271003, "2025": 14214.46701560216, "2026": 13270.417795933085, "2027": 12326.368576264242, "2028": 11382.319356595166, "2029": 10438.270136926323, "2030": 9494.22091725748, "2031": 8550.171697588405, "2032": 7606.122477919562, "2033": 6662.073258250719, "2034": 5718.024038581643, "2035": 4773.9748189128, "2036": 3829.9255992437247, "2037": 2885.876379574882, "2038": 1941.827159906039, "2039": 997.7779402369633, "2040": 53.72872056812048, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 121724.82400699682, "historicalEmissionChangePercent": -4.0823946458968585, "neededEmissionChangePercent": 29.606166489842334, "hitNetZero": "2040-01-17", "budgetRunsOut": "2027-02-28", "electricCarChangePercent": 0.07900324612193288, "electricCarChangeYearly": {"2015": 0.009523809523809525, "2016": 0.0070921985815602835, "2017": 0.012448132780082987, "2018": 0.01694915254237288, "2019": 0.059574468085106386, "2020": 0.21965317919075145, "2021": 0.4039408866995074, "2022": 0.5792079207920792}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Med i Klimat 2023 (VGR)", "bicycleMetrePerCapita": 4.240325727, "totalConsumptionEmission": 5766.0, "electricVehiclePerChargePoints": 8.195121951219512, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/1klDMfERm6bk0pA9qD8a6xJD3GTqD0RrG/edit?usp=drive_link&ouid=104089955738391943844&rtpof=true&sd=true"}, {"kommun": "Tidaholm", "län": "Västra Götalands län", "emissions": {"1990": 56629.7993723764, "2000": 46278.4985289073, "2005": 43303.1658481645, "2010": 36740.2571134386, "2015": 31120.8048386295, "2016": 29884.6548265342, "2017": 29727.4458404301, "2018": 29200.3246726414, "2019": 28998.9270102039, "2020": 29135.0472258753, "2021": 32974.0144768152}, "budget": 62517.21634175409, "emissionBudget": {"2024": 30862.72303080713, "2025": 18838.101588788424, "2026": 11498.469241203316, "2027": 7018.4776458359775, "2028": 4283.964015713134, "2029": 2614.8616001952146, "2030": 1596.0687725424948, "2031": 974.214285947342, "2032": 594.6444735160186, "2033": 362.96126528189257, "2034": 221.54562257355883, "2035": 135.22782615215445, "2036": 82.54085435502432, "2037": 50.38158810592396, "2038": 30.75209773280554, "2039": 18.77057771541006, "2040": 11.457253772785304, "2041": 6.99332039771134, "2042": 4.268608442732964, "2043": 2.605488809483725, "2044": 1.590347774320229, "2045": 0.9707222821603558, "2046": 0.5925130114923328, "2047": 0.36166025570815014, "2048": 0.22075150759887965, "2049": 0.13474311135394124, "2050": 0.08224499236639768}, "approximatedHistoricalEmission": {"2021": 32974.0144768152, "2022": 30624.730539163313, "2023": 30743.72678498522, "2024": 30862.72303080713}, "totalApproximatedHistoricalEmission": 93286.8260779597, "trend": {"2024": 30862.72303080713, "2025": 30981.71927662904, "2026": 31100.715522450948, "2027": 31219.711768272857, "2028": 31338.708014094736, "2029": 31457.704259916645, "2030": 31576.700505738554, "2031": 31695.696751560463, "2032": 31814.69299738237, "2033": 31933.68924320428, "2034": 32052.68548902619, "2035": 32171.681734848098, "2036": 32290.677980669978, "2037": 32409.674226491887, "2038": 32528.670472313795, "2039": 32647.666718135704, "2040": 32766.662963957613, "2041": 32885.65920977952, "2042": 33004.65545560143, "2043": 33123.65170142334, "2044": 33242.64794724522, "2045": 33361.64419306713, "2046": 33480.64043888904, "2047": 33599.636684710946, "2048": 33718.632930532855, "2049": 33837.62917635476, "2050": 33956.62542217667}, "trendEmission": 842651.5298887892, "historicalEmissionChangePercent": 1.1141351108547743, "neededEmissionChangePercent": 38.96163481756209, "hitNetZero": "Aldrig", "budgetRunsOut": "2026-01-07", "electricCarChangePercent": 0.06286312320785492, "electricCarChangeYearly": {"2015": 0.014925373134328358, "2016": 0.0, "2017": 0.04054054054054054, "2018": 0.010416666666666666, "2019": 0.06310679611650485, "2020": 0.16129032258064516, "2021": 0.3263157894736842, "2022": 0.47692307692307695}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Med i Klimat 2023 (VGR). Har koldioxidbudget. ", "bicycleMetrePerCapita": 1.823552052, "totalConsumptionEmission": 5926.7, "electricVehiclePerChargePoints": 69.8, "procurementScore": "2", "procurementLink": "https://docs.google.com/presentation/d/1UhGuEOewdkD4-C4WKgel_IngCRST9XLi/edit#slide=id.p2"}, {"kommun": "Tierp", "län": "Uppsala län", "emissions": {"1990": 153824.706803152, "2000": 134026.413233932, "2005": 140748.22889119, "2010": 139941.633823202, "2015": 122627.191045483, "2016": 118469.310089773, "2017": 117783.98655663, "2018": 110176.660264911, "2019": 107844.895080936, "2020": 97162.4743411099, "2021": 95883.4634120662}, "budget": 228083.42720875546, "emissionBudget": {"2024": 81538.86599728279, "2025": 57030.37357153035, "2026": 39888.50556024034, "2027": 27899.043547973546, "2028": 19513.30640142023, "2029": 13648.106827065938, "2030": 9545.8358584195, "2031": 6676.602358883869, "2032": 4669.786880877108, "2033": 3266.1686799118324, "2034": 2284.4421207576174, "2035": 1597.797393376645, "2036": 1117.540465168158, "2037": 781.6364555764819, "2038": 546.6965785388668, "2039": 382.37360457512415, "2040": 267.44190327025944, "2041": 187.05572447735838, "2042": 130.83156989198866, "2043": 91.50695456248481, "2044": 64.00231030028635, "2045": 44.76485687191153, "2046": 31.309688687187247, "2047": 21.898799062254653, "2048": 15.31658155915342, "2049": 10.712809866480619, "2050": 7.492813901857861}, "approximatedHistoricalEmission": {"2021": 95883.4634120662, "2022": 91023.43355965987, "2023": 86281.14977847226, "2024": 81538.86599728279}, "totalApproximatedHistoricalEmission": 266015.74804280663, "trend": {"2024": 81538.86599728279, "2025": 76796.58221609518, "2026": 72054.29843490757, "2027": 67312.0146537181, "2028": 62569.73087253049, "2029": 57827.44709134102, "2030": 53085.16331015341, "2031": 48342.8795289658, "2032": 43600.59574777633, "2033": 38858.31196658872, "2034": 34116.02818539925, "2035": 29373.74440421164, "2036": 24631.46062302403, "2037": 19889.17684183456, "2038": 15146.893060646951, "2039": 10404.609279459342, "2040": 5662.325498269871, "2041": 920.041717082262, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 701360.7364306459, "historicalEmissionChangePercent": -3.960994453303025, "neededEmissionChangePercent": 30.057435955228, "hitNetZero": "2041-03-07", "budgetRunsOut": "2027-01-27", "electricCarChangePercent": 0.08058750519372183, "electricCarChangeYearly": {"2015": 0.014354066985645933, "2016": 0.006920415224913495, "2017": 0.01948051948051948, "2018": 0.02926829268292683, "2019": 0.08333333333333333, "2020": 0.2072072072072072, "2021": 0.411214953271028, "2022": 0.6044444444444445}, "climatePlanLink": "https://www.tierp.se/download/18.219c09301768e745e724cb0e/1610000652093/Klimat-%20och%20energiplan%20f%C3%B6r%20Tierps%20kommun.pdf", "climatePlanYear": 2020, "climatePlanComment": "Klimat– och energiplan från år 2020. En ny plan kommer att antas under 2023. ", "bicycleMetrePerCapita": 2.626499349, "totalConsumptionEmission": 6128.0, "electricVehiclePerChargePoints": 40.30769230769231, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1I-qkygApHkxPCh4bd0JJda2BrVTMBZkr/view?usp=drive_link"}, {"kommun": "Timrå", "län": "Västernorrlands län", "emissions": {"1990": 130458.689394424, "2000": 211021.254458182, "2005": 138522.661084289, "2010": 150154.115053192, "2015": 73541.0766683582, "2016": 86905.2280318996, "2017": 91903.9230162513, "2018": 124066.122796644, "2019": 103815.58114421, "2020": 96297.6688666327, "2021": 80120.958481875}, "budget": 194521.07637551776, "emissionBudget": {"2024": 104614.97669469053, "2025": 61097.9794323122, "2026": 35682.87456207694, "2027": 20839.765060046142, "2028": 12170.98714965865, "2029": 7108.186093765302, "2030": 4151.373173129632, "2031": 2424.5143550330663, "2032": 1415.9820407881818, "2033": 826.9718575484861, "2034": 482.97395975200527, "2035": 282.06987174875525, "2036": 164.73644373956117, "2037": 96.21054431552338, "2038": 56.189563325302935, "2039": 32.81622663243589, "2040": 19.165565038417903, "2041": 11.193208998586233, "2042": 6.537137174661362, "2043": 3.817865139991322, "2044": 2.229736632062647, "2045": 1.302226575864167, "2046": 0.7605355854597946, "2047": 0.4441733777141144, "2048": 0.259409281093258, "2049": 0.15150204513300025, "2050": 0.08848129713304305}, "approximatedHistoricalEmission": {"2021": 80120.958481875, "2022": 101012.39203483518, "2023": 102813.68436476262, "2024": 104614.97669469053}, "totalApproximatedHistoricalEmission": 296194.0439878806, "trend": {"2024": 104614.97669469053, "2025": 106416.26902461844, "2026": 108217.56135454634, "2027": 110018.85368447425, "2028": 111820.14601440169, "2029": 113621.4383443296, "2030": 115422.7306742575, "2031": 117224.02300418541, "2032": 119025.31533411285, "2033": 120826.60766404076, "2034": 122627.89999396866, "2035": 124429.19232389657, "2036": 126230.48465382447, "2037": 128031.77698375192, "2038": 129833.06931367982, "2039": 131634.36164360773, "2040": 133435.65397353563, "2041": 135236.94630346354, "2042": 137038.23863339098, "2043": 138839.5309633189, "2044": 140640.8232932468, "2045": 142442.1156231747, "2046": 144243.40795310214, "2047": 146044.70028303005, "2048": 147845.99261295795, "2049": 149647.28494288586, "2050": 151448.57727281377}, "trendEmission": 3328826.2015775545, "historicalEmissionChangePercent": 3.0928468216052565, "neededEmissionChangePercent": 41.59729193400176, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-10-31", "electricCarChangePercent": 0.07530256376717442, "electricCarChangeYearly": {"2015": 0.008, "2016": 0.0175, "2017": 0.022792022792022793, "2018": 0.0625, "2019": 0.07508532423208192, "2020": 0.24043715846994534, "2021": 0.34285714285714286, "2022": 0.5841584158415841}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.304277754, "totalConsumptionEmission": 5798.3, "electricVehiclePerChargePoints": 30.61111111111111, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Tingsryd", "län": "Kronobergs län", "emissions": {"1990": 82279.5565976345, "2000": 78614.1522429792, "2005": 79929.1407180178, "2010": 62565.0455180219, "2015": 49307.6295761283, "2016": 49166.9539134727, "2017": 46264.8235639537, "2018": 44483.8018797048, "2019": 42949.3711593047, "2020": 39076.6990008119, "2021": 39625.5755394863}, "budget": 92091.15946359282, "emissionBudget": {"2024": 33151.66687471559, "2025": 23129.42211172152, "2026": 16137.051848521323, "2027": 11258.57970441457, "2028": 7854.942659322904, "2029": 5480.276002936472, "2030": 3823.506595903048, "2031": 2667.60336177973, "2032": 1861.1469647792812, "2033": 1298.4943991809039, "2034": 905.9401200507209, "2035": 632.0608711406327, "2036": 440.97941573079754, "2037": 307.6647423963189, "2038": 214.6530888679355, "2039": 149.76024942498287, "2040": 104.48548598167123, "2041": 72.8979607255169, "2042": 50.85981682538374, "2043": 35.484133462270385, "2044": 24.756749161939556, "2045": 17.272413590679236, "2046": 12.050704609720556, "2047": 8.407596357529645, "2048": 5.865854221845786, "2049": 4.092518751941609, "2050": 2.8552891192927476}, "approximatedHistoricalEmission": {"2021": 39625.5755394863, "2022": 36904.67575613689, "2023": 35028.17131542601, "2024": 33151.66687471559}, "totalApproximatedHistoricalEmission": 108321.46827866384, "trend": {"2024": 33151.66687471559, "2025": 31275.162434004713, "2026": 29398.6579932943, "2027": 27522.15355258342, "2028": 25645.649111873005, "2029": 23769.144671162125, "2030": 21892.64023045171, "2031": 20016.13578974083, "2032": 18139.631349030416, "2033": 16263.126908319537, "2034": 14386.622467609122, "2035": 12510.118026898243, "2036": 10633.613586187828, "2037": 8757.109145476948, "2038": 6880.604704766534, "2039": 5004.100264055654, "2040": 3127.59582334524, "2041": 1251.0913826343603, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 293048.9908787918, "historicalEmissionChangePercent": -3.5165269015770164, "neededEmissionChangePercent": 30.23149575214249, "hitNetZero": "2041-08-27", "budgetRunsOut": "2027-01-15", "electricCarChangePercent": 0.059692201954626496, "electricCarChangeYearly": {"2015": 0.004975124378109453, "2016": 0.012345679012345678, "2017": 0.015384615384615385, "2018": 0.04318936877076412, "2019": 0.07719298245614035, "2020": 0.22083333333333333, "2021": 0.27956989247311825, "2022": 0.4375}, "climatePlanLink": "https://tingsryd.se/wp-content/blogs.dir/1/files_mf/1647330611Milj%C3%B6program20222027TingsrydD%C3%A4rlivet%C3%A4rh%C3%A5llbart.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljöprogram 2022–2027", "bicycleMetrePerCapita": 7.862331476, "totalConsumptionEmission": 6139.2, "electricVehiclePerChargePoints": 9.022222222222222, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1GPESfcGXvYvQhoZW8TayLG0Fl9C-C5LY/view?usp=drive_link"}, {"kommun": "Tjörn", "län": "Västra Götalands län", "emissions": {"1990": 88404.4663648523, "2000": 85002.4068871503, "2005": 68161.6581495554, "2010": 56593.827984737, "2015": 43462.5876253554, "2016": 42574.0600877548, "2017": 41402.1890874834, "2018": 40611.1897927767, "2019": 40255.8923480338, "2020": 35826.0831793715, "2021": 36571.9935715315}, "budget": 83153.5778598006, "emissionBudget": {"2024": 32533.278087968007, "2025": 21999.511138568305, "2026": 14876.413284494187, "2027": 10059.663181473652, "2028": 6802.501475955561, "2029": 4599.957821211947, "2030": 3110.5633760934443, "2031": 2103.411573053211, "2032": 1422.3597820439563, "2033": 961.8219161167233, "2034": 650.3990129649603, "2035": 439.80997831043254, "2036": 297.4063815681776, "2037": 201.11084368132526, "2038": 135.994295861949, "2039": 91.96146845414819, "2040": 62.18578232743012, "2041": 42.05099797425087, "2042": 28.43554208773635, "2043": 19.228558007554163, "2044": 13.002651467275362, "2045": 8.792596153753054, "2046": 5.945690947539703, "2047": 4.020569149939424, "2048": 2.718771700727837, "2049": 1.838475918462913, "2050": 1.243206151462883}, "approximatedHistoricalEmission": {"2021": 36571.9935715315, "2022": 35055.70899637416, "2023": 33794.49354217108, "2024": 32533.278087968007}, "totalApproximatedHistoricalEmission": 103402.838368295, "trend": {"2024": 32533.278087968007, "2025": 31272.06263376493, "2026": 30010.847179561853, "2027": 28749.63172535831, "2028": 27488.416271155234, "2029": 26227.200816952158, "2030": 24965.98536274908, "2031": 23704.769908546004, "2032": 22443.554454342928, "2033": 21182.339000139385, "2034": 19921.12354593631, "2035": 18659.908091733232, "2036": 17398.692637530155, "2037": 16137.477183327079, "2038": 14876.261729124002, "2039": 13615.04627492046, "2040": 12353.830820717383, "2041": 11092.615366514307, "2042": 9831.39991231123, "2043": 8570.184458108153, "2044": 7308.9690039050765, "2045": 6047.753549701534, "2046": 4786.538095498458, "2047": 3525.322641295381, "2048": 2264.1071870923042, "2049": 1002.8917328892276, "2050": 0}, "trendEmission": 419703.5686271582, "historicalEmissionChangePercent": -2.75073212755053, "neededEmissionChangePercent": 32.37843699893087, "hitNetZero": "2049-10-11", "budgetRunsOut": "2026-09-12", "electricCarChangePercent": 0.0817404698595658, "electricCarChangeYearly": {"2015": 0.0079155672823219, "2016": 0.0297029702970297, "2017": 0.04271356783919598, "2018": 0.04696132596685083, "2019": 0.08900523560209424, "2020": 0.267741935483871, "2021": 0.4627659574468085, "2022": 0.577023498694517}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.30836914, "totalConsumptionEmission": 6612.2, "electricVehiclePerChargePoints": 38.05, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Tomelilla", "län": "Skåne län", "emissions": {"1990": 55883.3495189365, "2000": 48054.3558061117, "2005": 46395.7029662568, "2010": 48254.1016902828, "2015": 46015.2427628333, "2016": 43519.6200240206, "2017": 42420.1733752056, "2018": 39993.7884944779, "2019": 40211.5195080253, "2020": 37646.0213588706, "2021": 35500.9478648096}, "budget": 84517.22904509396, "emissionBudget": {"2024": 31008.458507273346, "2025": 21485.339586550628, "2026": 14886.899877371263, "2027": 10314.930656139402, "2028": 7147.075302272551, "2029": 4952.111369352859, "2030": 3431.2506832936488, "2031": 2377.4669779168735, "2032": 1647.314566261744, "2033": 1141.4018808352923, "2034": 790.861854958757, "2035": 547.9774338299536, "2036": 379.6861185099396, "2037": 263.07935270538803, "2038": 182.28410902010413, "2039": 126.3021824387082, "2040": 87.51306613908605, "2041": 60.63661448431879, "2042": 42.014286304130806, "2043": 29.111128130380248, "2044": 20.17070514750346, "2045": 13.976007536545051, "2046": 9.683785729510792, "2047": 6.709763558002399, "2048": 4.649104003519858, "2049": 3.2213009964808963, "2050": 2.2319956925189257}, "approximatedHistoricalEmission": {"2021": 35500.9478648096, "2022": 34258.36821381282, "2023": 32633.413360543083, "2024": 31008.458507273346}, "totalApproximatedHistoricalEmission": 100146.48476039738, "trend": {"2024": 31008.458507273346, "2025": 29383.50365400361, "2026": 27758.54880073387, "2027": 26133.593947464135, "2028": 24508.639094194397, "2029": 22883.68424092466, "2030": 21258.729387654923, "2031": 19633.774534385186, "2032": 18008.819681115914, "2033": 16383.864827846177, "2034": 14758.90997457644, "2035": 13133.955121306702, "2036": 11509.000268036965, "2037": 9884.045414767228, "2038": 8259.09056149749, "2039": 6634.135708227754, "2040": 5009.180854958016, "2041": 3384.226001688279, "2042": 1759.271148418542, "2043": 134.31629514880478, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 295923.51877058577, "historicalEmissionChangePercent": -4.200547094832707, "neededEmissionChangePercent": 30.71135870391292, "hitNetZero": "2043-01-26", "budgetRunsOut": "2026-12-15", "electricCarChangePercent": 0.029232803167803408, "electricCarChangeYearly": {"2015": 0.004076086956521739, "2016": 0.007132667617689016, "2017": 0.02582496413199426, "2018": 0.020481927710843374, "2019": 0.0341047503045067, "2020": 0.09298780487804878, "2021": 0.15014577259475217, "2022": 0.2219873150105708}, "climatePlanLink": "https://www.tomelilla.se/fileadmin/tomelilla/kommun_och_politik/pdf/Energi-_och_klimatplan_2020-2025.pdf", "climatePlanYear": 2019, "climatePlanComment": "Energi– och klimatplan 2020–2025.", "bicycleMetrePerCapita": 2.16884948, "totalConsumptionEmission": 5948.3, "electricVehiclePerChargePoints": 31.375, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1WEriX_kLliQ7-_DEX5Bc05VgrBFeIQSC/view?usp=drive_link"}, {"kommun": "Torsby", "län": "Värmlands län", "emissions": {"1990": 99875.4206678308, "2000": 85818.0098318199, "2005": 77312.6166128527, "2010": 60438.453358315, "2015": 49767.2770786609, "2016": 47077.5186696339, "2017": 43497.9784327877, "2018": 40053.3936979292, "2019": 40453.5014805288, "2020": 37260.8969548224, "2021": 38584.8137626988}, "budget": 87890.74172967754, "emissionBudget": {"2024": 30336.816368915606, "2025": 21481.603976991562, "2026": 15211.197635659966, "2027": 10771.101346013715, "2028": 7627.053897065799, "2029": 5400.743088382092, "2030": 3824.284750095728, "2031": 2707.9891804659096, "2032": 1917.536449485585, "2033": 1357.8141528885892, "2034": 961.4728701919341, "2035": 680.8222451861324, "2036": 482.0925726669297, "2037": 341.371408269832, "2038": 241.7262679229038, "2039": 171.16720143635794, "2040": 121.20408385612073, "2041": 85.82502851087173, "2042": 60.772997778160025, "2043": 43.03356868068376, "2044": 30.472217943815824, "2045": 21.577482297725567, "2046": 15.27908940422725, "2047": 10.819175740766433, "2048": 7.661095541282948, "2049": 5.42484809369661, "2050": 3.8413535872384577}, "approximatedHistoricalEmission": {"2021": 38584.8137626988, "2022": 34352.89567818493, "2023": 32344.8560235505, "2024": 30336.816368915606}, "totalApproximatedHistoricalEmission": 101158.56676754262, "trend": {"2024": 30336.816368915606, "2025": 28328.77671428118, "2026": 26320.737059646286, "2027": 24312.69740501186, "2028": 22304.657750376966, "2029": 20296.61809574254, "2030": 18288.57844110811, "2031": 16280.538786473218, "2032": 14272.499131838791, "2033": 12264.459477203898, "2034": 10256.41982256947, "2035": 8248.380167935044, "2036": 6240.340513300151, "2037": 4232.300858665723, "2038": 2224.2612040308304, "2039": 216.22154939640313, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 229255.89516203827, "historicalEmissionChangePercent": -4.044521328253161, "neededEmissionChangePercent": 29.18965617301054, "hitNetZero": "2039-02-05", "budgetRunsOut": "2027-03-31", "electricCarChangePercent": 0.048920385143545006, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.00625, "2017": 0.005865102639296188, "2018": 0.015748031496062992, "2019": 0.02247191011235955, "2020": 0.13333333333333333, "2021": 0.25206611570247933, "2022": 0.35587188612099646}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.423811628, "totalConsumptionEmission": 6675.2, "electricVehiclePerChargePoints": 4.2, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Torsås", "län": "Kalmar län", "emissions": {"1990": 39035.5073103979, "2000": 35153.9363866007, "2005": 31817.4056224462, "2010": 24382.2735374754, "2015": 21287.680905891, "2016": 20558.273285399, "2017": 20787.6003083017, "2018": 20054.2067533587, "2019": 19601.5695964028, "2020": 17539.7453589237, "2021": 18501.3328867235}, "budget": 40977.929133818965, "emissionBudget": {"2024": 16422.459023067495, "2025": 10999.90166293226, "2026": 7367.826975498771, "2027": 4935.0326943210675, "2028": 3305.5265514523226, "2029": 2214.0695835571337, "2030": 1483.0024943163935, "2031": 993.3275875707775, "2032": 665.3392020652069, "2033": 445.64981315715664, "2034": 298.5000062382382, "2035": 199.93782358617676, "2036": 133.92004175863335, "2037": 89.70077428548164, "2038": 60.08233571131044, "2039": 40.24365556798635, "2040": 26.95554016502458, "2041": 18.055048313410705, "2042": 12.093423749028306, "2043": 8.100277298340513, "2044": 5.425634102607438, "2045": 3.6341355155097737, "2046": 2.4341746412170573, "2047": 1.6304307196736545, "2048": 1.0920762572427576, "2049": 0.7314818944726847, "2050": 0.489952746791022}, "approximatedHistoricalEmission": {"2021": 18501.3328867235, "2022": 17535.468353235396, "2023": 16978.963688151445, "2024": 16422.459023067495}, "totalApproximatedHistoricalEmission": 51976.327996282336, "trend": {"2024": 16422.459023067495, "2025": 15865.954357983312, "2026": 15309.449692899361, "2027": 14752.94502781541, "2028": 14196.44036273146, "2029": 13639.935697647277, "2030": 13083.431032563327, "2031": 12526.926367479376, "2032": 11970.421702395426, "2033": 11413.917037311476, "2034": 10857.412372227293, "2035": 10300.907707143342, "2036": 9744.403042059392, "2037": 9187.898376975441, "2038": 8631.393711891258, "2039": 8074.889046807308, "2040": 7518.384381723357, "2041": 6961.879716639407, "2042": 6405.375051555224, "2043": 5848.870386471273, "2044": 5292.365721387323, "2045": 4735.861056303373, "2046": 4179.356391219189, "2047": 3622.851726135239, "2048": 3066.3470610512886, "2049": 2509.8423959673382, "2050": 1953.3377308833878}, "trendEmission": 238885.3578013589, "historicalEmissionChangePercent": -2.1887282889119573, "neededEmissionChangePercent": 33.01915597730245, "hitNetZero": "2053-06-28", "budgetRunsOut": "2026-08-11", "electricCarChangePercent": 0.06160773789915487, "electricCarChangeYearly": {"2015": 0.009009009009009009, "2016": 0.008130081300813009, "2017": 0.029197080291970802, "2018": 0.05555555555555555, "2019": 0.06666666666666667, "2020": 0.19318181818181818, "2021": 0.32989690721649484, "2022": 0.44660194174757284}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Arbete med klimatplan pågår under 2023.", "bicycleMetrePerCapita": 4.048930845, "totalConsumptionEmission": 6200.0, "electricVehiclePerChargePoints": 27.833333333333332, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Tranemo", "län": "Västra Götalands län", "emissions": {"1990": 96955.8743703525, "2000": 123489.387897036, "2005": 125165.329861724, "2010": 109087.186119231, "2015": 103171.064931112, "2016": 96327.173899201, "2017": 101610.010852022, "2018": 97624.6436338377, "2019": 97549.9603753173, "2020": 94373.4077769331, "2021": 95076.8950230667}, "budget": 203136.27983359923, "emissionBudget": {"2024": 91051.14540334651, "2025": 58159.80520848411, "2026": 37150.141570481464, "2027": 23730.014462040992, "2028": 15157.777670923066, "2029": 9682.177998191266, "2030": 6184.585420360652, "2031": 3950.464123762534, "2032": 2523.3974037704893, "2033": 1611.844648595624, "2034": 1029.5814552730878, "2035": 657.6551741297428, "2036": 420.08364257581025, "2037": 268.3325148217368, "2038": 171.40000517293106, "2039": 109.48342131700907, "2040": 69.93360082564773, "2041": 44.67076809994819, "2042": 28.53388784619135, "2043": 18.22629854488604, "2044": 11.642225568348408, "2045": 7.436584880386249, "2046": 4.750190962932421, "2047": 3.0342307049889907, "2048": 1.9381443910234994, "2049": 1.2380085911988956, "2050": 0.7907900355519439}, "approximatedHistoricalEmission": {"2021": 95076.8950230667, "2022": 93354.7234351593, "2023": 92202.93441925291, "2024": 91051.14540334651}, "totalApproximatedHistoricalEmission": 278621.6780676188, "trend": {"2024": 91051.14540334651, "2025": 89899.35638744012, "2026": 88747.56737153418, "2027": 87595.77835562779, "2028": 86443.98933972139, "2029": 85292.20032381499, "2030": 84140.41130790906, "2031": 82988.62229200266, "2032": 81836.83327609627, "2033": 80685.04426018987, "2034": 79533.25524428394, "2035": 78381.46622837754, "2036": 77229.67721247114, "2037": 76077.88819656475, "2038": 74926.09918065881, "2039": 73774.31016475242, "2040": 72622.52114884602, "2041": 71470.73213293962, "2042": 70318.94311703369, "2043": 69167.1541011273, "2044": 68015.3650852209, "2045": 66863.5760693145, "2046": 65711.78705340857, "2047": 64559.99803750217, "2048": 63408.20902159577, "2049": 62256.420005689375, "2050": 61104.63098978298}, "trendEmission": 1978025.0931106876, "historicalEmissionChangePercent": -1.2764828064213616, "neededEmissionChangePercent": 36.12402683036814, "hitNetZero": "2102-12-31", "budgetRunsOut": "2026-04-07", "electricCarChangePercent": 0.0701876136565409, "electricCarChangeYearly": {"2015": 0.01592356687898089, "2016": 0.012232415902140673, "2017": 0.019830028328611898, "2018": 0.04316546762589928, "2019": 0.07883817427385892, "2020": 0.24890829694323144, "2021": 0.3076923076923077, "2022": 0.543859649122807}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Med i Klimat 2023 (VGR)", "bicycleMetrePerCapita": 5.111060036, "totalConsumptionEmission": 5934.1, "electricVehiclePerChargePoints": 18.869565217391305, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Tranås", "län": "Jönköpings län", "emissions": {"1990": 46967.6876149699, "2000": 43081.9562064885, "2005": 38341.4428367893, "2010": 42705.6067697939, "2015": 31997.5901410912, "2016": 31090.394616631, "2017": 32376.4193406499, "2018": 32777.5736150731, "2019": 32254.2313819519, "2020": 29901.8915037892, "2021": 29775.6551819717}, "budget": 65222.56834598737, "emissionBudget": {"2024": 29489.465312649845, "2025": 18763.193929638797, "2026": 11938.414030525508, "2027": 7596.027099581975, "2028": 4833.10660444936, "2029": 3075.149567496609, "2030": 1956.6183071089058, "2031": 1244.933007544825, "2032": 792.1106470503537, "2033": 503.99441043652985, "2034": 320.6753585463649, "2035": 204.03536914183667, "2036": 129.82111269652296, "2037": 82.60097929417066, "2038": 52.55633416350122, "2039": 33.43989725434813, "2040": 21.276726129767525, "2041": 13.537693353476687, "2042": 8.61359685766512, "2043": 5.480553362314434, "2044": 3.4870990195515152, "2045": 2.218728432747535, "2046": 1.411705211317877, "2047": 0.8982224116514134, "2048": 0.5715098976221115, "2049": 0.3636332815160194, "2050": 0.23136810749258455}, "approximatedHistoricalEmission": {"2021": 29775.6551819717, "2022": 30144.10810277413, "2023": 29816.786707711988, "2024": 29489.465312649845}, "totalApproximatedHistoricalEmission": 89593.45505779689, "trend": {"2024": 29489.465312649845, "2025": 29162.143917587702, "2026": 28834.82252252556, "2027": 28507.501127463416, "2028": 28180.179732401273, "2029": 27852.85833733913, "2030": 27525.536942277104, "2031": 27198.21554721496, "2032": 26870.894152152818, "2033": 26543.572757090675, "2034": 26216.25136202853, "2035": 25888.92996696639, "2036": 25561.608571904246, "2037": 25234.287176842103, "2038": 24906.96578177996, "2039": 24579.644386717817, "2040": 24252.322991655674, "2041": 23925.00159659353, "2042": 23597.680201531504, "2043": 23270.35880646936, "2044": 22943.03741140722, "2045": 22615.716016345075, "2046": 22288.394621282932, "2047": 21961.07322622079, "2048": 21633.751831158646, "2049": 21306.430436096503, "2050": 20979.10904103436}, "trendEmission": 656091.466597895, "historicalEmissionChangePercent": -1.1286163109844218, "neededEmissionChangePercent": 36.37323114980281, "hitNetZero": "2114-01-13", "budgetRunsOut": "2026-03-29", "electricCarChangePercent": 0.07134073785204356, "electricCarChangeYearly": {"2015": 0.012121212121212121, "2016": 0.0225140712945591, "2017": 0.025540275049115914, "2018": 0.0398406374501992, "2019": 0.08016032064128256, "2020": 0.2558139534883721, "2021": 0.3697674418604651, "2022": 0.5157232704402516}, "climatePlanLink": "https://tranas.se/download/18.671539701847d6e7ad0319/1669301841956/Strategi%20f%C3%B6r%20ekologisk%20h%C3%A5llbarhet%202022%20-2035_tillg%C3%A4nglig.pdf", "climatePlanYear": 2022, "climatePlanComment": "Ekologisk hållbarhetsstrategi 2022–2035. Arbete pågår med plan.", "bicycleMetrePerCapita": 3.802454138, "totalConsumptionEmission": 5902.1, "electricVehiclePerChargePoints": 33.333333333333336, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Trelleborg", "län": "Skåne län", "emissions": {"1990": 187464.704782199, "2000": 215155.645098935, "2005": 137085.624770871, "2010": 104349.698738363, "2015": 87525.0504391401, "2016": 85227.0895859313, "2017": 83390.6746690136, "2018": 78320.633971901, "2019": 77704.2320253845, "2020": 70135.9739873899, "2021": 73048.6159903349}, "budget": 164513.25591146637, "emissionBudget": {"2024": 62343.614984057844, "2025": 42678.84044597775, "2026": 29216.839964750296, "2027": 20001.09957547545, "2028": 13692.239979091908, "2029": 9373.356446608574, "2030": 6416.75950825728, "2031": 4392.749045802895, "2032": 3007.1633749981206, "2033": 2058.6269485552243, "2034": 1409.283229688325, "2035": 964.7591676940865, "2036": 660.4493916071309, "2037": 452.1267208238036, "2038": 309.5143614039156, "2039": 211.88559645561654, "2040": 145.05144698847704, "2041": 99.29850176417335, "2042": 67.9772084824003, "2043": 46.53545412028487, "2044": 31.85697880991702, "2045": 21.808470940721307, "2046": 14.929520078163499, "2047": 10.220366680916667, "2048": 6.996600998927801, "2049": 4.789693664279278, "2050": 3.2789014838994883}, "approximatedHistoricalEmission": {"2021": 73048.6159903349, "2022": 68007.75621171016, "2023": 65175.68559788354, "2024": 62343.614984057844}, "totalApproximatedHistoricalEmission": 200879.55729679007, "trend": {"2024": 62343.614984057844, "2025": 59511.54437023215, "2026": 56679.473756405525, "2027": 53847.40314257983, "2028": 51015.332528753206, "2029": 48183.26191492751, "2030": 45351.19130110182, "2031": 42519.12068727519, "2032": 39687.0500734495, "2033": 36854.979459623806, "2034": 34022.90884579718, "2035": 31190.838231971487, "2036": 28358.767618144862, "2037": 25526.69700431917, "2038": 22694.626390493475, "2039": 19862.55577666685, "2040": 17030.485162841156, "2041": 14198.414549015462, "2042": 11366.343935188837, "2043": 8534.273321363144, "2044": 5702.202707536519, "2045": 2870.132093710825, "2046": 38.06147988513112, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 686217.4718433116, "historicalEmissionChangePercent": -2.8723478058865606, "neededEmissionChangePercent": 31.54256381043777, "hitNetZero": "2045-12-30", "budgetRunsOut": "2026-10-27", "electricCarChangePercent": 0.07304337752578609, "electricCarChangeYearly": {"2015": 0.01090909090909091, "2016": 0.012079378774805867, "2017": 0.03568320278503046, "2018": 0.03747323340471092, "2019": 0.06875, "2020": 0.2297142857142857, "2021": 0.3947100712105799, "2022": 0.5264976958525346}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.093715921, "totalConsumptionEmission": 6045.5, "electricVehiclePerChargePoints": 20.20253164556962, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Trollhättan", "län": "Västra Götalands län", "emissions": {"1990": 207127.141214481, "2000": 149204.10568104, "2005": 166300.853300719, "2010": 152093.711623393, "2015": 96196.6851032912, "2016": 94543.3808063236, "2017": 86232.2227975597, "2018": 85435.4396557122, "2019": 84827.578021321, "2020": 77182.9538869702, "2021": 77221.628535876}, "budget": 178225.14144870866, "emissionBudget": {"2024": 66009.12661875226, "2025": 45577.93338383048, "2026": 31470.61804860699, "2027": 21729.80929215778, "2028": 15003.982798947522, "2029": 10359.939049826731, "2030": 7153.323124554199, "2031": 4939.22130991086, "2032": 3410.429911174736, "2033": 2354.831146297679, "2034": 1625.9620845465681, "2035": 1122.6931088199638, "2036": 775.1963151978013, "2037": 535.256983743199, "2038": 369.583849960333, "2039": 255.18998593213124, "2040": 176.20339451258704, "2041": 121.66479074149731, "2042": 84.0070155692428, "2043": 58.00510255958502, "2044": 40.051320715883676, "2045": 27.654606582908333, "2046": 19.094932491255864, "2047": 13.184654995995023, "2048": 9.103730921437966, "2049": 6.285937456468964, "2050": 4.340309489331686}, "approximatedHistoricalEmission": {"2021": 77221.628535876, "2022": 72655.6029271232, "2023": 69332.36477293726, "2024": 66009.12661875226}, "totalApproximatedHistoricalEmission": 213603.34527737458, "trend": {"2024": 66009.12661875226, "2025": 62685.88846456632, "2026": 59362.650310381316, "2027": 56039.41215619538, "2028": 52716.174002010375, "2029": 49392.93584782444, "2030": 46069.697693639435, "2031": 42746.4595394535, "2032": 39423.221385268494, "2033": 36099.98323108256, "2034": 32776.745076897554, "2035": 29453.50692271162, "2036": 26130.268768526614, "2037": 22807.030614340678, "2038": 19483.792460155673, "2039": 16160.554305969737, "2040": 12837.316151784733, "2041": 9514.077997598797, "2042": 6190.839843413793, "2043": 2867.6016892278567, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 655762.719770425, "historicalEmissionChangePercent": -3.5178072274690373, "neededEmissionChangePercent": 30.9520732684828, "hitNetZero": "2043-11-06", "budgetRunsOut": "2026-11-30", "electricCarChangePercent": 0.07693129067052229, "electricCarChangeYearly": {"2015": 0.018949648077964266, "2016": 0.017991004497751123, "2017": 0.027281746031746032, "2018": 0.06274957216200798, "2019": 0.08112874779541446, "2020": 0.22916666666666666, "2021": 0.3987473903966597, "2022": 0.5810085836909872}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.937878473, "totalConsumptionEmission": 6070.9, "electricVehiclePerChargePoints": 12.09486166007905, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Trosa", "län": "Södermanlands län", "emissions": {"1990": 57716.580107857, "2000": 55910.1346472616, "2005": 53715.9810099334, "2010": 54951.4558238297, "2015": 47811.8710074762, "2016": 45920.3564664502, "2017": 43806.0055498222, "2018": 44292.9910579863, "2019": 44046.0290853854, "2020": 39372.3097780245, "2021": 39717.4925609034}, "budget": 90341.0788013635, "emissionBudget": {"2024": 35608.32110493397, "2025": 24008.911861341403, "2026": 16188.009737021519, "2027": 10914.76618179656, "2028": 7359.281513825513, "2029": 4961.995841015754, "2030": 3345.6258848099033, "2031": 2255.7883802697256, "2032": 1520.9654013210281, "2033": 1025.5109797750752, "2034": 691.4508171755967, "2035": 466.21073981837134, "2036": 314.3426090807491, "2037": 211.9455161461704, "2038": 142.90427233467145, "2039": 96.3532110649511, "2040": 64.96615623068774, "2041": 43.80343331313627, "2042": 29.534466579877943, "2043": 19.91361521646605, "2044": 13.426755818222308, "2045": 9.052990621868583, "2046": 6.103979271628065, "2047": 4.115608256399003, "2048": 2.774949023642711, "2049": 1.8710094848903653, "2050": 1.2615282164550639}, "approximatedHistoricalEmission": {"2021": 39717.4925609034, "2022": 38261.12147500599, "2023": 36934.72128996998, "2024": 35608.32110493397}, "totalApproximatedHistoricalEmission": 112858.74959789465, "trend": {"2024": 35608.32110493397, "2025": 34281.920919897966, "2026": 32955.52073486196, "2027": 31629.12054982595, "2028": 30302.72036479041, "2029": 28976.320179754402, "2030": 27649.919994718395, "2031": 26323.519809682388, "2032": 24997.11962464638, "2033": 23670.719439610373, "2034": 22344.319254574366, "2035": 21017.91906953836, "2036": 19691.518884502817, "2037": 18365.11869946681, "2038": 17038.718514430802, "2039": 15712.318329394795, "2040": 14385.918144358788, "2041": 13059.51795932278, "2042": 11733.117774286773, "2043": 10406.717589250766, "2044": 9080.317404215224, "2045": 7753.917219179217, "2046": 6427.5170341432095, "2047": 5101.116849107202, "2048": 3774.716664071195, "2049": 2448.3164790351875, "2050": 1121.9162939991802}, "trendEmission": 477493.0861861331, "historicalEmissionChangePercent": -2.95678335329096, "neededEmissionChangePercent": 32.57499619094742, "hitNetZero": "2050-10-29", "budgetRunsOut": "2026-09-02", "electricCarChangePercent": 0.07994518335545023, "electricCarChangeYearly": {"2015": 0.011627906976744186, "2016": 0.013157894736842105, "2017": 0.03536977491961415, "2018": 0.06909090909090909, "2019": 0.11864406779661017, "2020": 0.24925816023738873, "2021": 0.4124293785310734, "2022": 0.5870307167235495}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.260746269, "totalConsumptionEmission": 6537.8, "electricVehiclePerChargePoints": 12.196428571428571, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Tyresö", "län": "Stockholms län", "emissions": {"1990": 56692.1656888512, "2000": 47610.1395179054, "2005": 36574.4132555814, "2010": 28517.8394695302, "2015": 25291.8308600551, "2016": 24311.2166274205, "2017": 22524.8826416791, "2018": 21086.543195557, "2019": 20333.7567194455, "2020": 18012.7668100843, "2021": 18138.2408672054}, "budget": 44345.74288378853, "emissionBudget": {"2024": 13618.006345466245, "2025": 10017.221840148128, "2026": 7368.533311643505, "2027": 5420.1937454543895, "2028": 3987.021432316793, "2029": 2932.7992039186447, "2030": 2157.327548025683, "2031": 1586.901054546116, "2032": 1167.303017673047, "2033": 858.652359682457, "2034": 631.6130975639774, "2035": 464.6060777867015, "2036": 341.7579659903708, "2037": 251.39255145839286, "2038": 184.9209710317077, "2039": 136.02537278424222, "2040": 100.05843003019618, "2041": 73.60163192486002, "2042": 54.14036798666279, "2043": 39.82492465280804, "2044": 29.29467756836354, "2045": 21.54876980473765, "2046": 15.850984500988062, "2047": 11.659770461482392, "2048": 8.5767699290844, "2049": 6.308956309170264, "2050": 4.6407831899565}, "approximatedHistoricalEmission": {"2021": 18138.2408672054, "2022": 16207.20602656994, "2023": 14912.606186018325, "2024": 13618.006345466245}, "totalApproximatedHistoricalEmission": 46997.93581892409, "trend": {"2024": 13618.006345466245, "2025": 12323.406504914165, "2026": 11028.806664362084, "2027": 9734.206823810004, "2028": 8439.606983258389, "2029": 7145.0071427063085, "2030": 5850.407302154228, "2031": 4555.807461602148, "2032": 3261.2076210500672, "2033": 1966.6077804979868, "2034": 672.0079399463721, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 71786.07539703487, "historicalEmissionChangePercent": -5.316400082564488, "neededEmissionChangePercent": 26.441348417471566, "hitNetZero": "2034-07-06", "budgetRunsOut": "2028-01-10", "electricCarChangePercent": 0.08346914882009587, "electricCarChangeYearly": {"2015": 0.022485207100591716, "2016": 0.022222222222222223, "2017": 0.029379760609358, "2018": 0.06628571428571428, "2019": 0.10010537407797682, "2020": 0.3091732729331823, "2021": 0.47342026078234706, "2022": 0.5770877944325482}, "climatePlanLink": "https://app.climateview.global/public/board/db392fc1-257a-4768-a9db-215a92c6ac59", "climatePlanYear": 2019, "climatePlanComment": "Klimatplan 2030", "bicycleMetrePerCapita": 2.17324803, "totalConsumptionEmission": 6055.7, "electricVehiclePerChargePoints": 101.04761904761905, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1d87b8ZKab9jzAX6vpuptgTUv6F0EDH4v/view?usp=drive_link"}, {"kommun": "Täby", "län": "Stockholms län", "emissions": {"1990": 165422.769560396, "2000": 140789.744896529, "2005": 110901.065054359, "2010": 104445.619330142, "2015": 90850.3039212788, "2016": 87090.4152469595, "2017": 86639.833876069, "2018": 86190.9714610304, "2019": 84495.6896272799, "2020": 76215.9041170034, "2021": 76539.0082403048}, "budget": 174191.12099837343, "emissionBudget": {"2024": 69683.07802321296, "2025": 46708.186345210415, "2026": 31308.242023007995, "2027": 20985.74351242728, "2028": 14066.62917853192, "2029": 9428.784657029259, "2030": 6320.062822464247, "2031": 4236.303567514044, "2032": 2839.5711277336336, "2033": 1903.3490072077395, "2034": 1275.8044367531404, "2035": 855.1647410302539, "2036": 573.2122519988109, "2037": 384.2210396159489, "2038": 257.5412628895916, "2039": 172.6285009198453, "2040": 115.71194066330486, "2041": 77.56108140152982, "2042": 51.98876895236854, "2043": 34.84778768349467, "2044": 23.358281623219668, "2045": 15.656928507058838, "2046": 10.494753605139644, "2047": 7.034575982315792, "2048": 4.715237833381779, "2049": 3.1605981485234556, "2050": 2.118531664665892}, "approximatedHistoricalEmission": {"2021": 76539.0082403048, "2022": 74456.43899118621, "2023": 72069.75850719959, "2024": 69683.07802321296}, "totalApproximatedHistoricalEmission": 219637.24063014466, "trend": {"2024": 69683.07802321296, "2025": 67296.39753922634, "2026": 64909.717055239715, "2027": 62523.03657125309, "2028": 60136.35608726647, "2029": 57749.675603279844, "2030": 55362.99511929415, "2031": 52976.31463530753, "2032": 50589.634151320904, "2033": 48202.95366733428, "2034": 45816.27318334766, "2035": 43429.592699361034, "2036": 41042.91221537441, "2037": 38656.23173138779, "2038": 36269.55124740116, "2039": 33882.87076341454, "2040": 31496.190279427916, "2041": 29109.509795441292, "2042": 26722.8293114556, "2043": 24336.148827468976, "2044": 21949.468343482353, "2045": 19562.78785949573, "2046": 17176.107375509106, "2047": 14789.426891522482, "2048": 12402.746407535858, "2049": 10016.065923549235, "2050": 7629.385439562611}, "trendEmission": 1005062.0250160852, "historicalEmissionChangePercent": -2.7526707435668243, "neededEmissionChangePercent": 32.97054655127189, "hitNetZero": "2053-03-05", "budgetRunsOut": "2026-08-14", "electricCarChangePercent": 0.08723877258687399, "electricCarChangeYearly": {"2015": 0.03413865546218487, "2016": 0.03736571695469407, "2017": 0.055359838953195774, "2018": 0.11471974855945521, "2019": 0.16814988290398125, "2020": 0.36947368421052634, "2021": 0.5116168800379327, "2022": 0.6}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.354569043, "totalConsumptionEmission": 6863.7, "electricVehiclePerChargePoints": 51.686868686868685, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1F5TxQo7GHWYFPgsG9dzJZplkScHfppfR/view?usp=sharing"}, {"kommun": "Töreboda", "län": "Västra Götalands län", "emissions": {"1990": 47486.57654543, "2000": 43547.2935546693, "2005": 41665.7834396428, "2010": 37667.8407222394, "2015": 30665.0817493016, "2016": 30028.3542822238, "2017": 29807.9273784991, "2018": 29098.9416290206, "2019": 28270.5011098415, "2020": 25328.4802044285, "2021": 25684.0025508181}, "budget": 58915.6453156833, "emissionBudget": {"2024": 22866.095839226386, "2025": 15510.844603290749, "2026": 10521.529429379554, "2027": 7137.108543387354, "2028": 4841.341622621546, "2029": 3284.0454316256755, "2030": 2227.6788621129176, "2031": 1511.1097626466537, "2032": 1025.036756240623, "2033": 695.317029653779, "2034": 471.6570101346321, "2035": 319.9408697352211, "2036": 217.0266908525561, "2037": 147.21652967121952, "2038": 99.86194105111738, "2039": 67.73972523852012, "2040": 45.950142037008355, "2041": 31.16953229123209, "2042": 21.143345813200746, "2043": 14.342245112941411, "2044": 9.728828951530662, "2045": 6.599393053374588, "2046": 4.476591056324064, "2047": 3.0366228111406763, "2048": 2.0598437474232365, "2049": 1.3972615394418308, "2050": 0.9478096637405808}, "approximatedHistoricalEmission": {"2021": 25684.0025508181, "2022": 24714.696697776206, "2023": 23790.39626850118, "2024": 22866.095839226386}, "totalApproximatedHistoricalEmission": 72780.14216129962, "trend": {"2024": 22866.095839226386, "2025": 21941.79540995136, "2026": 21017.494980676332, "2027": 20093.19455140154, "2028": 19168.894122126512, "2029": 18244.593692851486, "2030": 17320.29326357646, "2031": 16395.992834301665, "2032": 15471.692405026639, "2033": 14547.391975751612, "2034": 13623.091546476586, "2035": 12698.791117201792, "2036": 11774.490687926766, "2037": 10850.190258651739, "2038": 9925.889829376712, "2039": 9001.589400101919, "2040": 8077.288970826892, "2041": 7152.988541551866, "2042": 6228.688112276839, "2043": 5304.387683002045, "2044": 4380.087253727019, "2045": 3455.7868244519923, "2046": 2531.4863951769657, "2047": 1607.185965902172, "2048": 682.8855366271455, "2049": 0, "2050": 0}, "trendEmission": 282929.21927855525, "historicalEmissionChangePercent": -2.839830316077111, "neededEmissionChangePercent": 32.16662471657199, "hitNetZero": "2048-09-20", "budgetRunsOut": "2026-09-23", "electricCarChangePercent": 0.05767007673304146, "electricCarChangeYearly": {"2015": 0.004807692307692308, "2016": 0.0, "2017": 0.008298755186721992, "2018": 0.03225806451612903, "2019": 0.05472636815920398, "2020": 0.16312056737588654, "2021": 0.22602739726027396, "2022": 0.4658385093167702}, "climatePlanLink": "https://toreboda.se/download/18.178b2aa0182e97835b4558f/1662987466375/Strategi%20fo%CC%88r%20Agenda%202030%20To%CC%88reboda%20kommun.pdf", "climatePlanYear": 2022, "climatePlanComment": "Strategi för Agenda 2030", "bicycleMetrePerCapita": 5.452574406, "totalConsumptionEmission": 5912.2, "electricVehiclePerChargePoints": 52.2, "procurementScore": "2", "procurementLink": "https://toreboda.se/Toreboda-kommun/Hallbarhet--miljo/Strategiskt-hallbarhetsarbete/Kommunens-klimatloften"}, {"kommun": "Uddevalla", "län": "Västra Götalands län", "emissions": {"1990": 269858.454370947, "2000": 226090.590162143, "2005": 218521.601444873, "2010": 242509.079164329, "2015": 203899.73951437, "2016": 207381.384589235, "2017": 213605.818948863, "2018": 217112.385812681, "2019": 218232.244148144, "2020": 198271.788813152, "2021": 221935.89138647}, "budget": 438553.85957414407, "emissionBudget": {"2024": 220173.2553011491, "2025": 133269.17294102555, "2026": 80666.80229663789, "2027": 48826.993138498794, "2028": 29554.602278394443, "2029": 17889.17276467238, "2030": 10828.178271180632, "2031": 6554.212775227541, "2032": 3967.2144313774847, "2033": 2401.324290846415, "2034": 1453.503068601929, "2035": 879.7941945985793, "2036": 532.53263895334, "2037": 322.3378982172088, "2038": 195.10864316467098, "2039": 118.09775657191574, "2040": 71.48366100597704, "2041": 43.26850855719478, "2042": 26.190094441406668, "2043": 15.85266212592259, "2044": 9.595494091893903, "2045": 5.808078550858051, "2046": 3.515585141304504, "2047": 2.1279565655900283, "2048": 1.2880356933575676, "2049": 0.7796380688358169, "2050": 0.4719089086681884}, "approximatedHistoricalEmission": {"2021": 221935.89138647, "2022": 217279.27749661915, "2023": 218726.26639888436, "2024": 220173.2553011491}, "totalApproximatedHistoricalEmission": 657060.1172393131, "trend": {"2024": 220173.2553011491, "2025": 221620.2442034143, "2026": 223067.23310567904, "2027": 224514.22200794425, "2028": 225961.21091020945, "2029": 227408.1998124742, "2030": 228855.1887147394, "2031": 230302.17761700414, "2032": 231749.16651926935, "2033": 233196.1554215341, "2034": 234643.1443237993, "2035": 236090.13322606403, "2036": 237537.12212832924, "2037": 238984.11103059398, "2038": 240431.0999328592, "2039": 241878.08883512393, "2040": 243325.07773738913, "2041": 244772.06663965387, "2042": 246219.05554191908, "2043": 247666.04444418382, "2044": 249113.03334644902, "2045": 250560.02224871377, "2046": 252007.01115097897, "2047": 253454.0000532437, "2048": 254900.98895550892, "2049": 256347.97785777412, "2050": 257794.96676003886}, "trendEmission": 6213586.886795446, "historicalEmissionChangePercent": 1.6091883207729427, "neededEmissionChangePercent": 39.47077143464027, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-12-24", "electricCarChangePercent": 0.08432083248236984, "electricCarChangeYearly": {"2015": 0.016040329972502293, "2016": 0.020505309410472353, "2017": 0.029464285714285714, "2018": 0.054177215189873416, "2019": 0.10401002506265664, "2020": 0.2798165137614679, "2021": 0.4257234726688103, "2022": 0.6240359897172236}, "climatePlanLink": "https://www.uddevalla.se/download/18.579c6dca18049edc75d3329/1652779490750/Energi%20och%20klimatplan%20f%C3%B6r%20Uddevalla%20kommun%202022%20TA.pdf", "climatePlanYear": 2022, "climatePlanComment": "Energi– och klimatplan 2022–2030. Finns även separat åtgärdsplan.", "bicycleMetrePerCapita": 2.291437576, "totalConsumptionEmission": 6099.2, "electricVehiclePerChargePoints": 15.776119402985074, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1LCvp1LfjM4Q0wnCbEqL1F6zJ8fJiZKmq/view?usp=drive_link"}, {"kommun": "Ulricehamn", "län": "Västra Götalands län", "emissions": {"1990": 119761.209038391, "2000": 110865.43209127, "2005": 102673.359737835, "2010": 98994.0265255083, "2015": 85558.4693399508, "2016": 83064.920801217, "2017": 87283.0344599434, "2018": 90968.9948507142, "2019": 89910.1440876617, "2020": 82679.0338465739, "2021": 83502.181146889}, "budget": 178618.20898542664, "emissionBudget": {"2024": 85213.78360597475, "2025": 52883.4793638417, "2026": 32819.36643674374, "2027": 20367.623807402502, "2028": 12640.100788034248, "2029": 7844.417662191683, "2030": 4868.227674035386, "2031": 3021.21096897618, "2032": 1874.956622868012, "2033": 1163.5937952482454, "2034": 722.1236501296524, "2035": 448.14828697614524, "2036": 278.11980272851406, "2037": 172.6005139764484, "2038": 107.11548452382063, "2039": 66.47562490073727, "2040": 41.254620894337734, "2041": 25.602523446404685, "2042": 15.888867540500613, "2043": 9.860594884252547, "2044": 6.119462650406364, "2045": 3.7977245358211564, "2046": 2.3568591678585173, "2047": 1.4626614133606899, "2048": 0.9077243304605963, "2049": 0.5633316450298329, "2050": 0.3496023315040946}, "approximatedHistoricalEmission": {"2021": 83502.181146889, "2022": 85521.89281031414, "2023": 85367.83820814441, "2024": 85213.78360597475}, "totalApproximatedHistoricalEmission": 255247.71339489042, "trend": {"2024": 85213.78360597475, "2025": 85059.72900380509, "2026": 84905.67440163536, "2027": 84751.6197994657, "2028": 84597.56519729603, "2029": 84443.51059512631, "2030": 84289.45599295665, "2031": 84135.40139078698, "2032": 83981.34678861726, "2033": 83827.2921864476, "2034": 83673.23758427793, "2035": 83519.1829821082, "2036": 83365.12837993854, "2037": 83211.07377776888, "2038": 83057.01917559915, "2039": 82902.96457342949, "2040": 82748.90997125983, "2041": 82594.8553690901, "2042": 82440.80076692044, "2043": 82286.74616475077, "2044": 82132.69156258105, "2045": 81978.63696041139, "2046": 81824.58235824172, "2047": 81670.527756072, "2048": 81516.47315390233, "2049": 81362.41855173267, "2050": 81208.36394956295}, "trendEmission": 2163487.91822199, "historicalEmissionChangePercent": -0.304053255929935, "neededEmissionChangePercent": 37.9402285334813, "hitNetZero": "2576-10-09", "budgetRunsOut": "2026-02-06", "electricCarChangePercent": 0.05423459046932939, "electricCarChangeYearly": {"2015": 0.001148105625717566, "2016": 0.012235817575083427, "2017": 0.03257328990228013, "2018": 0.03536585365853658, "2019": 0.05970149253731343, "2020": 0.18811881188118812, "2021": 0.29475100942126514, "2022": 0.3800277392510402}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Står bakom klimatlöften inom Västra Götalands klimat 2030", "bicycleMetrePerCapita": 6.208408392, "totalConsumptionEmission": 5938.7, "electricVehiclePerChargePoints": 11.71111111111111, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Umeå", "län": "Västerbottens län", "emissions": {"1990": 407420.60455849, "2000": 387778.428811164, "2005": 433383.864016815, "2010": 388647.494019284, "2015": 348047.940585614, "2016": 347053.536245256, "2017": 336968.375368934, "2018": 340128.938919028, "2019": 316473.081930336, "2020": 280956.561851113, "2021": 291976.86744178}, "budget": 669960.4404726056, "emissionBudget": {"2024": 254321.65855064243, "2025": 173989.13583753398, "2026": 119031.22825641617, "2027": 81432.86206939448, "2028": 55710.683002681515, "2029": 38113.36261250906, "2030": 26074.503691916394, "2031": 17838.35631854275, "2032": 12203.75888672981, "2033": 8348.96042583386, "2034": 5711.776251818305, "2035": 3907.598825104883, "2036": 2673.3064995499744, "2037": 1828.8898017427155, "2038": 1251.198808472422, "2039": 855.9829339258569, "2040": 585.6038050954296, "2041": 400.62926835402277, "2042": 274.0825952039776, "2043": 187.50819005905794, "2044": 128.2800219877426, "2045": 87.76024149127983, "2046": 60.03943456872557, "2047": 41.074792435370185, "2048": 28.100507370327087, "2049": 19.224406689632744, "2050": 13.151997851777375}, "approximatedHistoricalEmission": {"2021": 291976.86744178, "2022": 277243.2629548125, "2023": 265782.4607527256, "2024": 254321.65855064243}, "totalApproximatedHistoricalEmission": 816174.9867037493, "trend": {"2024": 254321.65855064243, "2025": 242860.85634855554, "2026": 231400.05414646864, "2027": 219939.25194438547, "2028": 208478.44974229857, "2029": 197017.6475402154, "2030": 185556.8453381285, "2031": 174096.0431360416, "2032": 162635.24093395844, "2033": 151174.43873187155, "2034": 139713.63652978465, "2035": 128252.83432770148, "2036": 116792.03212561458, "2037": 105331.22992353141, "2038": 93870.42772144452, "2039": 82409.62551935762, "2040": 70948.82331727445, "2041": 59488.021115187556, "2042": 48027.218913104385, "2043": 36566.41671101749, "2044": 25105.614508930594, "2045": 13644.812306847423, "2046": 2184.0101047605276, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 2822654.3602618016, "historicalEmissionChangePercent": -2.751475724983871, "neededEmissionChangePercent": 31.586976575615566, "hitNetZero": "2046-03-05", "budgetRunsOut": "2026-10-24", "electricCarChangePercent": 0.07299210060480074, "electricCarChangeYearly": {"2015": 0.014962593516209476, "2016": 0.030283365779796668, "2017": 0.04685377999094613, "2018": 0.04944524843222383, "2019": 0.07192835152532885, "2020": 0.28056768558951967, "2021": 0.42645074224021595, "2022": 0.5045161290322581}, "climatePlanLink": "https://www.umea.se/byggaboochmiljo/samhallsutvecklingochhallbarhet/klimatmiljoochhallbarhet/strategisktmiljoarbete/miljomal/programochplanerformiljomalen.4.4c35eecf182e743a9224108.html", "climatePlanYear": 2022, "climatePlanComment": "Program och planer för att nå Umeå kommuns miljömål", "bicycleMetrePerCapita": 2.639826356, "totalConsumptionEmission": 6242.3, "electricVehiclePerChargePoints": 22.933070866141733, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/13xhFpEzYLYzbCAhrQGnl-ZycaY8DR9pD/edit?usp=drive_link&ouid=104089955738391943844&rtpof=true&sd=true"}, {"kommun": "Upplands Väsby", "län": "Stockholms län", "emissions": {"1990": 106270.104063107, "2000": 94499.9688261575, "2005": 92533.9213794024, "2010": 84833.5283744287, "2015": 75169.5245434243, "2016": 72643.9331557786, "2017": 71106.6587740608, "2018": 73241.8885446057, "2019": 71561.8809658131, "2020": 61435.7069567561, "2021": 61795.375408763}, "budget": 144251.76875368503, "emissionBudget": {"2024": 56261.35027625505, "2025": 38091.29940838003, "2026": 25789.41108761873, "2027": 17460.515513415965, "2028": 11821.50305636893, "2029": 8003.654554435302, "2030": 5418.810613276535, "2031": 3668.762596242532, "2032": 2483.906515317322, "2033": 1681.7091362506835, "2034": 1138.5877856146774, "2035": 770.871797985933, "2036": 521.9126152923353, "2037": 353.3567821691874, "2038": 239.2373969252018, "2039": 161.9737754464343, "2040": 109.66305548197599, "2041": 74.24649888228365, "2042": 50.268001124434996, "2043": 34.033550067492115, "2044": 23.04214419286821, "2045": 15.600500328411803, "2046": 10.562194579621808, "2047": 7.1510497733600324, "2048": 4.841561332313914, "2049": 3.277940565017672, "2050": 2.2193035697129333}, "approximatedHistoricalEmission": {"2021": 61795.375408763, "2022": 60695.89867698867, "2023": 58478.62447662186, "2024": 56261.35027625505}, "totalApproximatedHistoricalEmission": 178202.88599611956, "trend": {"2024": 56261.35027625505, "2025": 54044.07607588824, "2026": 51826.80187552143, "2027": 49609.52767515369, "2028": 47392.25347478688, "2029": 45174.97927442007, "2030": 42957.70507405326, "2031": 40740.43087368645, "2032": 38523.15667331871, "2033": 36305.8824729519, "2034": 34088.60827258509, "2035": 31871.334072218277, "2036": 29654.059871851467, "2037": 27436.785671483725, "2038": 25219.511471116915, "2039": 23002.237270750105, "2040": 20784.963070383295, "2041": 18567.688870015554, "2042": 16350.414669648744, "2043": 14133.140469281934, "2044": 11915.866268915124, "2045": 9698.592068548314, "2046": 7481.317868180573, "2047": 5264.043667813763, "2048": 3046.769467446953, "2049": 829.4952670801431, "2050": 0}, "trendEmission": 714050.3169252281, "historicalEmissionChangePercent": -3.055293108791476, "neededEmissionChangePercent": 32.29579592145629, "hitNetZero": "2049-05-10", "budgetRunsOut": "2026-09-16", "electricCarChangePercent": 0.0765374063331129, "electricCarChangeYearly": {"2015": 0.02456140350877193, "2016": 0.012755102040816327, "2017": 0.030211480362537766, "2018": 0.0353356890459364, "2019": 0.08116883116883117, "2020": 0.33175355450236965, "2021": 0.4268846503178928, "2022": 0.5114235500878734}, "climatePlanLink": "https://upplandsvasby.se/download/18.46d5f63317fbd916d941070/1649663540253/Klimat-%20och%20energistrategi%20f%C3%B6r%20Upplands%20V%C3%A4sby%20kommun%202022-2025.pdf", "climatePlanYear": 2022, "climatePlanComment": "Klimat– och energistrategi för Upplands Väsby 2022–2025", "bicycleMetrePerCapita": 3.734221098, "totalConsumptionEmission": 6207.6, "electricVehiclePerChargePoints": 26.8125, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1gOAObk2x8iu_AOGdUeRIntx3umiFfEAx/view?usp=drive_link"}, {"kommun": "Upplands-Bro", "län": "Stockholms län", "emissions": {"1990": 97475.9617003082, "2000": 101033.821362887, "2005": 94802.3441327776, "2010": 88967.1889355717, "2015": 77669.9352889672, "2016": 75438.4714357281, "2017": 90138.7182686743, "2018": 82445.7081035067, "2019": 81511.2532271984, "2020": 171312.873434626, "2021": 175701.494107733}, "budget": 223423.8339650386, "emissionBudget": {"2024": 210006.06814076006, "2025": 82038.74524840411, "2026": 32048.386894332103, "2027": 12519.68322307779, "2028": 4890.806782975278, "2029": 1910.5907523526453, "2030": 746.3711377194886, "2031": 291.569439732043, "2032": 113.90142770714709, "2033": 44.4955247904216, "2034": 17.38215021733912, "2035": 6.790326613771795, "2036": 2.6526370411701548, "2037": 1.0362510778077898, "2038": 0.40481086541116634, "2039": 0.1581391230990192, "2040": 0.06177695410701527, "2041": 0.024133130271315757, "2042": 0.009427592944828596, "2043": 0.003682883560240945, "2044": 0.0014387162659301284, "2045": 0.0005620336510765257, "2046": 0.00021955811053417994, "2047": 8.577024491150187e-05, "2048": 3.3506095011843344e-05, "2049": 1.3089136029645638e-05, "2050": 5.11326318217654e-06}, "approximatedHistoricalEmission": {"2021": 175701.494107733, "2022": 175919.20989700407, "2023": 192962.6390188858, "2024": 210006.06814076006}, "totalApproximatedHistoricalEmission": 561735.6300401364, "trend": {"2024": 210006.06814076006, "2025": 227049.4972626418, "2026": 244092.9263845235, "2027": 261136.35550639778, "2028": 278179.7846282795, "2029": 295223.21375016123, "2030": 312266.6428720355, "2031": 329310.0719939172, "2032": 346353.50111579895, "2033": 363396.9302376732, "2034": 380440.35935955495, "2035": 397483.7884814292, "2036": 414527.21760331094, "2037": 431570.64672519267, "2038": 448614.07584706694, "2039": 465657.50496894866, "2040": 482700.9340908304, "2041": 499744.36321270466, "2042": 516787.7923345864, "2043": 533831.2214564681, "2044": 550874.6505783424, "2045": 567918.0797002241, "2046": 584961.5088221058, "2047": 602004.9379439801, "2048": 619048.3670658618, "2049": 636091.7961877435, "2050": 653135.2253096178}, "trendEmission": 11220836.814854968, "historicalEmissionChangePercent": 19.946321209734215, "neededEmissionChangePercent": 60.93505965103052, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-01-08", "electricCarChangePercent": 0.08185558879772066, "electricCarChangeYearly": {"2015": 0.004873294346978557, "2016": 0.024358130348913758, "2017": 0.025995575221238937, "2018": 0.037037037037037035, "2019": 0.10087424344317418, "2020": 0.22939068100358423, "2021": 0.4666666666666667, "2022": 0.5749167591564928}, "climatePlanLink": "https://www.upplands-bro.se/download/18.600d84bf187eae331ea77/1683275082167/Milj%C3%B6-%20och%20klimatstrategi%202023-2045", "climatePlanYear": 2023, "climatePlanComment": "Miljö– och klimatstrategi 2023–2045", "bicycleMetrePerCapita": 2.711961788, "totalConsumptionEmission": 5788.8, "electricVehiclePerChargePoints": 18.70689655172414, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Uppsala", "län": "Uppsala län", "emissions": {"1990": 842603.553856603, "2000": 897854.104303953, "2005": 898254.65242091, "2010": 962335.032302411, "2015": 660889.191725848, "2016": 687279.292194363, "2017": 613180.546841957, "2018": 709278.688311753, "2019": 600428.750870811, "2020": 453861.630793152, "2021": 466991.936441858}, "budget": 1241778.9664810896, "emissionBudget": {"2024": 371427.38717733324, "2025": 275405.4259304085, "2026": 204207.20509685247, "2027": 151415.25433854444, "2028": 112271.15730579813, "2029": 83246.65052967898, "2030": 61725.602467381075, "2031": 45768.20779837631, "2032": 33936.14256227494, "2033": 25162.92045081794, "2034": 18657.764784323404, "2035": 13834.331647931704, "2036": 10257.859628811111, "2037": 7605.982482003334, "2038": 5639.672564250767, "2039": 4181.69601458055, "2040": 3100.637733687641, "2041": 2299.0562494371006, "2042": 1704.7008041760037, "2043": 1263.9990137126129, "2044": 937.2281063941493, "2045": 694.9345006489681, "2046": 515.2789986743454, "2047": 382.06830460552186, "2048": 283.29543753906097, "2049": 210.0574791549671, "2050": 155.75310683517634}, "approximatedHistoricalEmission": {"2021": 466991.936441858, "2022": 447233.02179344, "2023": 409330.2044853866, "2024": 371427.38717733324}, "totalApproximatedHistoricalEmission": 1275772.8880884224, "trend": {"2024": 371427.38717733324, "2025": 333524.56986927986, "2026": 295621.7525612265, "2027": 257718.9352531731, "2028": 219816.11794511974, "2029": 181913.30063705146, "2030": 144010.4833289981, "2031": 106107.66602094471, "2032": 68204.84871289134, "2033": 30302.031404837966, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 1822933.3993221894, "historicalEmissionChangePercent": -4.663369930193437, "neededEmissionChangePercent": 25.85214891573957, "hitNetZero": "2033-10-16", "budgetRunsOut": "2028-04-10", "electricCarChangePercent": 0.07604799399367819, "electricCarChangeYearly": {"2015": 0.04129405576012625, "2016": 0.030376670716889428, "2017": 0.05270635033385424, "2018": 0.0766446333018571, "2019": 0.12393721386527141, "2020": 0.3136797454931071, "2021": 0.4467153284671533, "2022": 0.5378834044281942}, "climatePlanLink": "https://www.uppsala.se/contentassets/5d36faebce83404888c3a4677bad5584/miljo--och-klimatprogram.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljö– och klimatprogram. Se även tillhörande handlingsplan.", "bicycleMetrePerCapita": 2.036415643, "totalConsumptionEmission": 6360.6, "electricVehiclePerChargePoints": 20.836032388663966, "procurementScore": "2", "procurementLink": "https://www.uppsala.se/kommun-och-politik/publikationer/2021/mal-och-budget-2022-med-plan-for-2023-2024/"}, {"kommun": "Uppvidinge", "län": "Kronobergs län", "emissions": {"1990": 62876.9175051374, "2000": 59431.4007572198, "2005": 53325.3159872217, "2010": 48223.4525156254, "2015": 41285.2633714599, "2016": 40040.4003227782, "2017": 37965.2471401662, "2018": 39013.2629232422, "2019": 37767.8657703849, "2020": 33282.3230952449, "2021": 33989.8922974653}, "budget": 78011.06269070183, "emissionBudget": {"2024": 29992.11162149906, "2025": 20419.18044997004, "2026": 13901.753084619895, "2027": 9464.568830235414, "2028": 6443.652293131849, "2029": 4386.956830208882, "2030": 2986.72078420954, "2031": 2033.414366287372, "2032": 1384.385847811407, "2033": 942.5153118789639, "2034": 641.6817352840474, "2035": 436.86871099874804, "2036": 297.428242312716, "2037": 202.4946101610038, "2038": 137.86204976844544, "2039": 93.8590155621706, "2040": 63.90094168116851, "2041": 43.504934750091984, "2042": 29.618958622757354, "2043": 20.16513103481341, "2044": 13.72879157671546, "2045": 9.346813458910775, "2046": 6.363482273548846, "2047": 4.332375608412901, "2048": 2.9495608859303832, "2049": 2.0081152250318204, "2050": 1.3671617277812547}, "approximatedHistoricalEmission": {"2021": 33989.8922974653, "2022": 32534.943696273025, "2023": 31263.527658886276, "2024": 29992.11162149906}, "totalApproximatedHistoricalEmission": 95789.47331464148, "trend": {"2024": 29992.11162149906, "2025": 28720.695584112313, "2026": 27449.279546725564, "2027": 26177.863509338815, "2028": 24906.4474719516, "2029": 23635.03143456485, "2030": 22363.615397178102, "2031": 21092.199359791353, "2032": 19820.783322404604, "2033": 18549.36728501739, "2034": 17277.95124763064, "2035": 16006.535210243892, "2036": 14735.119172857143, "2037": 13463.703135469928, "2038": 12192.28709808318, "2039": 10920.87106069643, "2040": 9649.455023309682, "2041": 8378.038985922933, "2042": 7106.622948535718, "2043": 5835.206911148969, "2044": 4563.79087376222, "2045": 3292.374836375471, "2046": 2020.9587989882566, "2047": 749.5427616015077, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 353903.7967864601, "historicalEmissionChangePercent": -3.063391776119758, "neededEmissionChangePercent": 31.918163323541755, "hitNetZero": "2047-07-29", "budgetRunsOut": "2026-10-06", "electricCarChangePercent": 0.06993258639548683, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.02631578947368421, "2017": 0.04, "2018": 0.07177033492822966, "2019": 0.07027027027027027, "2020": 0.24060150375939848, "2021": 0.3935483870967742, "2022": 0.4911242603550296}, "climatePlanLink": "https://www.uppvidinge.se/download/18.57203f4c17cb7cc4b2c7a190/1635761631493/Klimat-%20och%20energistrategi%202022-2030%20f%C3%B6r%20Uppvidinge%20kommun%20f%C3%B6r%20SAMR%C3%85D.pdf", "climatePlanYear": 2022, "climatePlanComment": "Förslag på remiss för klimat– och energistrategi 2022–2030 ", "bicycleMetrePerCapita": 0.2710671217, "totalConsumptionEmission": 5849.5, "electricVehiclePerChargePoints": 38.375, "procurementScore": "2", "procurementLink": "https://foretag.vaxjo.se/download/18.3d04795317955c86cd918e16/1622707803967/Klimatkontrakt%202030.pdf"}, {"kommun": "Vadstena", "län": "Östergötlands län", "emissions": {"1990": 38057.8177952853, "2000": 31998.725686032, "2005": 27341.1576762642, "2010": 23877.6700276439, "2015": 20973.379318829, "2016": 20886.7269106433, "2017": 16301.3343214304, "2018": 15067.3900686095, "2019": 14062.7028052392, "2020": 12965.957842624, "2021": 13009.6628354071}, "budget": 33553.38456944481, "emissionBudget": {"2024": 7187.167921290733, "2025": 5801.382324043853, "2026": 4682.795398452889, "2027": 3779.8875369562325, "2028": 3051.0728264483664, "2029": 2462.783694296831, "2030": 1987.9248611560442, "2031": 1604.625393108509, "2032": 1295.2313754511283, "2033": 1045.4928129381635, "2034": 843.9073069278016, "2035": 681.1902806722184, "2036": 549.8473525149768, "2037": 443.8291614633419, "2038": 358.2527471747492, "2039": 289.1766517438612, "2040": 233.41938498241453, "2041": 188.41289210938265, "2042": 152.084274901574, "2043": 122.76031864586896, "2044": 99.0904276184263, "2045": 79.98441967169822, "2046": 64.56231488730306, "2047": 52.11380567260886, "2048": 42.06554158448462, "2049": 33.9547220925004, "2050": 27.40778102341556}, "approximatedHistoricalEmission": {"2021": 13009.6628354071, "2022": 10185.11928575486, "2023": 8686.143603522796, "2024": 7187.167921290733}, "totalApproximatedHistoricalEmission": 28969.678267626572, "trend": {"2024": 7187.167921290733, "2025": 5688.19223905867, "2026": 4189.216556826606, "2027": 2690.240874594543, "2028": 1191.2651923624799, "2029": 0, "2030": 0, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 17352.498823487666, "historicalEmissionChangePercent": -7.344368409280972, "neededEmissionChangePercent": 19.28138610956524, "hitNetZero": "2028-10-16", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.0826447951677765, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.031055900621118012, "2017": 0.016483516483516484, "2018": 0.062111801242236024, "2019": 0.10493827160493827, "2020": 0.2631578947368421, "2021": 0.4503311258278146, "2022": 0.5804195804195804}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.322477247, "totalConsumptionEmission": 6092.0, "electricVehiclePerChargePoints": 36.5, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vaggeryd", "län": "Jönköpings län", "emissions": {"1990": 104214.140660256, "2000": 102700.828969166, "2005": 106621.679107844, "2010": 118247.407726741, "2015": 104066.942262449, "2016": 97609.1681778068, "2017": 93394.0694297333, "2018": 96426.0097383856, "2019": 96865.2817940091, "2020": 89343.3551308599, "2021": 89584.2704334941}, "budget": 197672.5544742231, "emissionBudget": {"2024": 83218.06473457301, "2025": 54624.088919718066, "2026": 35855.08867366928, "2027": 23535.173020206093, "2028": 15448.417214424706, "2029": 10140.294878054978, "2030": 6656.059244561077, "2031": 4369.017390508548, "2032": 2867.8099543906446, "2033": 1882.4218810318741, "2034": 1235.616095397963, "2035": 811.0547112688687, "2036": 532.3738879101955, "2037": 349.4486285459248, "2038": 229.37703513592845, "2039": 150.56240016358927, "2040": 98.82870937618986, "2041": 64.87086939601933, "2042": 42.58104474659123, "2043": 27.950070479901157, "2044": 18.34634270907551, "2045": 12.042484509686242, "2046": 7.9046508323587625, "2047": 5.188589176199667, "2048": 3.405774424490667, "2049": 2.235540151014714, "2050": 1.4674018722030586}, "approximatedHistoricalEmission": {"2021": 89584.2704334941, "2022": 87254.38110717898, "2023": 85236.222920876, "2024": 83218.06473457301}, "totalApproximatedHistoricalEmission": 258891.77161208855, "trend": {"2024": 83218.06473457301, "2025": 81199.90654827049, "2026": 79181.7483619675, "2027": 77163.59017566452, "2028": 75145.43198936153, "2029": 73127.27380305855, "2030": 71109.11561675556, "2031": 69090.95743045257, "2032": 67072.79924415005, "2033": 65054.64105784707, "2034": 63036.48287154408, "2035": 61018.324685241096, "2036": 59000.16649893811, "2037": 56982.008312635124, "2038": 54963.85012633214, "2039": 52945.69194002962, "2040": 50927.53375372663, "2041": 48909.375567423645, "2042": 46891.21738112066, "2043": 44873.05919481767, "2044": 42854.90100851469, "2045": 40836.74282221217, "2046": 38818.58463590918, "2047": 36800.426449606195, "2048": 34782.26826330321, "2049": 32764.110077000223, "2050": 30745.951890697237}, "trendEmission": 1481532.2161285174, "historicalEmissionChangePercent": -2.386249326864197, "neededEmissionChangePercent": 34.36029893996749, "hitNetZero": "2065-03-16", "budgetRunsOut": "2026-06-13", "electricCarChangePercent": 0.07424964946747815, "electricCarChangeYearly": {"2015": 0.02, "2016": 0.017064846416382253, "2017": 0.02631578947368421, "2018": 0.0472972972972973, "2019": 0.16, "2020": 0.21649484536082475, "2021": 0.43703703703703706, "2022": 0.5134099616858238}, "climatePlanLink": "https://www.vaggeryd.se/download/18.1a18992817d52e74471ea1f5/1639407815746/Milj%C3%B6program%202022-2025%20antaget%20KF%20211129%20%C2%A7155.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljöprogram 2022–2025", "bicycleMetrePerCapita": 4.665683814, "totalConsumptionEmission": 6103.4, "electricVehiclePerChargePoints": 18.71875, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Valdemarsvik", "län": "Östergötlands län", "emissions": {"1990": 60726.9134074191, "2000": 54945.5999402807, "2005": 49152.3217216693, "2010": 43698.9064144347, "2015": 37647.1247323438, "2016": 37028.6337100123, "2017": 35287.9437388434, "2018": 33127.2268011044, "2019": 32480.7743244593, "2020": 28278.5718630025, "2021": 29546.2176247229}, "budget": 69139.56955947522, "emissionBudget": {"2024": 23783.067306798417, "2025": 16860.734770312047, "2026": 11953.225937074425, "2027": 8474.103427231863, "2028": 6007.619137583086, "2029": 4259.033184121063, "2030": 3019.393082022508, "2031": 2140.5643463298825, "2032": 1517.5287206094624, "2033": 1075.83470771296, "2034": 762.7007664507275, "2035": 540.7080241732937, "2036": 383.3287971715638, "2037": 271.75658612734816, "2038": 192.65873748206155, "2039": 136.58321830253016, "2040": 96.829117462755, "2041": 68.64590031733287, "2042": 48.66572941955975, "2043": 34.50101475819379, "2044": 24.459101580150016, "2045": 17.34000157099775, "2046": 12.292996678431559, "2047": 8.714980025646794, "2048": 6.178385859379655, "2049": 4.3800963071684675, "2050": 3.1052194046677997}, "approximatedHistoricalEmission": {"2021": 29546.2176247229, "2022": 26969.496909031644, "2023": 25376.282107915264, "2024": 23783.067306798417}, "totalApproximatedHistoricalEmission": 79010.42148270756, "trend": {"2024": 23783.067306798417, "2025": 22189.85250568157, "2026": 20596.63770456519, "2027": 19003.422903448343, "2028": 17410.208102331497, "2029": 15816.993301215116, "2030": 14223.77850009827, "2031": 12630.563698981423, "2032": 11037.348897865042, "2033": 9444.134096748196, "2034": 7850.919295631349, "2035": 6257.704494514968, "2036": 4664.489693398122, "2037": 3071.2748922812752, "2038": 1478.0600911648944, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 177566.92183132446, "historicalEmissionChangePercent": -3.8121864131465735, "neededEmissionChangePercent": 29.106138611934274, "hitNetZero": "2038-12-01", "budgetRunsOut": "2027-04-07", "electricCarChangePercent": 0.06314947707714712, "electricCarChangeYearly": {"2015": 0.014598540145985401, "2016": 0.0070921985815602835, "2017": 0.013986013986013986, "2018": 0.01652892561983471, "2019": 0.08461538461538462, "2020": 0.24, "2021": 0.29411764705882354, "2022": 0.46078431372549017}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.338655645, "totalConsumptionEmission": 5970.0, "electricVehiclePerChargePoints": 7.2, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vallentuna", "län": "Stockholms län", "emissions": {"1990": 104497.228420871, "2000": 92593.872563724, "2005": 76513.0011078828, "2010": 74344.7289405394, "2015": 64316.6234824728, "2016": 61927.1035972555, "2017": 73960.4873951664, "2018": 65983.5263391527, "2019": 65085.8301984202, "2020": 58428.6808763079, "2021": 58851.761582854}, "budget": 132876.16726490864, "emissionBudget": {"2024": 57164.98299505422, "2025": 37178.44151098782, "2026": 24179.776512931523, "2027": 15725.82304297297, "2028": 10227.617705508606, "2029": 6651.744944871114, "2030": 4326.101354745361, "2031": 2813.5704370264716, "2032": 1829.8643408865046, "2033": 1190.0905205653103, "2034": 774.0002444406649, "2035": 503.38723655208935, "2036": 327.38841071900333, "2037": 212.92389574129314, "2038": 138.47950597298737, "2039": 90.06304110564737, "2040": 58.574381214067664, "2041": 38.09507310092137, "2042": 24.775927026199717, "2043": 16.113541989573623, "2044": 10.479778826244726, "2045": 6.815743200226914, "2046": 4.432761047886127, "2047": 2.8829387977825176, "2048": 1.87497950419032, "2049": 1.21943210998369, "2050": 0.793083160395088}, "approximatedHistoricalEmission": {"2021": 58851.761582854, "2022": 59469.70359059004, "2023": 58317.34329282213, "2024": 57164.98299505422}, "totalApproximatedHistoricalEmission": 175795.41917236627, "trend": {"2024": 57164.98299505422, "2025": 56012.62269728677, "2026": 54860.26239951886, "2027": 53707.90210175095, "2028": 52555.54180398304, "2029": 51403.181506215595, "2030": 50250.82120844768, "2031": 49098.46091067977, "2032": 47946.10061291186, "2033": 46793.740315144416, "2034": 45641.380017376505, "2035": 44489.019719608594, "2036": 43336.65942184115, "2037": 42184.29912407324, "2038": 41031.938826305326, "2039": 39879.578528537415, "2040": 38727.21823076997, "2041": 37574.85793300206, "2042": 36422.49763523415, "2043": 35270.1373374667, "2044": 34117.77703969879, "2045": 32965.41674193088, "2046": 31813.05644416297, "2047": 30660.696146395523, "2048": 29508.335848627612, "2049": 28355.9755508597, "2050": 27203.615253092255}, "trendEmission": 1096791.7772259028, "historicalEmissionChangePercent": -0.9889667041823583, "neededEmissionChangePercent": 34.962909874031794, "hitNetZero": "2073-07-28", "budgetRunsOut": "2026-05-20", "electricCarChangePercent": 0.08854171329681397, "electricCarChangeYearly": {"2015": 0.021897810218978103, "2016": 0.041294642857142856, "2017": 0.07914438502673797, "2018": 0.12449255751014884, "2019": 0.17440401505646172, "2020": 0.3379501385041551, "2021": 0.5242346938775511, "2022": 0.6213942307692307}, "climatePlanLink": "https://dok.vallentuna.se/file/f%C3%B6rfattningssamling/2.%20bygga,%20bo%20och%20milj%C3%B6/2.5%20strategier/2.5.2%20Milj%C3%B6-%20och%20klimatstrategi.pdf", "climatePlanYear": 2019, "climatePlanComment": "Miljö– och klimatstrategi", "bicycleMetrePerCapita": 2.091930929, "totalConsumptionEmission": 6034.4, "electricVehiclePerChargePoints": 67.0, "procurementScore": "2", "procurementLink": "https://dok.vallentuna.se/file/f%C3%B6rfattningssamling/1.%20kommungemensam/1.2%20ekonomi/1.2.6%20policys/1.2.6.3%20Policy%20f%C3%B6r%20ink%C3%B6p%20och%20upphandling.pdf"}, {"kommun": "Vansbro", "län": "Dalarnas län", "emissions": {"1990": 50034.8299281915, "2000": 47001.6644075985, "2005": 43595.3619488552, "2010": 40345.7364885454, "2015": 34173.21885502, "2016": 32431.8956228468, "2017": 28731.7300586734, "2018": 25868.8488524087, "2019": 25929.5646400504, "2020": 24481.8825011824, "2021": 24562.7675003953}, "budget": 58114.816701186624, "emissionBudget": {"2024": 17839.941348833963, "2025": 13124.25881963879, "2026": 9655.086090074214, "2027": 7102.929673045734, "2028": 5225.392033748897, "2029": 3844.1492684325262, "2030": 2828.0143389334153, "2031": 2080.4772506854547, "2032": 1530.5387709781403, "2033": 1125.9670965858802, "2034": 828.3370056570392, "2035": 609.380324719405, "2036": 448.3010871409471, "2037": 329.8003834047243, "2038": 242.62330833854543, "2039": 178.48999792368826, "2040": 131.309228189833, "2041": 96.59988575483841, "2042": 71.06536270518073, "2043": 52.28045289034872, "2044": 38.461011811886735, "2045": 28.29450297029022, "2046": 20.815336378860852, "2047": 15.313159203399985, "2048": 11.26538819842538, "2049": 8.287576036762179, "2050": 6.096897448657383}, "approximatedHistoricalEmission": {"2021": 24562.7675003953, "2022": 21235.194614964537, "2023": 19537.56798189925, "2024": 17839.941348833963}, "totalApproximatedHistoricalEmission": 61974.11702147842, "trend": {"2024": 17839.941348833963, "2025": 16142.314715768676, "2026": 14444.68808270339, "2027": 12747.061449638102, "2028": 11049.434816572815, "2029": 9351.808183507528, "2030": 7654.181550442241, "2031": 5956.554917376954, "2032": 4258.928284311667, "2033": 2561.30165124638, "2034": 863.675018181093, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 93949.91934416583, "historicalEmissionChangePercent": -5.247805136896818, "neededEmissionChangePercent": 26.433284936238827, "hitNetZero": "2034-07-02", "budgetRunsOut": "2028-01-12", "electricCarChangePercent": 0.06892917836138833, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.011111111111111112, "2017": 0.046296296296296294, "2018": 0.056338028169014086, "2019": 0.038461538461538464, "2020": 0.23529411764705882, "2021": 0.3387096774193548, "2022": 0.5147058823529411}, "climatePlanLink": "/data/climatePlans/Vansbro_Energi och klimatplan.pdf", "climatePlanYear": 2013, "climatePlanComment": "Energi– och klimatplan 2010–2020 (gäller fortfarande)", "bicycleMetrePerCapita": 1.225521451, "totalConsumptionEmission": 6068.2, "electricVehiclePerChargePoints": 6.9411764705882355, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vara", "län": "Västra Götalands län", "emissions": {"1990": 99919.7499857195, "2000": 93594.0906300194, "2005": 91509.0359549052, "2010": 89480.6574648873, "2015": 75708.7368945781, "2016": 73460.2871561155, "2017": 74169.287089048, "2018": 71209.8639455728, "2019": 70262.3855493418, "2020": 64055.4588298243, "2021": 64177.5873165772}, "budget": 146055.41985118663, "emissionBudget": {"2024": 58154.08519880241, "2025": 39053.465428059724, "2026": 26226.4148206748, "2027": 17612.389241440065, "2028": 11827.627104695224, "2029": 7942.8611876558125, "2030": 5334.0406565002895, "2031": 3582.0832132148976, "2032": 2405.5534955023586, "2033": 1615.45315261677, "2034": 1084.860051201843, "2035": 728.5394372391705, "2036": 489.2517804713736, "2037": 328.55778624902064, "2038": 220.64348708317755, "2039": 148.17347337288817, "2040": 99.50612411736094, "2041": 66.82349081432379, "2042": 44.87541811341576, "2043": 30.13615610787905, "2044": 20.237982020872753, "2045": 13.590847977127575, "2046": 9.126954878549059, "2047": 6.129220597218113, "2048": 4.116087526372757, "2049": 2.764164913961654, "2050": 1.8562792026703603}, "approximatedHistoricalEmission": {"2021": 64177.5873165772, "2022": 62247.657122109085, "2023": 60200.87116045598, "2024": 58154.08519880241}, "totalApproximatedHistoricalEmission": 183614.36454025487, "trend": {"2024": 58154.08519880241, "2025": 56107.2992371493, "2026": 54060.513275496196, "2027": 52013.727313842624, "2028": 49966.94135218952, "2029": 47920.15539053595, "2030": 45873.36942888284, "2031": 43826.583467229735, "2032": 41779.79750557616, "2033": 39733.01154392306, "2034": 37686.22558226995, "2035": 35639.43962061638, "2036": 33592.653658963274, "2037": 31545.867697309703, "2038": 29499.081735656597, "2039": 27452.29577400349, "2040": 25405.50981234992, "2041": 23358.723850696813, "2042": 21311.93788904324, "2043": 19265.151927390136, "2044": 17218.36596573703, "2045": 15171.580004083458, "2046": 13124.794042430352, "2047": 11078.00808077678, "2048": 9031.222119123675, "2049": 6984.436157470569, "2050": 4937.650195817463}, "trendEmission": 820192.5601300567, "historicalEmissionChangePercent": -2.6614370146839197, "neededEmissionChangePercent": 32.84484607649889, "hitNetZero": "2052-05-23", "budgetRunsOut": "2026-08-20", "electricCarChangePercent": 0.0806316092238269, "electricCarChangeYearly": {"2015": 0.014957264957264958, "2016": 0.025404157043879907, "2017": 0.050100200400801605, "2018": 0.043256997455470736, "2019": 0.12054794520547946, "2020": 0.23859649122807017, "2021": 0.3893805309734513, "2022": 0.6307277628032345}, "climatePlanLink": "https://vara.se/innehall/2022/02/Milj%C3%B6strategi-2021-2030-antagen-av-KF-2021-10-04-%C2%A7-89.pdf", "climatePlanYear": 2021, "climatePlanComment": "Miljöstrategi 2021–2030", "bicycleMetrePerCapita": 3.471290972, "totalConsumptionEmission": 5938.1, "electricVehiclePerChargePoints": 16.152173913043477, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1hP2o4QdT7KM2v9EQTACLtq04yYq5VTqP/view?usp=drive_link"}, {"kommun": "Varberg", "län": "Hallands län", "emissions": {"1990": 281245.550956632, "2000": 241121.959497192, "2005": 240680.791146992, "2010": 248901.688595458, "2015": 206833.444833992, "2016": 200375.643864559, "2017": 212540.66035565, "2018": 210956.183344547, "2019": 210410.411202128, "2020": 193298.492206019, "2021": 191695.965846031}, "budget": 422460.01981367305, "emissionBudget": {"2024": 190509.3310715994, "2025": 121358.4840319346, "2026": 77307.92798277228, "2027": 49246.78959747741, "2028": 31371.249352313054, "2029": 19984.151128816204, "2030": 12730.328073781988, "2031": 8109.488955597276, "2032": 5165.916442985807, "2033": 3290.798327987316, "2034": 2096.308323025247, "2035": 1335.392858265077, "2036": 850.6735704468674, "2037": 541.8971046445254, "2038": 345.19994769305083, "2039": 219.89968735015455, "2040": 140.080764263885, "2041": 89.234417534702, "2042": 56.84421636761773, "2043": 36.21097132383872, "2044": 23.06715666086365, "2045": 14.694267979123047, "2046": 9.360560324654971, "2047": 5.9628754365982335, "2048": 3.7984781080610315, "2049": 2.4197111093184653, "2050": 1.5414072915502277}, "approximatedHistoricalEmission": {"2021": 191695.965846031, "2022": 194916.25888834894, "2023": 192712.79497997463, "2024": 190509.3310715994}, "totalApproximatedHistoricalEmission": 578731.7023271387, "trend": {"2024": 190509.3310715994, "2025": 188305.86716322508, "2026": 186102.40325485077, "2027": 183898.93934647646, "2028": 181695.47543810215, "2029": 179492.01152972784, "2030": 177288.54762135353, "2031": 175085.08371297922, "2032": 172881.6198046049, "2033": 170678.1558962306, "2034": 168474.6919878563, "2035": 166271.22807948198, "2036": 164067.76417110767, "2037": 161864.30026273336, "2038": 159660.83635435905, "2039": 157457.37244598474, "2040": 155253.9085376095, "2041": 153050.4446292352, "2042": 150846.98072086088, "2043": 148643.51681248657, "2044": 146440.05290411226, "2045": 144236.58899573795, "2046": 142033.12508736365, "2047": 139829.66117898934, "2048": 137626.19727061503, "2049": 135422.73336224072, "2050": 133219.2694538664}, "trendEmission": 4208471.806831058, "historicalEmissionChangePercent": -1.1695009657109667, "neededEmissionChangePercent": 36.2978792958313, "hitNetZero": "2110-05-27", "budgetRunsOut": "2026-04-01", "electricCarChangePercent": 0.07092690309096124, "electricCarChangeYearly": {"2015": 0.02956604673342871, "2016": 0.025728987993138937, "2017": 0.0318499127399651, "2018": 0.07992106561420818, "2019": 0.08241494968854815, "2020": 0.27150192554557123, "2021": 0.38030382399161866, "2022": 0.5243568691844553}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Pågår arbete med att ta fram en energi– och klimatstrategi.", "bicycleMetrePerCapita": 2.756270158, "totalConsumptionEmission": 6109.0, "electricVehiclePerChargePoints": 13.933609958506224, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Vaxholm", "län": "Stockholms län", "emissions": {"1990": 37496.4710823795, "2000": 32476.1292099508, "2005": 23037.6520366552, "2010": 19171.121205265, "2015": 18387.6148627195, "2016": 18704.8049991129, "2017": 19903.0387765903, "2018": 18398.702464195, "2019": 17520.7344494954, "2020": 16542.3342420484, "2021": 18576.8750164496}, "budget": 37927.83168911192, "emissionBudget": {"2024": 16974.98667722277, "2025": 10850.169714953552, "2026": 6935.273946415614, "2027": 4432.928329733237, "2028": 2833.464651631785, "2029": 1811.110249222091, "2030": 1157.6358762578147, "2031": 739.9443642786559, "2032": 472.96189886379074, "2033": 302.31050951366126, "2034": 193.23257197241912, "2035": 123.51150785708565, "2036": 78.94679668864704, "2037": 50.461668030239494, "2038": 32.25437949606227, "2039": 20.616539985411674, "2040": 13.177798724107184, "2041": 8.423061257415613, "2042": 5.383900788861284, "2043": 3.4413127031198654, "2044": 2.1996380663542907, "2045": 1.4059773232953758, "2046": 0.8986806801798783, "2047": 0.5744238911589457, "2048": 0.36716356989908816, "2049": 0.23468572449007055, "2050": 0.1500077725428118}, "approximatedHistoricalEmission": {"2021": 18576.8750164496, "2022": 17413.519918653765, "2023": 17194.253297938267, "2024": 16974.98667722277}, "totalApproximatedHistoricalEmission": 52383.70406342822, "trend": {"2024": 16974.98667722277, "2025": 16755.72005650727, "2026": 16536.453435791773, "2027": 16317.186815076275, "2028": 16097.920194360777, "2029": 15878.653573645279, "2030": 15659.38695292978, "2031": 15440.120332214283, "2032": 15220.853711498785, "2033": 15001.587090783287, "2034": 14782.320470067789, "2035": 14563.05384935229, "2036": 14343.787228636793, "2037": 14124.520607921295, "2038": 13905.253987205797, "2039": 13685.987366490299, "2040": 13466.7207457748, "2041": 13247.454125059303, "2042": 13028.187504343805, "2043": 12808.920883628307, "2044": 12589.654262912809, "2045": 12370.387642197311, "2046": 12151.121021481813, "2047": 11931.854400766315, "2048": 11712.587780050817, "2049": 11493.321159335319, "2050": 11274.054538619821}, "trendEmission": 367237.53580595367, "historicalEmissionChangePercent": 0.4192612818547568, "neededEmissionChangePercent": 36.08142426696316, "hitNetZero": "2101-05-14", "budgetRunsOut": "2026-04-08", "electricCarChangePercent": 0.0854422793529529, "electricCarChangeYearly": {"2015": 0.032467532467532464, "2016": 0.01812688821752266, "2017": 0.038348082595870206, "2018": 0.10247349823321555, "2019": 0.14150943396226415, "2020": 0.3108108108108108, "2021": 0.48214285714285715, "2022": 0.603988603988604}, "climatePlanLink": "https://www.vaxholm.se/download/18.3d1f64e117fc1ceca46442bb/1648807192906/H%C3%A5llbarhetsstrategi%20f%C3%B6r%20Vaxholms%20stad%202021-2030,%20version%202.pdf", "climatePlanYear": 2021, "climatePlanComment": "Hållbara Vaxholm 2021–2030. Vaxholms stads hållbarhetsstrategi 2021–2030", "bicycleMetrePerCapita": 1.176474976, "totalConsumptionEmission": 6794.8, "electricVehiclePerChargePoints": 197.75, "procurementScore": "2", "procurementLink": "https://www.vaxholm.se/download/18.6719b35d171ac1e3c542cbff/1589542471525/Upphandlings-%20och%20ink%C3%B6pspolicy.pdf"}, {"kommun": "Vellinge", "län": "Skåne län", "emissions": {"1990": 93556.3245451325, "2000": 85164.8005809655, "2005": 77889.4015954172, "2010": 77023.4557992659, "2015": 65380.6451457001, "2016": 63219.1195503426, "2017": 62416.7682508506, "2018": 62892.1007800803, "2019": 62414.5490621013, "2020": 58416.5984352334, "2021": 58096.946436543}, "budget": 128220.20023391601, "emissionBudget": {"2024": 55092.74162016995, "2025": 35850.05513354062, "2026": 23328.417052444696, "2027": 15180.312558672618, "2028": 9878.162279975379, "2029": 6427.936819639548, "2030": 4182.799450565494, "2031": 2721.83932956455, "2032": 1771.1605405711764, "2033": 1152.5330045760827, "2034": 749.9785006551708, "2035": 488.027457098169, "2036": 317.5701685763561, "2037": 206.64987287657576, "2038": 134.47160402799986, "2039": 87.50362164830972, "2040": 56.94052552519721, "2041": 37.05244864168732, "2042": 24.110840876193716, "2043": 15.689452899020623, "2044": 10.209471064679297, "2045": 6.643526711312563, "2046": 4.3230885208752925, "2047": 2.813128504097083, "2048": 1.8305644083737673, "2049": 1.1911884040577592, "2050": 0.7751324167950019}, "approximatedHistoricalEmission": {"2021": 58096.946436543, "2022": 57339.76715920167, "2023": 56216.254389686044, "2024": 55092.74162016995}, "totalApproximatedHistoricalEmission": 170150.8655772442, "trend": {"2024": 55092.74162016995, "2025": 53969.22885065433, "2026": 52845.7160811387, "2027": 51722.203311623074, "2028": 50598.69054210745, "2029": 49475.17777259182, "2030": 48351.665003076196, "2031": 47228.15223356057, "2032": 46104.63946404494, "2033": 44981.12669452932, "2034": 43857.613925013226, "2035": 42734.1011554976, "2036": 41610.58838598197, "2037": 40487.07561646635, "2038": 39363.56284695072, "2039": 38240.050077435095, "2040": 37116.53730791947, "2041": 35993.02453840384, "2042": 34869.51176888822, "2043": 33745.99899937259, "2044": 32622.4862298565, "2045": 31498.973460340872, "2046": 30375.460690825246, "2047": 29251.94792130962, "2048": 28128.435151793994, "2049": 27004.922382278368, "2050": 25881.40961276274}, "trendEmission": 1052663.9660281264, "historicalEmissionChangePercent": -1.9209446662674587, "neededEmissionChangePercent": 34.92780704089049, "hitNetZero": "2073-01-01", "budgetRunsOut": "2026-05-21", "electricCarChangePercent": 0.08439202799046437, "electricCarChangeYearly": {"2015": 0.020202020202020204, "2016": 0.025022341376228777, "2017": 0.02780191138140747, "2018": 0.0625, "2019": 0.11223628691983123, "2020": 0.26297273526824977, "2021": 0.46791226645004064, "2022": 0.6086637298091042}, "climatePlanLink": "https://vellinge.se/siteassets/boende-miljo-och-trafik/pdf/vellinge_program-for-hallbar-utveckling_2021_slutlig-version.pdf", "climatePlanYear": 2021, "climatePlanComment": "Program för hållbar utveckling. 2020–2030.", "bicycleMetrePerCapita": 3.894732092, "totalConsumptionEmission": 6916.6, "electricVehiclePerChargePoints": 18.963768115942027, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vetlanda", "län": "Jönköpings län", "emissions": {"1990": 142949.371840773, "2000": 128128.780755585, "2005": 139640.384661202, "2010": 126864.757111999, "2015": 113613.695652701, "2016": 103936.061073801, "2017": 102384.489676855, "2018": 92082.1577165262, "2019": 90814.1517272207, "2020": 82438.5507667751, "2021": 85979.9412789594}, "budget": 198845.61966997272, "emissionBudget": {"2024": 66435.58790935203, "2025": 47566.394154878144, "2026": 34056.47370780214, "2027": 24383.673011532483, "2028": 17458.16418442425, "2029": 12499.654852907586, "2030": 8949.473139977163, "2031": 6407.6224844354, "2032": 4587.71430014559, "2033": 3284.7007686369466, "2034": 2351.772240730368, "2035": 1683.8162931246454, "2036": 1205.57478308848, "2037": 863.1645646579129, "2038": 618.0065111949204, "2039": 442.478831404164, "2040": 316.80494087714044, "2041": 226.8252477653419, "2042": 162.40180118832603, "2043": 116.27605519689631, "2044": 83.2510533332899, "2045": 59.605891078486465, "2046": 42.67648406845677, "2047": 30.5554075191504, "2048": 21.87698797219857, "2049": 15.663433794354074, "2050": 11.214668058596414}, "approximatedHistoricalEmission": {"2021": 85979.9412789594, "2022": 76254.63231541775, "2023": 71345.11011238396, "2024": 66435.58790935203}, "totalApproximatedHistoricalEmission": 223807.50702195743, "trend": {"2024": 66435.58790935203, "2025": 61526.06570632011, "2026": 56616.54350328632, "2027": 51707.02130025439, "2028": 46797.4990972206, "2029": 41887.97689418867, "2030": 36978.454691156745, "2031": 32068.932488122955, "2032": 27159.410285091028, "2033": 22249.8880820591, "2034": 17340.36587902531, "2035": 12430.843675993383, "2036": 7521.321472959593, "2037": 2611.7992699276656, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 450113.9163002819, "historicalEmissionChangePercent": -4.396210375727544, "neededEmissionChangePercent": 28.40223793943081, "hitNetZero": "2037-07-10", "budgetRunsOut": "2027-06-05", "electricCarChangePercent": 0.06388548378969891, "electricCarChangeYearly": {"2015": 0.022702702702702703, "2016": 0.02621359223300971, "2017": 0.036016949152542374, "2018": 0.0467706013363029, "2019": 0.06746463547334058, "2020": 0.22099447513812154, "2021": 0.3647342995169082, "2022": 0.4652956298200514}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Har ett miljöbokslut 2021 där Jönköpings mål finns.", "bicycleMetrePerCapita": 3.620286389, "totalConsumptionEmission": 5926.8, "electricVehiclePerChargePoints": 26.644444444444446, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vilhelmina", "län": "Västerbottens län", "emissions": {"1990": 53715.7559490355, "2000": 43699.9178383232, "2005": 39240.6993654997, "2010": 39542.2888388023, "2015": 32374.1689083118, "2016": 30993.4848648433, "2017": 30383.1277426906, "2018": 29543.6753645864, "2019": 30293.0369620157, "2020": 28400.7493919702, "2021": 27988.1283048806}, "budget": 62201.77420862414, "emissionBudget": {"2024": 26046.54946203227, "2025": 17135.330291517173, "2026": 11272.876840265984, "2027": 7416.125052384597, "2028": 4878.870901538987, "2029": 3209.6790582340636, "2030": 2111.562257902057, "2031": 1389.1404991281486, "2032": 913.8784893016918, "2033": 601.2162871448306, "2034": 395.5241623034737, "2035": 260.20479869032374, "2036": 171.18179801496606, "2037": 112.61593990244249, "2038": 74.08702366242092, "2039": 48.739877142712245, "2040": 32.06466539553598, "2041": 21.094488275324142, "2042": 13.877501296481238, "2043": 9.129638022986331, "2044": 6.006145389580463, "2045": 3.9512828821858164, "2046": 2.5994436368689398, "2047": 1.7101046477139206, "2048": 1.1250322433054543, "2049": 0.7401287109352612, "2050": 0.4869109414510909}, "approximatedHistoricalEmission": {"2021": 27988.1283048806, "2022": 27363.241143226158, "2023": 26704.89530262933, "2024": 26046.54946203227}, "totalApproximatedHistoricalEmission": 81085.47532931193, "trend": {"2024": 26046.54946203227, "2025": 25388.203621435445, "2026": 24729.857780838385, "2027": 24071.51194024156, "2028": 23413.1660996445, "2029": 22754.82025904744, "2030": 22096.474418450613, "2031": 21438.128577853553, "2032": 20779.782737256726, "2033": 20121.436896659667, "2034": 19463.09105606284, "2035": 18804.74521546578, "2036": 18146.399374868954, "2037": 17488.053534271894, "2038": 16829.707693675067, "2039": 16171.361853078008, "2040": 15513.016012480948, "2041": 14854.670171884121, "2042": 14196.324331287062, "2043": 13537.978490690235, "2044": 12879.632650093175, "2045": 12221.286809496349, "2046": 11562.94096889929, "2047": 10904.595128302462, "2048": 10246.249287705403, "2049": 9587.903447108343, "2050": 8929.557606511516}, "trendEmission": 454689.3918910697, "historicalEmissionChangePercent": -2.3599961079638487, "neededEmissionChangePercent": 34.21266676227064, "hitNetZero": "2063-07-15", "budgetRunsOut": "2026-06-19", "electricCarChangePercent": 0.05728046158686402, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.02, "2018": 0.024390243902439025, "2019": 0.10810810810810811, "2020": 0.13636363636363635, "2021": 0.34375, "2022": 0.38}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 0.7632882299, "totalConsumptionEmission": 6379.0, "electricVehiclePerChargePoints": 4.555555555555555, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vimmerby", "län": "Kalmar län", "emissions": {"1990": 78157.6780744883, "2000": 73234.8423255133, "2005": 88366.4008893787, "2010": 72456.8267362333, "2015": 58853.5016562113, "2016": 56021.4527849986, "2017": 56557.2069294958, "2018": 54794.0125807416, "2019": 54224.9725346477, "2020": 47055.6334446636, "2021": 48351.5039526337}, "budget": 111341.34730097553, "emissionBudget": {"2024": 42600.49780057371, "2025": 29056.850641414065, "2026": 19819.03059325458, "2027": 13518.119307001594, "2028": 9220.408068824756, "2029": 6289.034962993365, "2030": 4289.610662621607, "2031": 2925.847883682116, "2032": 1995.6556694157634, "2033": 1361.1922797090913, "2034": 928.4389339980979, "2035": 633.2675162892839, "2036": 431.9376670905751, "2037": 294.61506149072846, "2038": 200.95037101495626, "2039": 137.0637719834273, "2040": 93.4881458314237, "2041": 63.766181862077474, "2042": 43.493492282962954, "2043": 29.665942286771344, "2044": 20.234478437289898, "2045": 13.801487027490271, "2046": 9.41368687907205, "2047": 6.420866134258003, "2048": 4.379529768056745, "2049": 2.9871797025887763, "2050": 2.037488736951257}, "approximatedHistoricalEmission": {"2021": 48351.5039526337, "2022": 46298.34538530558, "2023": 44449.421592939645, "2024": 42600.49780057371}, "totalApproximatedHistoricalEmission": 136223.76785484893, "trend": {"2024": 42600.49780057371, "2025": 40751.5740082073, "2026": 38902.650215841364, "2027": 37053.726423475426, "2028": 35204.80263110902, "2029": 33355.87883874308, "2030": 31506.955046377145, "2031": 29658.03125401074, "2032": 27809.107461644802, "2033": 25960.183669278398, "2034": 24111.25987691246, "2035": 22262.33608454652, "2036": 20413.412292180117, "2037": 18564.48849981418, "2038": 16715.56470744824, "2039": 14866.640915081836, "2040": 13017.717122715898, "2041": 11168.79333034996, "2042": 9319.869537983555, "2043": 7470.945745617617, "2044": 5622.021953251213, "2045": 3773.0981608852744, "2046": 1924.174368519336, "2047": 75.2505761529319, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 490808.7316204333, "historicalEmissionChangePercent": -3.0798837479495735, "neededEmissionChangePercent": 31.79222745837785, "hitNetZero": "2047-01-09", "budgetRunsOut": "2026-10-13", "electricCarChangePercent": 0.05544340720325495, "electricCarChangeYearly": {"2015": 0.018298261665141813, "2016": 0.019834710743801654, "2017": 0.026362038664323375, "2018": 0.031180400890868598, "2019": 0.03225806451612903, "2020": 0.15065913370998116, "2021": 0.30210772833723654, "2022": 0.42857142857142855}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.100303789, "totalConsumptionEmission": 6024.9, "electricVehiclePerChargePoints": 14.853658536585366, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vindeln", "län": "Västerbottens län", "emissions": {"1990": 42266.6936318727, "2000": 38566.2235347388, "2005": 33213.1107011912, "2010": 37401.4383546039, "2015": 30458.654495777, "2016": 31377.9542094577, "2017": 30142.4523236167, "2018": 30246.7636973105, "2019": 30095.8421533544, "2020": 27321.7131153912, "2021": 27235.1355432164}, "budget": 61284.0893372107, "emissionBudget": {"2024": 25733.4345305725, "2025": 16909.694496315387, "2026": 11111.527597259186, "2027": 7301.4947473803095, "2028": 4797.884456424546, "2029": 3152.737357711512, "2030": 2071.6949182467406, "2031": 1361.3312329336434, "2032": 894.5442253287962, "2033": 587.8138631585349, "2034": 386.2583066749556, "2035": 253.8141558515191, "2036": 166.78379363587754, "2037": 109.59528134375527, "2038": 72.01614396084284, "2039": 47.322520891401155, "2040": 31.096096796500706, "2041": 20.433552941873103, "2042": 13.42708985506233, "2043": 8.823073622525438, "2044": 5.7977289933122975, "2045": 3.809745097680902, "2046": 2.5034212061387837, "2047": 1.645022849208558, "2048": 1.080960793885764, "2049": 0.7103100351951407, "2050": 0.4667517535814003}, "approximatedHistoricalEmission": {"2021": 27235.1355432164, "2022": 27006.98090314935, "2023": 26370.20771686104, "2024": 25733.4345305725}, "totalApproximatedHistoricalEmission": 79861.47365690484, "trend": {"2024": 25733.4345305725, "2025": 25096.66134428396, "2026": 24459.888157995418, "2027": 23823.11497170711, "2028": 23186.341785418568, "2029": 22549.568599130027, "2030": 21912.795412841486, "2031": 21276.022226553177, "2032": 20639.249040264636, "2033": 20002.475853976095, "2034": 19365.702667687554, "2035": 18728.929481399246, "2036": 18092.156295110704, "2037": 17455.383108822163, "2038": 16818.609922533622, "2039": 16181.836736245314, "2040": 15545.063549956772, "2041": 14908.290363668231, "2042": 14271.51717737969, "2043": 13634.743991091382, "2044": 12997.97080480284, "2045": 12361.1976185143, "2046": 11724.424432225758, "2047": 11087.65124593745, "2048": 10450.878059648909, "2049": 9814.104873360367, "2050": 9177.33168707206}, "trendEmission": 453839.96082937706, "historicalEmissionChangePercent": -1.7677886679651278, "neededEmissionChangePercent": 34.28901036810345, "hitNetZero": "2064-05-20", "budgetRunsOut": "2026-06-16", "electricCarChangePercent": 0.08172730299016158, "electricCarChangeYearly": {"2015": 0.025, "2016": 0.0, "2017": 0.058823529411764705, "2018": 0.03571428571428571, "2019": 0.09523809523809523, "2020": 0.26666666666666666, "2021": 0.3541666666666667, "2022": 0.6551724137931034}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 3.284967346, "totalConsumptionEmission": 6110.8, "electricVehiclePerChargePoints": 10.916666666666666, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vingåker", "län": "Södermanlands län", "emissions": {"1990": 49249.1590869809, "2000": 43082.1378971919, "2005": 42886.9975838736, "2010": 36328.2441016409, "2015": 30489.3034657347, "2016": 29481.7718291502, "2017": 29563.3011297318, "2018": 26630.840278187, "2019": 28643.6352779704, "2020": 24646.0955581255, "2021": 24994.5544836964}, "budget": 57602.21462596914, "emissionBudget": {"2024": 21976.657716101035, "2025": 15006.09346655448, "2026": 10246.45530889761, "2027": 6996.480904989493, "2028": 4777.334558945057, "2029": 3262.057854229938, "2030": 2227.397163219191, "2031": 1520.9105247117384, "2032": 1038.5075739414967, "2033": 709.113365717726, "2034": 484.19653169313193, "2035": 330.61890050029484, "2036": 225.7530779615338, "2037": 154.1486349751529, "2038": 105.25571513470902, "2039": 71.87066930761196, "2040": 49.074704400737865, "2041": 33.509171894754154, "2042": 22.88072062346032, "2043": 15.623405373703093, "2044": 10.66796800188105, "2045": 7.284298049432447, "2046": 4.973861757328985, "2047": 3.396250484691153, "2048": 2.319026526575405, "2049": 1.5834768534304524, "2050": 1.0812290918693257}, "approximatedHistoricalEmission": {"2021": 24994.5544836964, "2022": 23910.605240381556, "2023": 22943.63147824118, "2024": 21976.657716101035}, "totalApproximatedHistoricalEmission": 70339.84281852146, "trend": {"2024": 21976.657716101035, "2025": 21009.68395396089, "2026": 20042.710191820515, "2027": 19075.73642968037, "2028": 18108.762667540228, "2029": 17141.788905400084, "2030": 16174.815143259708, "2031": 15207.841381119564, "2032": 14240.86761897942, "2033": 13273.893856839044, "2034": 12306.9200946989, "2035": 11339.946332558757, "2036": 10372.972570418613, "2037": 9405.998808278237, "2038": 8439.025046138093, "2039": 7472.051283997949, "2040": 6505.077521857573, "2041": 5538.103759717429, "2042": 4571.129997577285, "2043": 3604.156235436909, "2044": 2637.1824732967652, "2045": 1670.2087111566216, "2046": 703.2349490164779, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 249830.43679079995, "historicalEmissionChangePercent": -2.9885655229584014, "neededEmissionChangePercent": 31.718036198195964, "hitNetZero": "2046-09-17", "budgetRunsOut": "2026-10-17", "electricCarChangePercent": 0.0636948715966573, "electricCarChangeYearly": {"2015": 0.0125, "2016": 0.0, "2017": 0.01875, "2018": 0.13333333333333333, "2019": 0.09523809523809523, "2020": 0.20202020202020202, "2021": 0.36923076923076925, "2022": 0.44}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Med i Glokala Sverige 2021", "bicycleMetrePerCapita": 1.591330664, "totalConsumptionEmission": 5846.1, "electricVehiclePerChargePoints": 142.0, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Vänersborg", "län": "Västra Götalands län", "emissions": {"1990": 413562.969493089, "2000": 431114.866816563, "2005": 385762.752769986, "2010": 227869.783720409, "2015": 228790.273458747, "2016": 214940.234084315, "2017": 254342.145363567, "2018": 252756.877758662, "2019": 269718.784658149, "2020": 235506.272163404, "2021": 244532.808764144}, "budget": 503768.84059946984, "emissionBudget": {"2024": 265170.2683292059, "2025": 156647.68453448618, "2026": 92538.64403663696, "2027": 54666.62763377241, "2028": 32293.969810778482, "2029": 19077.461538805077, "2030": 11269.891589578265, "2031": 6657.618267634695, "2032": 3932.9465279445385, "2033": 2323.363666983938, "2034": 1372.5126163569278, "2035": 810.8032801013762, "2036": 478.9769880353436, "2037": 282.95267261218424, "2038": 167.15252911580416, "2039": 98.74431554885629, "2040": 58.33258943068069, "2041": 34.45961391068419, "2042": 20.356802303188353, "2043": 12.025654178400693, "2044": 7.104080310090548, "2045": 4.196691198958785, "2046": 2.4791691887832377, "2047": 1.4645537580027428, "2048": 0.8651760112962159, "2049": 0.5110973403552111, "2050": 0.30192757069952353}, "approximatedHistoricalEmission": {"2021": 244532.808764144, "2022": 257760.53108856548, "2023": 261465.3997088857, "2024": 265170.2683292059}, "totalApproximatedHistoricalEmission": 774077.4693441261, "trend": {"2024": 265170.2683292059, "2025": 268875.13694952615, "2026": 272580.00556984637, "2027": 276284.8741901666, "2028": 279989.7428104868, "2029": 283694.61143080704, "2030": 287399.48005112726, "2031": 291104.3486714475, "2032": 294809.2172917677, "2033": 298514.08591208793, "2034": 302218.95453240816, "2035": 305923.8231527284, "2036": 309628.6917730486, "2037": 313333.5603933688, "2038": 317038.42901368905, "2039": 320743.2976340093, "2040": 324448.1662543295, "2041": 328153.0348746497, "2042": 331857.90349496994, "2043": 335562.77211529016, "2044": 339267.6407356104, "2045": 342972.5093559306, "2046": 346677.37797625083, "2047": 350382.24659657106, "2048": 354087.1152168913, "2049": 357791.9838372115, "2050": 361496.8524575317}, "trendEmission": 8146672.570227589, "historicalEmissionChangePercent": 1.5856263415764158, "neededEmissionChangePercent": 40.9256228002116, "hitNetZero": "Aldrig", "budgetRunsOut": "2025-11-16", "electricCarChangePercent": 0.06902258111591543, "electricCarChangeYearly": {"2015": 0.007062146892655367, "2016": 0.010808646917534028, "2017": 0.012319228709159078, "2018": 0.035545023696682464, "2019": 0.061461794019933555, "2020": 0.2114695340501792, "2021": 0.3084693084693085, "2022": 0.5336658354114713}, "climatePlanLink": "https://www.vanersborg.se/download/18.2875b421183ed3f970726814/1666862824047/Miljoaktivitetsplan%202022.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljöaktivitetsplan 2022", "bicycleMetrePerCapita": 3.86479684, "totalConsumptionEmission": 6074.0, "electricVehiclePerChargePoints": 19.23913043478261, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Vännäs", "län": "Västerbottens län", "emissions": {"1990": 31106.9636791759, "2000": 27705.828101475, "2005": 24311.6168855127, "2010": 22904.035119579, "2015": 20325.604824918, "2016": 19210.338424124, "2017": 20196.1134469931, "2018": 19209.1519276513, "2019": 20009.2082053183, "2020": 17314.9990099283, "2021": 17672.8918327639}, "budget": 39676.847021432004, "emissionBudget": {"2024": 16576.38901455782, "2025": 10915.615708635005, "2026": 7187.974787148037, "2027": 4733.308951120706, "2028": 3116.9020885851905, "2029": 2052.4919734061473, "2030": 1351.5738323396874, "2031": 890.0165496062143, "2032": 586.0793096309868, "2033": 385.9354720196047, "2034": 254.13998773779602, "2035": 167.35215612439552, "2036": 110.20203632172776, "2037": 72.56846335716294, "2038": 47.78661129859356, "2039": 31.467666721338556, "2040": 20.721579161533505, "2041": 13.645239310245072, "2042": 8.98544239231998, "2043": 5.916948259388999, "2044": 3.896333110344177, "2045": 2.5657502890403885, "2046": 1.6895564006665016, "2047": 1.1125793664436412, "2048": 0.7326377776721937, "2049": 0.4824447850297606, "2050": 0.31769174030574454}, "approximatedHistoricalEmission": {"2021": 17672.8918327639, "2022": 17428.940660738386, "2023": 17002.664837648044, "2024": 16576.38901455782}, "totalApproximatedHistoricalEmission": 51556.24592204729, "trend": {"2024": 16576.38901455782, "2025": 16150.113191467477, "2026": 15723.837368377252, "2027": 15297.56154528691, "2028": 14871.285722196568, "2029": 14445.009899106342, "2030": 14018.734076016, "2031": 13592.458252925775, "2032": 13166.182429835433, "2033": 12739.906606745208, "2034": 12313.630783654866, "2035": 11887.354960564524, "2036": 11461.079137474298, "2037": 11034.803314383957, "2038": 10608.527491293731, "2039": 10182.25166820339, "2040": 9755.975845113164, "2041": 9329.700022022822, "2042": 8903.42419893248, "2043": 8477.148375842255, "2044": 8050.872552751913, "2045": 7624.596729661687, "2046": 7198.320906571345, "2047": 6772.04508348112, "2048": 6345.769260390778, "2049": 5919.493437300436, "2050": 5493.217614210211}, "trendEmission": 286904.88617398374, "historicalEmissionChangePercent": -2.07922139459165, "neededEmissionChangePercent": 34.14961666833092, "hitNetZero": "2062-11-10", "budgetRunsOut": "2026-06-22", "electricCarChangePercent": 0.08293148872104252, "electricCarChangeYearly": {"2015": 0.015748031496062992, "2016": 0.007692307692307693, "2017": 0.028169014084507043, "2018": 0.058823529411764705, "2019": 0.06593406593406594, "2020": 0.24719101123595505, "2021": 0.3879310344827586, "2022": 0.6444444444444445}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.657717693, "totalConsumptionEmission": 6079.2, "electricVehiclePerChargePoints": 9.3, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Värmdö", "län": "Stockholms län", "emissions": {"1990": 160657.789630604, "2000": 141270.038747618, "2005": 118340.98882347, "2010": 103052.618174083, "2015": 92444.1709963158, "2016": 89583.9338013426, "2017": 86757.2558334588, "2018": 94869.2790425222, "2019": 91465.0120522628, "2020": 84078.6041305045, "2021": 89825.1859719511}, "budget": 186337.03313239862, "emissionBudget": {"2024": 86826.23636205879, "2025": 54486.090251999696, "2026": 34191.670114199835, "2027": 21456.307468406765, "2028": 13464.482098744116, "2029": 8449.369885957483, "2030": 5302.235239808013, "2031": 3327.313032535807, "2032": 2087.989596041291, "2033": 1310.276643810115, "2034": 822.2382365167434, "2035": 515.9793702986444, "2036": 323.7926658600052, "2037": 203.1896942004627, "2038": 127.5076806314321, "2039": 80.01492735142008, "2040": 50.21178777111856, "2041": 31.509415988079446, "2042": 19.773111852450562, "2043": 12.408225924512031, "2044": 7.786537179510811, "2045": 4.886287662455553, "2046": 3.066293343219521, "2047": 1.9241918438234993, "2048": 1.2074885985792025, "2049": 0.7577356282737184, "2050": 0.4755020320945141}, "approximatedHistoricalEmission": {"2021": 89825.1859719511, "2022": 87837.65480462764, "2023": 87331.94558334316, "2024": 86826.23636205879}, "totalApproximatedHistoricalEmission": 263495.31155497575, "trend": {"2024": 86826.23636205879, "2025": 86320.5271407743, "2026": 85814.81791948981, "2027": 85309.10869820544, "2028": 84803.39947692095, "2029": 84297.69025563658, "2030": 83791.9810343521, "2031": 83286.27181306772, "2032": 82780.56259178324, "2033": 82274.85337049887, "2034": 81769.14414921438, "2035": 81263.43492793001, "2036": 80757.72570664552, "2037": 80252.01648536115, "2038": 79746.30726407666, "2039": 79240.59804279229, "2040": 78734.8888215078, "2041": 78229.17960022343, "2042": 77723.47037893895, "2043": 77217.76115765458, "2044": 76712.05193637009, "2045": 76206.34271508572, "2046": 75700.63349380123, "2047": 75194.92427251686, "2048": 74689.21505123237, "2049": 74183.50582994788, "2050": 73677.79660866351}, "trendEmission": 2086552.4286193894, "historicalEmissionChangePercent": -0.2880618503153985, "neededEmissionChangePercent": 37.246974491907196, "hitNetZero": "2195-07-30", "budgetRunsOut": "2026-02-28", "electricCarChangePercent": 0.09712375610874407, "electricCarChangeYearly": {"2015": 0.023552502453385672, "2016": 0.02327586206896552, "2017": 0.028215767634854772, "2018": 0.07666941467436109, "2019": 0.13287904599659284, "2020": 0.4001874414245548, "2021": 0.5347166799680766, "2022": 0.6562763268744735}, "climatePlanLink": "https://www.varmdo.se/download/18.2c63bbd2171ac475b0b666dd/1588078930801/Milj%C3%B6-%20och%20klimatplan%202020-2030,%20beslutad%20KF%201%20april%202020-RD.pdf", "climatePlanYear": 2020, "climatePlanComment": "Miljö– och klimatplan 2020–2030", "bicycleMetrePerCapita": 1.391918951, "totalConsumptionEmission": 6374.5, "electricVehiclePerChargePoints": 23.69747899159664, "procurementScore": "2", "procurementLink": "https://opengov.360online.com/Meetings/varmdo/File/Details/806917.PDF?fileName=M%C3%A5l%20och%20budget%202024%20med%20ramar%202025-2027%20version%202%20efter%20KS%20beredning&fileSize=9104281"}, {"kommun": "Värnamo", "län": "Jönköpings län", "emissions": {"1990": 177740.087064459, "2000": 158749.196161896, "2005": 173084.939287945, "2010": 152394.458759857, "2015": 128228.602337246, "2016": 122450.533318678, "2017": 126784.026496468, "2018": 126800.873856671, "2019": 122543.833931921, "2020": 112822.435208112, "2021": 113560.106743427}, "budget": 252742.52035338798, "emissionBudget": {"2024": 107419.65693454538, "2025": 70226.59075481146, "2026": 45911.28094971366, "2027": 30014.9230624459, "2028": 19622.532584775672, "2029": 12828.411528475397, "2030": 8386.692269865418, "2031": 5482.877367419441, "2032": 3584.4816119195384, "2033": 2343.387890186671, "2034": 1532.0114310567728, "2035": 1001.5665928450525, "2036": 654.7833910164036, "2037": 428.07067669165855, "2038": 279.8551502028921, "2039": 182.95788373165476, "2040": 119.61040272189985, "2041": 78.19640316936928, "2042": 51.121619269550294, "2043": 33.421229760150595, "2044": 21.849436982644317, "2045": 14.284270802858515, "2046": 9.338473688428303, "2047": 6.105113241903545, "2048": 3.9912740497038435, "2049": 2.609332195592876, "2050": 1.7058749717932158}, "approximatedHistoricalEmission": {"2021": 113560.106743427, "2022": 112241.21947505511, "2023": 109830.43820480071, "2024": 107419.65693454538}, "totalApproximatedHistoricalEmission": 332561.539518842, "trend": {"2024": 107419.65693454538, "2025": 105008.87566429097, "2026": 102598.09439403564, "2027": 100187.31312378123, "2028": 97776.5318535259, "2029": 95365.7505832715, "2030": 92954.96931301616, "2031": 90544.18804276176, "2032": 88133.40677250642, "2033": 85722.62550225202, "2034": 83311.84423199762, "2035": 80901.06296174228, "2036": 78490.28169148788, "2037": 76079.50042123254, "2038": 73668.71915097814, "2039": 71257.9378807228, "2040": 68847.1566104684, "2041": 66436.37534021307, "2042": 64025.594069958664, "2043": 61614.81279970333, "2044": 59204.03152944893, "2045": 56793.25025919359, "2046": 54382.46898893919, "2047": 51971.687718683854, "2048": 49560.90644842945, "2049": 47150.12517817505, "2050": 44739.34390791971}, "trendEmission": 1978067.010952049, "historicalEmissionChangePercent": -1.9317054754978518, "neededEmissionChangePercent": 34.62407834945608, "hitNetZero": "2068-07-11", "budgetRunsOut": "2026-06-02", "electricCarChangePercent": 0.05898399875619671, "electricCarChangeYearly": {"2015": 0.02631578947368421, "2016": 0.03560975609756097, "2017": 0.04498594189315839, "2018": 0.06277805239742956, "2019": 0.07275624004248539, "2020": 0.21948051948051947, "2021": 0.31408450704225355, "2022": 0.45900439238653}, "climatePlanLink": "https://kommun.varnamo.se/kommun-och-politik/styrdokument/planer.html", "climatePlanYear": 2023, "climatePlanComment": "Plan för Värnamo kommuns miljöarbete 2023–2035. Planen har en tillhörande åtgärdsplan med konkreta åtgärder", "bicycleMetrePerCapita": 4.133826968, "totalConsumptionEmission": 6017.5, "electricVehiclePerChargePoints": 17.95614035087719, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Västervik", "län": "Kalmar län", "emissions": {"1990": 200775.866065107, "2000": 180736.214038466, "2005": 170768.30347426, "2010": 152264.240308727, "2015": 130236.495549722, "2016": 136140.826028425, "2017": 127754.952496057, "2018": 120122.292568408, "2019": 119591.366425303, "2020": 105703.926618085, "2021": 113249.74480656}, "budget": 252626.75059570832, "emissionBudget": {"2024": 96114.73554445244, "2025": 65698.83588951814, "2026": 44908.171601237555, "2027": 30696.797732575335, "2028": 20982.67102481355, "2029": 14342.619291143015, "2030": 9803.838981576739, "2031": 6701.3741929298485, "2032": 4580.697026752229, "2033": 3131.1167899017173, "2034": 2140.262124901003, "2035": 1462.967455592592, "2036": 1000.0054438294835, "2037": 683.5496468945965, "2038": 467.2375762080344, "2039": 319.37834159165664, "2040": 218.30976417962796, "2041": 149.22474986453432, "2042": 102.00196979650636, "2043": 69.72303087666405, "2044": 47.65889368927414, "2045": 32.57704260882541, "2046": 22.26790474945644, "2047": 15.221135567306868, "2048": 10.40434520288623, "2049": 7.1118477739157715, "2050": 4.861274570678416}, "approximatedHistoricalEmission": {"2021": 113249.74480656, "2022": 104685.99533880316, "2023": 100400.3654416278, "2024": 96114.73554445244}, "totalApproximatedHistoricalEmission": 309768.6009559372, "trend": {"2024": 96114.73554445244, "2025": 91829.10564727522, "2026": 87543.47575009987, "2027": 83257.84585292451, "2028": 78972.21595574729, "2029": 74686.58605857193, "2030": 70400.95616139658, "2031": 66115.32626422122, "2032": 61829.696367044, "2033": 57544.066469868645, "2034": 53258.43657269329, "2035": 48972.80667551793, "2036": 44687.17677834071, "2037": 40401.546881165355, "2038": 36115.91698399, "2039": 31830.28708681278, "2040": 27544.657189637423, "2041": 23259.027292462066, "2042": 18973.39739528671, "2043": 14687.76749810949, "2044": 10402.137600934133, "2045": 6116.507703758776, "2046": 1830.8778065834194, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 1078317.1857646676, "historicalEmissionChangePercent": -2.0860625954993903, "neededEmissionChangePercent": 31.64540742128677, "hitNetZero": "2046-05-30", "budgetRunsOut": "2026-10-21", "electricCarChangePercent": 0.0577145209931009, "electricCarChangeYearly": {"2015": 0.014814814814814815, "2016": 0.02404274265360641, "2017": 0.03889943074003795, "2018": 0.023255813953488372, "2019": 0.06172839506172839, "2020": 0.23007246376811594, "2021": 0.30092592592592593, "2022": 0.4221879815100154}, "climatePlanLink": "https://www.vastervik.se/Bygga-bo-och-miljo/Energi-och-uppvarmning/kommunens-energi-och-klimatstrategi/", "climatePlanYear": 2021, "climatePlanComment": "Energi– och klimatstrategi 2021–2030", "bicycleMetrePerCapita": 3.089136601, "totalConsumptionEmission": 6020.3, "electricVehiclePerChargePoints": 10.905263157894737, "procurementScore": "2", "procurementLink": "https://www.vastervik.se/Bygga-bo-och-miljo/Energi-och-uppvarmning/kommunens-energi-och-klimatstrategi/"}, {"kommun": "Västerås", "län": "Västmanlands län", "emissions": {"1990": 842512.065096116, "2000": 803767.979408367, "2005": 834887.449750364, "2010": 919137.642681698, "2015": 463533.32413355, "2016": 470792.088702974, "2017": 486952.480532489, "2018": 493810.009637108, "2019": 471050.532846199, "2020": 377623.985794469, "2021": 432745.081804335}, "budget": 946908.6284721681, "emissionBudget": {"2024": 393514.74038781226, "2025": 259703.38712581326, "2026": 171393.45077175897, "2027": 113112.56003457635, "2028": 74649.59238503072, "2029": 49265.63099224182, "2030": 32513.2705955731, "2031": 21457.408410894583, "2032": 14160.998487018373, "2033": 9345.670936081891, "2034": 6167.754719103549, "2035": 4070.461985576033, "2036": 2686.3358759551534, "2037": 1772.870122363398, "2038": 1170.0206585862104, "2039": 772.1650470896176, "2040": 509.5968652958432, "2041": 336.31276900987496, "2042": 221.9524614489661, "2043": 146.47940751190538, "2044": 96.67032609130263, "2045": 63.79840078093734, "2046": 42.10429515217401, "2047": 27.787086330713738, "2048": 18.338323060864035, "2049": 12.102531682600475, "2050": 7.987168327344708}, "approximatedHistoricalEmission": {"2021": 432745.081804335, "2022": 414557.803280022, "2023": 404036.271833919, "2024": 393514.74038781226}, "totalApproximatedHistoricalEmission": 1231723.9862100147, "trend": {"2024": 393514.74038781226, "2025": 382993.2089417055, "2026": 372471.6774956025, "2027": 361950.1460494958, "2028": 351428.6146033928, "2029": 340907.08315728605, "2030": 330385.55171118304, "2031": 319864.0202650763, "2032": 309342.4888189733, "2033": 298820.9573728666, "2034": 288299.42592676356, "2035": 277777.89448065683, "2036": 267256.3630345538, "2037": 256734.8315884471, "2038": 246213.30014234036, "2039": 235691.76869623736, "2040": 225170.23725013062, "2041": 214648.70580402762, "2042": 204127.17435792089, "2043": 193605.64291181788, "2044": 183084.11146571115, "2045": 172562.58001960814, "2046": 162041.0485735014, "2047": 151519.5171273984, "2048": 140997.98568129167, "2049": 130476.45423518494, "2050": 119954.92278908193}, "trendEmission": 6675105.621299621, "historicalEmissionChangePercent": -0.5731626638565167, "neededEmissionChangePercent": 34.00415271105901, "hitNetZero": "2061-05-17", "budgetRunsOut": "2026-06-28", "electricCarChangePercent": 0.07642102938412798, "electricCarChangeYearly": {"2015": 0.01957223567393059, "2016": 0.025799418604651164, "2017": 0.045060999606454155, "2018": 0.06633530873637927, "2019": 0.11158449989855955, "2020": 0.28936282253817797, "2021": 0.41858141858141856, "2022": 0.5449010654490106}, "climatePlanLink": "https://www.vasteras.se/download/18.4651ec33169110b990c26ef/1554823302843/Klimatprogram%20med%20handlingsplan%202017-2020_190306.pdf", "climatePlanYear": 2017, "climatePlanComment": "Klimatprogram med handlingsplan 2017–2020. ", "bicycleMetrePerCapita": 2.882234152, "totalConsumptionEmission": 6397.4, "electricVehiclePerChargePoints": 18.045023696682463, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Växjö", "län": "Kronobergs län", "emissions": {"1990": 342073.212688418, "2000": 241002.481546039, "2005": 270259.390802491, "2010": 259366.274708217, "2015": 176895.739389524, "2016": 175050.309079603, "2017": 170772.279676527, "2018": 170920.08428412, "2019": 165386.271815658, "2020": 131329.763383877, "2021": 130580.639700426}, "budget": 332057.1295402119, "emissionBudget": {"2024": 110468.06997861154, "2025": 79205.72767904376, "2026": 56790.59386464798, "2027": 40718.91826520908, "2028": 29195.50918309552, "2029": 20933.212196565168, "2030": 15009.136169481375, "2031": 10761.567142141626, "2032": 7716.05547761674, "2033": 5532.420264378979, "2034": 3966.751414696277, "2035": 2844.16512738683, "2036": 2039.269524647718, "2037": 1462.1584921751016, "2038": 1048.3692471249412, "2039": 751.6819032951294, "2040": 538.9567514412695, "2041": 386.4325835846, "2042": 277.07258746927795, "2043": 198.66134996898845, "2044": 142.44040643637115, "2045": 102.12992808578916, "2046": 73.22727077072643, "2047": 52.504033685649965, "2048": 37.645449902058644, "2049": 26.991828986193514, "2050": 19.353171071547653}, "approximatedHistoricalEmission": {"2021": 130580.639700426, "2022": 127023.24128715694, "2023": 118745.65563288331, "2024": 110468.06997861154}, "totalApproximatedHistoricalEmission": 366293.25175955903, "trend": {"2024": 110468.06997861154, "2025": 102190.48432433978, "2026": 93912.89867006801, "2027": 85635.31301579624, "2028": 77357.72736152261, "2029": 69080.14170725271, "2030": 60802.55605297908, "2031": 52524.97039870918, "2032": 44247.38474443555, "2033": 35969.799090165645, "2034": 27692.213435892016, "2035": 19414.627781618387, "2036": 11137.042127348483, "2037": 2859.4564730748534, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 738058.6501725083, "historicalEmissionChangePercent": -4.63345693868102, "neededEmissionChangePercent": 28.29989000950291, "hitNetZero": "2037-05-03", "budgetRunsOut": "2027-06-15", "electricCarChangePercent": 0.06986862307772726, "electricCarChangeYearly": {"2015": 0.01579343193782903, "2016": 0.030791436131825837, "2017": 0.04611837048424289, "2018": 0.060544611819235226, "2019": 0.08151658767772511, "2020": 0.2487985212569316, "2021": 0.39363005308289095, "2022": 0.5051875498802874}, "climatePlanLink": "https://vaxjo.se/download/18.58d9f57a16d9ce07d02dd012/1571219603597/H%C3%A5llbarhetsprogrammet%20H%C3%A5llbara%20V%C3%A4xj%C3%B6%202030_antaget%20av%20KF.pdf", "climatePlanYear": 2019, "climatePlanComment": "Hållbarhetsprogram Hållbara Växjö 2030", "bicycleMetrePerCapita": 2.872379738, "totalConsumptionEmission": 6123.9, "electricVehiclePerChargePoints": 22.16826923076923, "procurementScore": "2", "procurementLink": "https://foretag.vaxjo.se/download/18.3d04795317955c86cd918e16/1622707803967/Klimatkontrakt%202030.pdf"}, {"kommun": "Vårgårda", "län": "Västra Götalands län", "emissions": {"1990": 62857.2557619373, "2000": 62165.1874089084, "2005": 63338.7644803513, "2010": 59855.7291377963, "2015": 51065.9121251641, "2016": 49717.9061330512, "2017": 50238.1258503929, "2018": 47993.5934022071, "2019": 46781.5003167631, "2020": 43700.7892236109, "2021": 44254.4045734121}, "budget": 98868.17645695194, "emissionBudget": {"2024": 39980.59408756439, "2025": 26682.59145975693, "2026": 17807.656520785484, "2027": 11884.6263954739, "2028": 7931.663798385347, "2029": 5293.501748996972, "2030": 3532.8225551287587, "2031": 2357.765388174548, "2032": 1573.5456675013409, "2033": 1050.1663906557171, "2034": 700.869044248388, "2035": 467.75198821487317, "2036": 312.17232987312076, "2037": 208.3402443896099, "2038": 139.04389748432914, "2039": 92.79630771421316, "2040": 61.931194976474686, "2041": 41.33217156685063, "2042": 27.58461881900569, "2043": 18.40965926890984, "2044": 12.286396147836076, "2045": 8.199800338319909, "2046": 5.47245301057245, "2047": 3.652252581440238, "2048": 2.4374716224820676, "2049": 1.6267406971240934, "2050": 1.0856681453321209}, "approximatedHistoricalEmission": {"2021": 44254.4045734121, "2022": 42546.69280240452, "2023": 41263.643444984686, "2024": 39980.59408756439}, "totalApproximatedHistoricalEmission": 125927.83557787744, "trend": {"2024": 39980.59408756439, "2025": 38697.54473014409, "2026": 37414.49537272379, "2027": 36131.44601530349, "2028": 34848.39665788319, "2029": 33565.34730046289, "2030": 32282.29794304259, "2031": 30999.248585622292, "2032": 29716.199228201993, "2033": 28433.14987078216, "2034": 27150.10051336186, "2035": 25867.05115594156, "2036": 24584.00179852126, "2037": 23300.952441100962, "2038": 22017.903083680663, "2039": 20734.853726260364, "2040": 19451.804368840065, "2041": 18168.755011419766, "2042": 16885.705653999466, "2043": 15602.656296579633, "2044": 14319.606939159334, "2045": 13036.557581739035, "2046": 11753.508224318735, "2047": 10470.458866898436, "2048": 9187.409509478137, "2049": 7904.360152057838, "2050": 6621.3107946375385}, "trendEmission": 605824.7634686246, "historicalEmissionChangePercent": -2.3175333860117076, "neededEmissionChangePercent": 33.26114314030087, "hitNetZero": "2055-02-20", "budgetRunsOut": "2026-07-31", "electricCarChangePercent": 0.07425641056499373, "electricCarChangeYearly": {"2015": 0.021929824561403508, "2016": 0.026415094339622643, "2017": 0.028688524590163935, "2018": 0.0430622009569378, "2019": 0.07106598984771574, "2020": 0.3148148148148148, "2021": 0.37662337662337664, "2022": 0.5362318840579711}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Förberedande arbete pågår.", "bicycleMetrePerCapita": 2.061869332, "totalConsumptionEmission": 5657.8, "electricVehiclePerChargePoints": 22.57894736842105, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Ydre", "län": "Östergötlands län", "emissions": {"1990": 26843.9274372587, "2000": 23699.7031770704, "2005": 20906.4399004075, "2010": 18944.9084871587, "2015": 15472.4947270716, "2016": 15354.332323527, "2017": 14445.3657300524, "2018": 13260.5372336672, "2019": 13223.6533026939, "2020": 11782.4964395034, "2021": 11651.4229570806}, "budget": 28198.43810442037, "emissionBudget": {"2024": 9349.62906507519, "2025": 6711.155730409877, "2026": 4817.26183192179, "2027": 3457.8264146275746, "2028": 2482.024837110889, "2029": 1781.5953010176906, "2030": 1278.8275802682906, "2031": 917.9413411792623, "2032": 658.897508035608, "2033": 472.95606660202805, "2034": 339.487459290214, "2035": 243.68380734252017, "2036": 174.91602807685277, "2037": 125.55457505297989, "2038": 90.12296637451747, "2039": 64.69018802950937, "2040": 46.43456152899716, "2041": 33.330688471745596, "2042": 23.924739621086037, "2043": 17.17315759684895, "2044": 12.326877805862754, "2045": 8.848222325086745, "2046": 6.351246402144717, "2047": 4.5589192245303085, "2048": 3.272388312437965, "2049": 2.3489175262770425, "2050": 1.6860509873722551}, "approximatedHistoricalEmission": {"2021": 11651.4229570806, "2022": 10765.95760117378, "2023": 10057.793333124602, "2024": 9349.62906507519}, "totalApproximatedHistoricalEmission": 31324.276945376278, "trend": {"2024": 9349.62906507519, "2025": 8641.464797026012, "2026": 7933.300528976833, "2027": 7225.136260927422, "2028": 6516.971992878243, "2029": 5808.807724829065, "2030": 5100.643456779653, "2031": 4392.479188730475, "2032": 3684.314920681296, "2033": 2976.1506526318844, "2034": 2267.986384582706, "2035": 1559.8221165335272, "2036": 851.6578484841157, "2037": 143.49358043493703, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 61777.043986033765, "historicalEmissionChangePercent": -4.529113534213297, "neededEmissionChangePercent": 28.220085698598734, "hitNetZero": "2037-03-11", "budgetRunsOut": "2027-06-22", "electricCarChangePercent": 0.06084149828047423, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.03076923076923077, "2017": 0.09090909090909091, "2018": 0.06451612903225806, "2019": 0.171875, "2020": 0.1323529411764706, "2021": 0.3424657534246575, "2022": 0.47435897435897434}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.709752197, "totalConsumptionEmission": 6152.7, "electricVehiclePerChargePoints": 18.714285714285715, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Ystad", "län": "Skåne län", "emissions": {"1990": 165913.324618973, "2000": 163578.212771628, "2005": 151279.739102008, "2010": 90286.4232308456, "2015": 80269.3106338743, "2016": 76164.4747466553, "2017": 77153.084440652, "2018": 69161.3197244611, "2019": 67974.1304298135, "2020": 63316.2090542935, "2021": 63515.5467990261}, "budget": 147391.56627196923, "emissionBudget": {"2024": 52835.55863980204, "2025": 36918.534626847235, "2026": 25796.608081417362, "2027": 18025.227578299386, "2028": 12595.021338620618, "2029": 8800.69679182798, "2030": 6149.434918716365, "2031": 4296.8813395142, "2032": 3002.420464630163, "2033": 2097.9235715755603, "2034": 1465.9117082438693, "2035": 1024.2971505166024, "2036": 715.7215858609466, "2037": 500.106232072355, "2038": 349.4462767344844, "2039": 244.17352252856267, "2040": 170.61480712043024, "2041": 119.21608906361453, "2042": 83.30153831016341, "2043": 58.206458032160825, "2044": 40.67141886425808, "2045": 28.418913783036817, "2046": 19.85754820364595, "2047": 13.875344556465494, "2048": 9.695315080503663, "2049": 6.774544165567463, "2050": 4.733672734732823}, "approximatedHistoricalEmission": {"2021": 63515.5467990261, "2022": 58916.756989809684, "2023": 55876.157814805396, "2024": 52835.55863980204}, "totalApproximatedHistoricalEmission": 172968.46752402914, "trend": {"2024": 52835.55863980204, "2025": 49794.95946479775, "2026": 46754.36028979439, "2027": 43713.761114790104, "2028": 40673.161939785816, "2029": 37632.56276478246, "2030": 34591.96358977817, "2031": 31551.364414774813, "2032": 28510.765239770524, "2033": 25470.166064767167, "2034": 22429.56688976288, "2035": 19388.96771475859, "2036": 16348.368539755233, "2037": 13307.769364750944, "2038": 10267.170189747587, "2039": 7226.571014743298, "2040": 4185.971839739941, "2041": 1145.3726647356525, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 459410.60242093634, "historicalEmissionChangePercent": -3.7380619374059965, "neededEmissionChangePercent": 30.125590459763224, "hitNetZero": "2041-05-13", "budgetRunsOut": "2027-01-22", "electricCarChangePercent": 0.05677580065707093, "electricCarChangeYearly": {"2015": 0.003784295175023652, "2016": 0.013366750208855471, "2017": 0.020460358056265986, "2018": 0.038, "2019": 0.06660412757973734, "2020": 0.20361083249749248, "2021": 0.34465534465534464, "2022": 0.36587982832618027}, "climatePlanLink": "https://ystad.se/globalassets/dokument/lou/avd-f-strat-miljoarb/miljoprogram-2021_2025_webb.pdf?_gl=1*bzsvyx*_ga*Nzk5ODg1NzcyLjE2Nzc3NTI1Mzc.*_up*MQ..)%20och%20en%20sida%20om%20hur%20kommunen%20arbetar%20med%20h%C3%A5llbar%20utveckling%20(https://ystad.se/kommun--politik/hallbarhet/hallbar-kommun/?_gl=1*u0ebdu*_ga*Nzk5ODg1NzcyLjE2Nzc3NTI1Mzc.*_up*MQ..).", "climatePlanYear": 2020, "climatePlanComment": "Miljöprogram 2021–2025", "bicycleMetrePerCapita": 4.385902002, "totalConsumptionEmission": 6411.7, "electricVehiclePerChargePoints": 12.394495412844037, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Älmhult", "län": "Kronobergs län", "emissions": {"1990": 94601.3938134482, "2000": 81317.6855538434, "2005": 87150.4916469906, "2010": 64141.0901541179, "2015": 58134.4122293024, "2016": 57075.699772095, "2017": 57861.7765907194, "2018": 54606.6517624614, "2019": 53057.36585272, "2020": 47934.1202717576, "2021": 49230.8804101019}, "budget": 111946.43812175, "emissionBudget": {"2024": 43314.808442106005, "2025": 29416.92451648443, "2026": 19978.281773199236, "2027": 13568.098948810313, "2028": 9214.671770806026, "2029": 6258.074632565575, "2030": 4250.124050087032, "2031": 2886.439600309276, "2032": 1960.3036212702932, "2033": 1331.3253764789251, "2034": 904.1595591749222, "2035": 614.0531254722389, "2036": 417.0295354133147, "2037": 283.2224545283384, "2038": 192.34838767368413, "2039": 130.63195254867765, "2040": 88.7177024620032, "2041": 60.25195655866512, "2042": 40.919660545786655, "2043": 27.790277939805783, "2044": 18.87355705474388, "2045": 12.817833512505034, "2046": 8.705134674812202, "2047": 5.912026368004207, "2048": 4.015107988749293, "2049": 2.7268302199336456, "2050": 1.8519061178873957}, "approximatedHistoricalEmission": {"2021": 49230.8804101019, "2022": 46871.82024184009, "2023": 45093.31434197305, "2024": 43314.808442106005}, "totalApproximatedHistoricalEmission": 138237.9790099171, "trend": {"2024": 43314.808442106005, "2025": 41536.30254223896, "2026": 39757.79664237192, "2027": 37979.290742504876, "2028": 36200.78484263783, "2029": 34422.27894277079, "2030": 32643.773042903747, "2031": 30865.267143036705, "2032": 29086.76124316966, "2033": 27308.25534330262, "2034": 25529.74944343604, "2035": 23751.243543569, "2036": 21972.737643701956, "2037": 20194.231743834913, "2038": 18415.72584396787, "2039": 16637.219944100827, "2040": 14858.714044233784, "2041": 13080.208144366741, "2042": 11301.702244499698, "2043": 9523.196344632655, "2044": 7744.6904447656125, "2045": 5966.18454489857, "2046": 4187.678645031527, "2047": 2409.172745164484, "2048": 630.6668452974409, "2049": 0, "2050": 0}, "trendEmission": 527661.0368714912, "historicalEmissionChangePercent": -2.64291854957057, "neededEmissionChangePercent": 32.085756408682485, "hitNetZero": "2048-05-03", "budgetRunsOut": "2026-09-27", "electricCarChangePercent": 0.07081995808507044, "electricCarChangeYearly": {"2015": 0.0013717421124828531, "2016": 0.012658227848101266, "2017": 0.02460456942003515, "2018": 0.04585152838427948, "2019": 0.08520179372197309, "2020": 0.2613333333333333, "2021": 0.36058700209643607, "2022": 0.4956140350877193}, "climatePlanLink": "https://www.almhult.se/stadsutvecklingplanering/strategiskplanering/miljoplan2030.1994.html", "climatePlanYear": 2020, "climatePlanComment": "Miljöplan 2030", "bicycleMetrePerCapita": 3.376752163, "totalConsumptionEmission": 5705.8, "electricVehiclePerChargePoints": 9.392857142857142, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Älvdalen", "län": "Dalarnas län", "emissions": {"1990": 64013.0168644679, "2000": 62002.6008808185, "2005": 59678.5033470948, "2010": 47214.3475564722, "2015": 43291.8443610842, "2016": 40746.3335721897, "2017": 40879.6117416476, "2018": 34367.0763554942, "2019": 35856.9737326974, "2020": 33680.9904514868, "2021": 33344.2790431293}, "budget": 77662.35417552656, "emissionBudget": {"2024": 26953.296993056778, "2025": 19049.639890026938, "2026": 13463.613747631181, "2027": 9515.60744412303, "2028": 6725.295803036585, "2029": 4753.20192682769, "2030": 3359.3955149151025, "2031": 2374.3022912480665, "2032": 1678.0731370263438, "2033": 1186.0029211904705, "2034": 838.225043972114, "2035": 592.4279036655191, "2036": 418.70715217284487, "2037": 295.927450742894, "2038": 209.15108721868052, "2039": 147.82061337987074, "2040": 104.47439710009589, "2041": 73.8388199038203, "2042": 52.18667421038225, "2043": 36.88370113021906, "2044": 26.068099369181034, "2045": 18.424013423228292, "2046": 13.021443021680517, "2047": 9.20309676680434, "2048": 6.504424276030332, "2049": 4.597097719891025, "2050": 3.2490665659843736}, "approximatedHistoricalEmission": {"2021": 33344.2790431293, "2022": 30453.012721930165, "2023": 28703.15485749347, "2024": 26953.296993056778}, "totalApproximatedHistoricalEmission": 89304.95559751667, "trend": {"2024": 26953.296993056778, "2025": 25203.43912862055, "2026": 23453.581264183857, "2027": 21703.72339974763, "2028": 19953.865535310935, "2029": 18204.00767087424, "2030": 16454.149806438014, "2031": 14704.29194200132, "2032": 12954.434077565093, "2033": 11204.5762131284, "2034": 9454.718348691706, "2035": 7704.860484255478, "2036": 5955.002619818784, "2037": 4205.1447553825565, "2038": 2455.286890945863, "2039": 705.4290265091695, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 207793.15966000198, "historicalEmissionChangePercent": -4.036128828002451, "neededEmissionChangePercent": 29.323526190750776, "hitNetZero": "2039-05-24", "budgetRunsOut": "2027-03-21", "electricCarChangePercent": 0.05055099741651649, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.01, "2017": 0.022222222222222223, "2018": 0.010869565217391304, "2019": 0.07228915662650602, "2020": 0.14583333333333334, "2021": 0.2786885245901639, "2022": 0.35294117647058826}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Beslut om utveckling av klimatplan väntas före sommaren 2023", "bicycleMetrePerCapita": 0.7569722078, "totalConsumptionEmission": 5794.9, "electricVehiclePerChargePoints": 0.9108910891089109, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Älvkarleby", "län": "Uppsala län", "emissions": {"1990": 96817.8823540046, "2000": 95435.1637003813, "2005": 79010.9524517158, "2010": 60754.3507829771, "2015": 34331.4404897965, "2016": 25714.1247504803, "2017": 25711.7802384645, "2018": 23312.9555671608, "2019": 23357.5595731839, "2020": 21400.8317123672, "2021": 21794.3737869597}, "budget": 52025.21704914435, "emissionBudget": {"2024": 14676.436549054459, "2025": 11068.916790852294, "2026": 8348.138086060499, "2027": 6296.136362821794, "2028": 4748.523885276754, "2029": 3581.320001610971, "2030": 2701.0189405820565, "2031": 2037.0989786171876, "2032": 1536.372880002438, "2033": 1158.7270187574725, "2034": 873.9078393498128, "2035": 659.0982166757502, "2036": 497.089555288067, "2037": 374.9031930669758, "2038": 282.75066872077616, "2039": 213.24955919424107, "2040": 160.83206700192216, "2041": 121.29897887643243, "2042": 91.48326295084763, "2043": 68.99635493765905, "2044": 52.03680805789749, "2045": 39.24597749114572, "2046": 29.59917809566256, "2047": 22.32359594397691, "2048": 16.836377491946962, "2049": 12.697936647962807, "2050": 9.576739128877257}, "approximatedHistoricalEmission": {"2021": 21794.3737869597, "2022": 18147.294181198813, "2023": 16411.865365126636, "2024": 14676.436549054459}, "totalApproximatedHistoricalEmission": 52794.564714332526, "trend": {"2024": 14676.436549054459, "2025": 12941.007732982747, "2026": 11205.57891691057, "2027": 9470.150100838393, "2028": 7734.7212847666815, "2029": 5999.292468694504, "2030": 4263.863652622327, "2031": 2528.4348365506157, "2032": 793.0060204784386, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 62274.27328837151, "historicalEmissionChangePercent": -6.7976987227356, "neededEmissionChangePercent": 24.580351954947695, "hitNetZero": "2032-06-13", "budgetRunsOut": "2029-01-20", "electricCarChangePercent": 0.08039150618547321, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.006666666666666667, "2017": 0.0, "2018": 0.025, "2019": 0.06611570247933884, "2020": 0.16304347826086957, "2021": 0.40860215053763443, "2022": 0.6018518518518519}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 0.9894422704, "totalConsumptionEmission": 6136.6, "electricVehiclePerChargePoints": 37.333333333333336, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1sI2sMvR9jRMyIvnH2Z4U7BE3kuW8LiQU/view?usp=drive_link"}, {"kommun": "Älvsbyn", "län": "Norrbottens län", "emissions": {"1990": 42380.2056350666, "2000": 39373.1061541358, "2005": 36316.1383488962, "2010": 29687.3929194504, "2015": 26459.3056683377, "2016": 25652.7623505093, "2017": 25076.6480812621, "2018": 23863.0892384879, "2019": 24421.6975466247, "2020": 25021.6162165658, "2021": 23006.9546629168}, "budget": 51396.91069964202, "emissionBudget": {"2024": 22155.804290931672, "2025": 14397.1003539923, "2026": 9355.403933034517, "2027": 6079.250723981202, "2028": 3950.3681112610716, "2029": 2566.9953293600374, "2030": 1668.0635412613983, "2031": 1083.9271680245674, "2032": 704.3485314074395, "2033": 457.69390078113844, "2034": 297.41484147579797, "2035": 193.2636370707766, "2036": 125.58496821640381, "2037": 81.60657887308265, "2038": 53.028907917490606, "2039": 34.45880361306553, "2040": 22.391732982533714, "2041": 14.550409572866874, "2042": 9.455026053736892, "2043": 6.143986341356947, "2044": 3.992434071385922, "2045": 2.594330281476956, "2046": 1.6858261123525309, "2047": 1.0954694941430827, "2048": 0.7118488697054629, "2049": 0.46256770819284776, "2050": 0.3005818984461077}, "approximatedHistoricalEmission": {"2021": 23006.9546629168, "2022": 23032.539706559386, "2023": 22594.17199874553, "2024": 22155.804290931672}, "totalApproximatedHistoricalEmission": 68208.09118222915, "trend": {"2024": 22155.804290931672, "2025": 21717.436583117815, "2026": 21279.068875303958, "2027": 20840.7011674901, "2028": 20402.333459676243, "2029": 19963.965751862503, "2030": 19525.598044048646, "2031": 19087.23033623479, "2032": 18648.86262842093, "2033": 18210.494920607074, "2034": 17772.127212793217, "2035": 17333.75950497936, "2036": 16895.391797165503, "2037": 16457.024089351762, "2038": 16018.656381537905, "2039": 15580.288673724048, "2040": 15141.92096591019, "2041": 14703.553258096334, "2042": 14265.185550282476, "2043": 13826.81784246862, "2044": 13388.450134654762, "2045": 12950.082426841022, "2046": 12511.714719027164, "2047": 12073.347011213307, "2048": 11634.97930339945, "2049": 11196.611595585593, "2050": 10758.243887771736}, "trendEmission": 427882.6263231445, "historicalEmissionChangePercent": -2.2312922825770767, "neededEmissionChangePercent": 35.01883224395061, "hitNetZero": "2074-07-04", "budgetRunsOut": "2026-05-18", "electricCarChangePercent": 0.05512807341840541, "electricCarChangeYearly": {"2015": 0.02857142857142857, "2016": 0.049019607843137254, "2017": 0.05319148936170213, "2018": 0.11538461538461539, "2019": 0.09433962264150944, "2020": 0.20408163265306123, "2021": 0.35384615384615387, "2022": 0.4107142857142857}, "climatePlanLink": "http://www3.alvsbyn.se/styrdoc/Styrdok.nsf/Formnytt.xsp?documentId=D921B3CF75BFCEFFC125868C00428F58&action=openDocument", "climatePlanYear": 2021, "climatePlanComment": "Energi– och klimatstrategi", "bicycleMetrePerCapita": 2.224133783, "totalConsumptionEmission": 6267.0, "electricVehiclePerChargePoints": 11.25, "procurementScore": "2", "procurementLink": "https://www.pitea.se/contentassets/ce699811aafa4dd7a941622e5800b9ae/klimat--och-energiplan.pdf"}, {"kommun": "Ängelholm", "län": "Skåne län", "emissions": {"1990": 210875.346268431, "2000": 208985.254846749, "2005": 190582.645187491, "2010": 164439.756276008, "2015": 150335.064273191, "2016": 144503.997924601, "2017": 162461.558243596, "2018": 156440.030394744, "2019": 133162.475163606, "2020": 123224.247930529, "2021": 120399.758867021}, "budget": 293426.0869930383, "emissionBudget": {"2024": 106861.48340961523, "2025": 74243.34129134672, "2026": 51581.482403485155, "2027": 35836.87480470596, "2028": 24898.113352426546, "2029": 17298.2731303589, "2030": 12018.189854667611, "2031": 8349.786495701994, "2032": 5801.117752914349, "2033": 4030.398525818677, "2034": 2800.169375765679, "2035": 1945.452411900943, "2036": 1351.627197885588, "2037": 939.0597636253385, "2038": 652.4234204813049, "2039": 453.2792651547914, "2040": 314.9213927171628, "2041": 218.79554441355228, "2042": 152.01091879527237, "2043": 105.61147163631006, "2044": 73.37488010456005, "2045": 50.978108220088, "2046": 35.417673105505926, "2047": 24.60686777141283, "2048": 17.09592664984159, "2049": 11.877607127076555, "2050": 8.252114901679633}, "approximatedHistoricalEmission": {"2021": 120399.758867021, "2022": 118408.94764437713, "2023": 112635.21552699618, "2024": 106861.48340961523}, "totalApproximatedHistoricalEmission": 344674.7843096914, "trend": {"2024": 106861.48340961523, "2025": 101087.75129223615, "2026": 95314.0191748552, "2027": 89540.28705747426, "2028": 83766.55494009517, "2029": 77992.82282271422, "2030": 72219.09070533514, "2031": 66445.3585879542, "2032": 60671.62647057325, "2033": 54897.89435319416, "2034": 49124.162235813215, "2035": 43350.43011843227, "2036": 37576.698001053184, "2037": 31802.965883672237, "2038": 26029.23376629129, "2039": 20255.501648912206, "2040": 14481.76953153126, "2041": 8708.037414150313, "2042": 2934.3052967712283, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 989629.2510058666, "historicalEmissionChangePercent": -3.2988398223161908, "neededEmissionChangePercent": 30.52375942905316, "hitNetZero": "2042-06-30", "budgetRunsOut": "2026-12-27", "electricCarChangePercent": 0.06255937990183585, "electricCarChangeYearly": {"2015": 0.011474713132171696, "2016": 0.016965584100824042, "2017": 0.017552413456850317, "2018": 0.044794952681388014, "2019": 0.06951530612244898, "2020": 0.20408163265306123, "2021": 0.34813248766737137, "2022": 0.44216691068814057}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. Ny hållbarhetsplan under utveckling.", "bicycleMetrePerCapita": 3.702963484, "totalConsumptionEmission": 6461.6, "electricVehiclePerChargePoints": 20.925233644859812, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Åmål", "län": "Västra Götalands län", "emissions": {"1990": 66382.977440721, "2000": 59317.6980579094, "2005": 48314.3030613173, "2010": 44574.9429344046, "2015": 34030.7191946249, "2016": 33036.3733832332, "2017": 31864.5118685949, "2018": 32314.2712673777, "2019": 32107.8444347977, "2020": 29590.9704960794, "2021": 29559.2865580057}, "budget": 65912.85509423976, "emissionBudget": {"2024": 27487.331503681373, "2025": 18114.267281286408, "2026": 11937.378464473255, "2027": 7866.7827073130165, "2028": 5184.242951520585, "2029": 3416.4379493291963, "2030": 2251.447004078613, "2031": 1483.7130623636358, "2032": 977.7731598569807, "2033": 644.3566322815007, "2034": 424.6337357285282, "2035": 279.835421077798, "2036": 184.41272160215595, "2037": 121.52876057552253, "2038": 80.087965291707, "2039": 52.77830658512894, "2040": 34.781126425774076, "2041": 22.920908868010898, "2042": 15.10497552334427, "2043": 9.954242516066065, "2044": 6.559887761189773, "2045": 4.322993675305173, "2046": 2.8488710473514236, "2047": 1.8774180241807223, "2048": 1.2372263886059505, "2049": 0.8153374032567454, "2050": 0.5373107842441758}, "approximatedHistoricalEmission": {"2021": 29559.2865580057, "2022": 28920.31515496457, "2023": 28203.82332932297, "2024": 27487.331503681373}, "totalApproximatedHistoricalEmission": 85647.44751513108, "trend": {"2024": 27487.331503681373, "2025": 26770.839678040007, "2026": 26054.34785239841, "2027": 25337.85602675681, "2028": 24621.364201115444, "2029": 23904.872375473846, "2030": 23188.380549832247, "2031": 22471.88872419088, "2032": 21755.396898549283, "2033": 21038.905072907917, "2034": 20322.41324726632, "2035": 19605.92142162472, "2036": 18889.429595983354, "2037": 18172.937770341756, "2038": 17456.445944700157, "2039": 16739.95411905879, "2040": 16023.462293417193, "2041": 15306.970467775594, "2042": 14590.478642134229, "2043": 13873.98681649263, "2044": 13157.494990851264, "2045": 12441.003165209666, "2046": 11724.511339568067, "2047": 11008.019513926702, "2048": 10291.527688285103, "2049": 9575.035862643505, "2050": 8858.544037002139}, "trendEmission": 472496.38202888565, "historicalEmissionChangePercent": -2.273719036719601, "neededEmissionChangePercent": 34.099578640944586, "hitNetZero": "2062-05-03", "budgetRunsOut": "2026-06-24", "electricCarChangePercent": 0.04722049692122803, "electricCarChangeYearly": {"2015": 0.16261682242990655, "2016": 0.032520325203252036, "2017": 0.038461538461538464, "2018": 0.052752293577981654, "2019": 0.06578947368421052, "2020": 0.2222222222222222, "2021": 0.2907801418439716, "2022": 0.46417445482866043}, "climatePlanLink": "https://www.amal.se/media/467592/antagen-energi-och-klimatstrategi-20171027.pdf", "climatePlanYear": 2017, "climatePlanComment": "Energi– och klimatstrategi", "bicycleMetrePerCapita": 2.91731537, "totalConsumptionEmission": 5851.1, "electricVehiclePerChargePoints": 4.7368421052631575, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Ånge", "län": "Västernorrlands län", "emissions": {"1990": 83727.3783313871, "2000": 93450.3234134971, "2005": 97521.9257279202, "2010": 79485.8489489808, "2015": 75130.8153932214, "2016": 64557.2900906426, "2017": 65865.9097727702, "2018": 65427.6627652695, "2019": 66767.7799561931, "2020": 59727.990147357, "2021": 64215.5717053796}, "budget": 136768.3647578438, "emissionBudget": {"2024": 57062.76124011818, "2025": 37597.2084960344, "2026": 24771.848679844108, "2027": 16321.543847645471, "2028": 10753.851963715862, "2029": 7085.440760813712, "2030": 4668.417506990974, "2031": 3075.9020864464796, "2032": 2026.633999902035, "2033": 1335.2978261749317, "2034": 879.7939266160968, "2035": 579.6739410022577, "2036": 381.9324818136804, "2037": 251.64564136201042, "2038": 165.80294117898544, "2039": 109.24335964974996, "2040": 71.97768352421241, "2041": 47.4242731285639, "2042": 31.24665273530331, "2043": 20.587628291398627, "2044": 13.564666982262684, "2045": 8.937415603941218, "2046": 5.888636837308312, "2047": 3.8798737060423902, "2048": 2.5563505427038673, "2049": 1.6843146432846723, "2050": 1.1097522699615934}, "approximatedHistoricalEmission": {"2021": 64215.5717053796, "2022": 60027.22272345144, "2023": 58544.99198178481, "2024": 57062.76124011818}, "totalApproximatedHistoricalEmission": 179211.38117798517, "trend": {"2024": 57062.76124011818, "2025": 55580.53049845109, "2026": 54098.29975678446, "2027": 52616.06901511736, "2028": 51133.83827345073, "2029": 49651.60753178364, "2030": 48169.37679011701, "2031": 46687.14604845038, "2032": 45204.91530678328, "2033": 43722.68456511665, "2034": 42240.453823449556, "2035": 40758.223081782926, "2036": 39275.99234011583, "2037": 37793.7615984492, "2038": 36311.530856782105, "2039": 34829.300115115475, "2040": 33347.069373448845, "2041": 31864.83863178175, "2042": 30382.60789011512, "2043": 28900.377148448024, "2044": 27418.146406781394, "2045": 25935.9156651143, "2046": 24453.68492344767, "2047": 22971.454181780573, "2048": 21489.223440113943, "2049": 20006.992698447313, "2050": 18524.761956780218}, "trendEmission": 982637.8015596778, "historicalEmissionChangePercent": -2.28231134136994, "neededEmissionChangePercent": 34.112532098075995, "hitNetZero": "2062-06-21", "budgetRunsOut": "2026-06-23", "electricCarChangePercent": 0.05920741158752741, "electricCarChangeYearly": {"2015": 0.01744186046511628, "2016": 0.00625, "2017": 0.0, "2018": 0.0, "2019": 0.07692307692307693, "2020": 0.16666666666666666, "2021": 0.25196850393700787, "2022": 0.47}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.864452459, "totalConsumptionEmission": 6333.8, "electricVehiclePerChargePoints": 5.228571428571429, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Åre", "län": "Jämtlands län", "emissions": {"1990": 81442.5503532231, "2000": 77535.3141569748, "2005": 74553.3520429588, "2010": 58458.7085436898, "2015": 49498.6136590716, "2016": 48071.2578531532, "2017": 46225.2059246386, "2018": 29533.6499850845, "2019": 30254.8303383025, "2020": 27703.0355115981, "2021": 27256.1945967649}, "budget": 76588.7132746356, "emissionBudget": {"2024": 10484.524526290596, "2025": 9143.163633880065, "2026": 7973.41272141442, "2027": 6953.316485601821, "2028": 6063.728523558152, "2029": 5287.951969905241, "2030": 4611.426109758713, "2031": 4021.4530855781295, "2032": 3506.959568382207, "2033": 3058.2889200855698, "2034": 2667.019946007773, "2035": 2325.8088356819753, "2036": 2028.251325316703, "2037": 1768.7624948086973, "2038": 1542.4719431914486, "2039": 1345.132375045148, "2040": 1173.0398821069664, "2041": 1022.9644238302875, "2042": 892.0892020677336, "2043": 777.9577919885459, "2044": 678.4280369192735, "2045": 591.6318417502474, "2046": 515.9401102617456, "2047": 449.9321682710818, "2048": 392.3690986971651, "2049": 342.17048806270157, "2050": 298.39414798419585}, "approximatedHistoricalEmission": {"2021": 27256.1945967649, "2022": 19301.24434460327, "2023": 14892.884435446933, "2024": 10484.524526290596}, "totalApproximatedHistoricalEmission": 53064.48834157795, "trend": {"2024": 10484.524526290596, "2025": 6076.164617136121, "2026": 1667.8047079797834, "2027": 0, "2028": 0, "2029": 0, "2030": 0, "2031": 0, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 12986.231588261202, "historicalEmissionChangePercent": -8.406414823419276, "neededEmissionChangePercent": 12.793721728123995, "hitNetZero": "2026-05-18", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.07488338094349196, "electricCarChangeYearly": {"2015": 0.08280254777070063, "2016": 0.032432432432432434, "2017": 0.08, "2018": 0.0728476821192053, "2019": 0.10344827586206896, "2020": 0.2624113475177305, "2021": 0.5028901734104047, "2022": 0.5628140703517588}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 0.3319469352, "totalConsumptionEmission": 6697.7, "electricVehiclePerChargePoints": 3.4057971014492754, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/1s_u6HwkOhsOd_of59VGruJbXWOfdcqT8/edit?usp=drive_link&ouid=104089955738391943844&rtpof=true&sd=true"}, {"kommun": "Årjäng", "län": "Värmlands län", "emissions": {"1990": 78180.6165603846, "2000": 68140.9525384197, "2005": 60422.452059284, "2010": 55402.4335974424, "2015": 45125.8538260535, "2016": 42983.555410513, "2017": 42379.6096411735, "2018": 41342.5881498643, "2019": 40527.9791564635, "2020": 37686.5078536358, "2021": 38379.083489963}, "budget": 85440.8409724355, "emissionBudget": {"2024": 34199.44608822325, "2025": 22918.374566943894, "2026": 15358.491229237008, "2027": 10292.320345386715, "2028": 6897.282845752806, "2029": 4622.136608450897, "2030": 3097.472918678045, "2031": 2075.73667649763, "2032": 1391.031612956379, "2033": 932.1842072516056, "2034": 624.6927734463749, "2035": 418.6308437327922, "2036": 280.5407566307849, "2037": 188.00123619464756, "2038": 125.98691625128812, "2039": 84.42871646905145, "2040": 56.578955789296884, "2041": 37.915751560437954, "2042": 25.408814926641092, "2043": 17.027431856314298, "2044": 11.410742156157474, "2045": 7.646780656827309, "2046": 5.124404145971777, "2047": 3.4340618659968145, "2048": 2.3012979779831895, "2049": 1.542188984976903, "2050": 1.0334806218655894}, "approximatedHistoricalEmission": {"2021": 38379.083489963, "2022": 36534.16298870463, "2023": 35366.804538464174, "2024": 34199.44608822325}, "totalApproximatedHistoricalEmission": 108190.23231626193, "trend": {"2024": 34199.44608822325, "2025": 33032.0876379828, "2026": 31864.72918774234, "2027": 30697.370737501886, "2028": 29530.012287260965, "2029": 28362.65383702051, "2030": 27195.295386780053, "2031": 26027.936936539598, "2032": 24860.578486298677, "2033": 23693.22003605822, "2034": 22525.861585817765, "2035": 21358.503135576844, "2036": 20191.14468533639, "2037": 19023.786235095933, "2038": 17856.427784855478, "2039": 16689.069334614556, "2040": 15521.7108843741, "2041": 14354.352434133645, "2042": 13186.99398389319, "2043": 12019.635533652268, "2044": 10852.277083411813, "2045": 9684.918633171357, "2046": 8517.560182930902, "2047": 7350.20173268998, "2048": 6182.843282449525, "2049": 5015.484832209069, "2050": 3848.126381968148}, "trendEmission": 494618.44211249356, "historicalEmissionChangePercent": -2.6238706757801293, "neededEmissionChangePercent": 32.98612349503535, "hitNetZero": "2053-04-11", "budgetRunsOut": "2026-08-13", "electricCarChangePercent": 0.04682916517497189, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.006688963210702341, "2018": 0.01327433628318584, "2019": 0.04529616724738676, "2020": 0.10526315789473684, "2021": 0.22302158273381295, "2022": 0.3558282208588957}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 2.410277256, "totalConsumptionEmission": 6339.9, "electricVehiclePerChargePoints": 3.888888888888889, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Åsele", "län": "Västerbottens län", "emissions": {"1990": 50639.8773677963, "2000": 33698.4771214382, "2005": 25014.8888204024, "2010": 29015.7545454347, "2015": 24609.3652044994, "2016": 23899.7500472867, "2017": 22878.7262084757, "2018": 22630.0640558939, "2019": 24462.2807365607, "2020": 20722.3370240864, "2021": 21601.5547051383}, "budget": 47635.354764603515, "emissionBudget": {"2024": 20016.00335104915, "2025": 13148.92420281555, "2026": 8637.798698326367, "2027": 5674.347589351249, "2028": 3727.595616579366, "2029": 2448.734213395328, "2030": 1608.623859622238, "2031": 1056.7380925175921, "2032": 694.1929833366755, "2033": 456.0296458754291, "2034": 299.575251996475, "2035": 196.7971433884951, "2036": 129.28009035381737, "2037": 84.9267498202327, "2038": 55.790128358426095, "2039": 36.649682565717804, "2040": 24.075930127610352, "2041": 15.81597358913504, "2042": 10.389838284393011, "2043": 6.825298421716846, "2044": 4.483678886077297, "2045": 2.9454208609384875, "2046": 1.9349075320694273, "2047": 1.271080546522003, "2048": 0.83499894902921, "2049": 0.5485279802193997, "2050": 0.36033930992774066}, "approximatedHistoricalEmission": {"2021": 21601.5547051383, "2022": 21001.339280791814, "2023": 20508.67131592054, "2024": 20016.00335104915}, "totalApproximatedHistoricalEmission": 62318.78962480608, "trend": {"2024": 20016.00335104915, "2025": 19523.335386177758, "2026": 19030.667421306367, "2027": 18537.999456434976, "2028": 18045.331491563586, "2029": 17552.663526692195, "2030": 17059.99556182092, "2031": 16567.32759694953, "2032": 16074.65963207814, "2033": 15581.991667206748, "2034": 15089.323702335358, "2035": 14596.655737463967, "2036": 14103.987772592576, "2037": 13611.319807721185, "2038": 13118.651842849911, "2039": 12625.98387797852, "2040": 12133.31591310713, "2041": 11640.647948235739, "2042": 11147.979983364348, "2043": 10655.312018492958, "2044": 10162.644053621567, "2045": 9669.976088750293, "2046": 9177.308123878902, "2047": 8684.640159007511, "2048": 8191.97219413612, "2049": 7699.30422926473, "2050": 7206.636264393339}, "trendEmission": 353894.3150007523, "historicalEmissionChangePercent": -1.8653132165885689, "neededEmissionChangePercent": 34.30794363787742, "hitNetZero": "2064-08-07", "budgetRunsOut": "2026-06-15", "electricCarChangePercent": 0.0796594278737136, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.1111111111111111, "2018": 0.0, "2019": 0.09523809523809523, "2020": 0.1111111111111111, "2021": 0.35, "2022": 0.6923076923076923}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas.", "bicycleMetrePerCapita": 0.7939140036, "totalConsumptionEmission": 6179.7, "electricVehiclePerChargePoints": 12.5, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Åstorp", "län": "Skåne län", "emissions": {"1990": 70435.4579188523, "2000": 62297.8271908881, "2005": 57766.3866420445, "2010": 90693.9052895623, "2015": 58497.1672309609, "2016": 56126.5852145429, "2017": 54552.1680550576, "2018": 52266.7564917439, "2019": 50199.9235566512, "2020": 45006.8214742801, "2021": 45865.6598646384}, "budget": 107388.66047406799, "emissionBudget": {"2024": 37969.37725300249, "2025": 26661.225082190253, "2026": 18720.900217740633, "2027": 13145.386375989054, "2028": 9230.388547783918, "2029": 6481.366945492317, "2030": 4551.067082891756, "2031": 3195.6548313293497, "2032": 2243.915463120301, "2033": 1575.6259268889303, "2034": 1106.3683557991078, "2035": 776.8664616547072, "2036": 545.4977956306362, "2037": 383.036029646679, "2038": 268.95910704437654, "2039": 188.85691074240572, "2040": 132.6109873248509, "2041": 93.11639108223056, "2042": 65.38419223845146, "2043": 45.91127883059246, "2044": 32.23784605571395, "2045": 22.636675448460846, "2046": 15.894953852480697, "2047": 11.161071710716667, "2048": 7.837048341748948, "2049": 5.502995438326596, "2050": 3.8640770700522817}, "approximatedHistoricalEmission": {"2021": 45865.6598646384, "2022": 42575.54111570958, "2023": 40272.459184356034, "2024": 37969.37725300249}, "totalApproximatedHistoricalEmission": 124765.51885888606, "trend": {"2024": 37969.37725300249, "2025": 35666.29532164894, "2026": 33363.213390295394, "2027": 31060.131458941847, "2028": 28757.0495275883, "2029": 26453.967596234754, "2030": 24150.885664881207, "2031": 21847.80373352766, "2032": 19544.721802174114, "2033": 17241.639870820567, "2034": 14938.55793946702, "2035": 12635.476008113474, "2036": 10332.394076759927, "2037": 8029.31214540638, "2038": 5726.230214052834, "2039": 3423.1482826983556, "2040": 1120.066351344809, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 313275.5820104568, "historicalEmissionChangePercent": -3.9063317021096715, "neededEmissionChangePercent": 29.782295599588828, "hitNetZero": "2040-06-22", "budgetRunsOut": "2027-02-15", "electricCarChangePercent": 0.07218936624257806, "electricCarChangeYearly": {"2015": 0.003246753246753247, "2016": 0.0031446540880503146, "2017": 0.024734982332155476, "2018": 0.041666666666666664, "2019": 0.07168458781362007, "2020": 0.2576419213973799, "2021": 0.36254980079681276, "2022": 0.508695652173913}, "climatePlanLink": "https://medborgarportalen.astorp.se/welcome-sv/namnder-styrelser/bygg-och-miljonamndens-arbetsutskott/bygg-och-miljonamndens-arbetsutskott/agenda/02-verksamhetsplan-for-strategiskt-arbetsmiljoarbete-2022pdf?downloadMode=open", "climatePlanYear": 2022, "climatePlanComment": "Verksamhetsplan för miljöstrategiskt arbete 2022.", "bicycleMetrePerCapita": 2.783975275, "totalConsumptionEmission": 5651.9, "electricVehiclePerChargePoints": 14.1875, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1w-XpLcjZch_a49jJyc65AJSYXjl6kOfM/view?usp=drive_link"}, {"kommun": "Åtvidaberg", "län": "Östergötlands län", "emissions": {"1990": 49854.8277163261, "2000": 42105.2390518121, "2005": 37206.6093362635, "2010": 35560.405447043, "2015": 30607.5587273944, "2016": 30336.5719734941, "2017": 28171.2887786054, "2018": 26000.5834246661, "2019": 25829.6596876605, "2020": 22187.7990011082, "2021": 22521.1005462786}, "budget": 54996.86974456862, "emissionBudget": {"2024": 17329.533967230003, "2025": 12645.63178855769, "2026": 9227.715161537119, "2027": 6733.607978330511, "2028": 4913.618984992978, "2029": 3585.5445709611145, "2030": 2616.4279138479233, "2031": 1909.2483423034369, "2032": 1393.2083560549781, "2033": 1016.6459126211076, "2034": 741.8624121490833, "2035": 541.3485971145286, "2036": 395.0305323448251, "2037": 288.2599535981097, "2038": 210.34779351144223, "2039": 153.49407256486316, "2040": 112.00702379255462, "2041": 81.73327587985143, "2042": 59.64204886315319, "2043": 43.5217352333195, "2044": 31.758490424519316, "2045": 23.174666833415152, "2046": 16.91091659775958, "2047": 12.340160151257582, "2048": 9.004807733417609, "2049": 6.570948944090812, "2050": 4.794924145422145}, "approximatedHistoricalEmission": {"2021": 22521.1005462786, "2022": 20393.716080020182, "2023": 18861.625023625325, "2024": 17329.533967230003}, "totalApproximatedHistoricalEmission": 59180.65836039981, "trend": {"2024": 17329.533967230003, "2025": 15797.442910834681, "2026": 14265.351854439825, "2027": 12733.260798044503, "2028": 11201.16974164918, "2029": 9669.078685253859, "2030": 8136.987628859002, "2031": 6604.89657246368, "2032": 5072.805516068358, "2033": 3540.7144596735016, "2034": 2008.6234032781795, "2035": 476.5323468828574, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 98171.63090106263, "historicalEmissionChangePercent": -4.830500916842228, "neededEmissionChangePercent": 27.028437045852062, "hitNetZero": "2035-04-21", "budgetRunsOut": "2027-10-26", "electricCarChangePercent": 0.07781171707064609, "electricCarChangeYearly": {"2015": 0.0040650406504065045, "2016": 0.008968609865470852, "2017": 0.0047169811320754715, "2018": 0.06153846153846154, "2019": 0.10989010989010989, "2020": 0.24503311258278146, "2021": 0.4010152284263959, "2022": 0.5478723404255319}, "climatePlanLink": "https://www.atvidaberg.se/download/18.1dfa69ad1630328ad7c3895c/1656507587248/hallbarhetsprogram.pdf", "climatePlanYear": 2022, "climatePlanComment": "Hållbarhetsprogram. Gäller tillsvidare.", "bicycleMetrePerCapita": 2.773036069, "totalConsumptionEmission": 5883.9, "electricVehiclePerChargePoints": 10000000000.0, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1GImZzAP8XtBTbmc3aaOyERVvPTJ9CyMY/view?usp=drive_link"}, {"kommun": "Öckerö", "län": "Västra Götalands län", "emissions": {"1990": 73844.3799797759, "2000": 61656.6373549003, "2005": 48874.5766056304, "2010": 41321.5592687389, "2015": 30812.5067322687, "2016": 30973.782675029, "2017": 30117.1107568216, "2018": 29619.3349376136, "2019": 28907.5250507905, "2020": 27434.3844569603, "2021": 25201.3309250789}, "budget": 60154.69201157645, "emissionBudget": {"2024": 23626.15874127904, "2025": 15952.216937036615, "2026": 10770.825168531039, "2027": 7272.385729767573, "2028": 4910.263918965831, "2029": 3315.375813360256, "2030": 2238.518532854989, "2031": 1511.4320378830455, "2032": 1020.5083279903679, "2033": 689.040076824336, "2034": 465.2350347841236, "2035": 314.1234376208351, "2036": 212.09394539368003, "2037": 143.2043467159409, "2038": 96.69057209659738, "2039": 65.2847971920297, "2040": 44.0798378992571, "2041": 29.76239787510588, "2042": 20.095362630429193, "2043": 13.568248127823713, "2044": 9.16118612258453, "2045": 6.185568717639381, "2046": 4.176452682946327, "2047": 2.8199116054030915, "2048": 1.9039845691912112, "2049": 1.2855570482323817, "2050": 0.8679991166955651}, "approximatedHistoricalEmission": {"2021": 25201.3309250789, "2022": 25420.580852974672, "2023": 24523.369797126856, "2024": 23626.15874127904}, "totalApproximatedHistoricalEmission": 74357.69548328049, "trend": {"2024": 23626.15874127904, "2025": 22728.947685431223, "2026": 21831.736629583407, "2027": 20934.52557373559, "2028": 20037.314517887775, "2029": 19140.10346203996, "2030": 18242.892406192143, "2031": 17345.68135034456, "2032": 16448.470294496743, "2033": 15551.259238648927, "2034": 14654.04818280111, "2035": 13756.837126953295, "2036": 12859.626071105478, "2037": 11962.415015257662, "2038": 11065.203959409846, "2039": 10167.99290356203, "2040": 9270.781847714214, "2041": 8373.570791866397, "2042": 7476.359736018581, "2043": 6579.148680170765, "2044": 5681.937624322949, "2045": 4784.726568475133, "2046": 3887.5155126273166, "2047": 2990.3044567795005, "2048": 2093.0934009316843, "2049": 1195.8823450838681, "2050": 298.67128923605196}, "trendEmission": 311022.7903966977, "historicalEmissionChangePercent": -3.2556736022571857, "neededEmissionChangePercent": 32.480700262267774, "hitNetZero": "2050-04-25", "budgetRunsOut": "2026-09-07", "electricCarChangePercent": 0.07675163702380684, "electricCarChangeYearly": {"2015": 0.014388489208633094, "2016": 0.00641025641025641, "2017": 0.003134796238244514, "2018": 0.1264705882352941, "2019": 0.07612456747404844, "2020": 0.20920502092050208, "2021": 0.3931888544891641, "2022": 0.5780141843971631}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.588384851, "totalConsumptionEmission": 5835.0, "electricVehiclePerChargePoints": 41.46153846153846, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Ödeshög", "län": "Östergötlands län", "emissions": {"1990": 65337.1021582086, "2000": 65046.6474902679, "2005": 66893.5290948132, "2010": 74185.3229500285, "2015": 64461.5754480372, "2016": 61247.6886789175, "2017": 57459.7476077049, "2018": 56929.7397065531, "2019": 57103.477833064, "2020": 51284.3519938811, "2021": 51341.8145557251}, "budget": 118442.06763320962, "emissionBudget": {"2024": 44337.86529877223, "2025": 30492.990867673805, "2026": 20971.295884237938, "2027": 14422.830904740482, "2028": 9919.179647028102, "2029": 6821.831686155162, "2030": 4691.656892026722, "2031": 3226.6472415574613, "2032": 2219.0992779424837, "2033": 1526.1667101197916, "2034": 1049.6082127688555, "2035": 721.8591475012311, "2036": 496.45250722324175, "2037": 341.43100185320094, "2038": 234.81627613990415, "2039": 161.4929026389898, "2040": 111.06537430662485, "2041": 76.38426932882733, "2042": 52.532633481169555, "2043": 36.12887319228958, "2044": 24.847326159889302, "2045": 17.088537857518315, "2046": 11.752496998217762, "2047": 8.082680147637639, "2048": 5.558794729232663, "2049": 3.823013935640665, "2050": 2.629245414521763}, "approximatedHistoricalEmission": {"2021": 51341.8145557251, "2022": 48598.024286032654, "2023": 46467.94479240291, "2024": 44337.86529877223}, "totalApproximatedHistoricalEmission": 142905.80900568422, "trend": {"2024": 44337.86529877223, "2025": 42207.78580514155, "2026": 40077.70631151181, "2027": 37947.62681788113, "2028": 35817.54732425045, "2029": 33687.467830620706, "2030": 31557.38833699003, "2031": 29427.30884335935, "2032": 27297.229349729605, "2033": 25167.149856098928, "2034": 23037.07036246825, "2035": 20906.990868838504, "2036": 18776.911375207826, "2037": 16646.83188157715, "2038": 14516.752387947403, "2039": 12386.672894316725, "2040": 10256.593400686048, "2041": 8126.513907056302, "2042": 5996.434413425624, "2043": 3866.354919794947, "2044": 1736.2754261652008, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 461609.54496245366, "historicalEmissionChangePercent": -3.6443386487071536, "neededEmissionChangePercent": 31.22584801456782, "hitNetZero": "2044-10-19", "budgetRunsOut": "2026-11-14", "electricCarChangePercent": 0.07059067095543468, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.026785714285714284, "2017": 0.021052631578947368, "2018": 0.0449438202247191, "2019": 0.025, "2020": 0.19753086419753085, "2021": 0.3108108108108108, "2022": 0.5714285714285714}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.229829471, "totalConsumptionEmission": 6225.3, "electricVehiclePerChargePoints": 2.672727272727273, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Örebro", "län": "Örebro län", "emissions": {"1990": 620529.792142713, "2000": 537639.425112178, "2005": 543373.867565625, "2010": 573461.36428205, "2015": 359439.907047336, "2016": 392684.63618767, "2017": 333386.976115004, "2018": 340082.131250872, "2019": 331733.757188147, "2020": 269824.880468998, "2021": 321310.710146619}, "budget": 695690.4917119902, "emissionBudget": {"2024": 257974.64525786787, "2025": 178046.21985334487, "2026": 122882.06219792759, "2027": 84809.44567344975, "2028": 58532.88874540981, "2029": 40397.61181878694, "2030": 27881.197658972098, "2031": 19242.750942449493, "2032": 13280.75889573505, "2033": 9165.974104957866, "2034": 6326.075335931185, "2035": 4366.063955409874, "2036": 3013.3239726781353, "2037": 2079.7041584940143, "2038": 1435.3482818554153, "2039": 990.6335388188927, "2040": 683.7050077938477, "2041": 471.87231136926493, "2042": 325.67185511110154, "2043": 224.76876615993493, "2044": 155.12853643378085, "2045": 107.06497716396876, "2046": 73.89297674457384, "2047": 50.99867535405108, "2048": 35.19772788229005, "2049": 24.292396605891998, "2050": 16.76587008205367}, "approximatedHistoricalEmission": {"2021": 321310.710146619, "2022": 283814.66819117963, "2023": 270894.65672452375, "2024": 257974.64525786787}, "totalApproximatedHistoricalEmission": 844352.0026179468, "trend": {"2024": 257974.64525786787, "2025": 245054.633791212, "2026": 232134.6223245561, "2027": 219214.61085790023, "2028": 206294.59939124435, "2029": 193374.58792458847, "2030": 180454.5764579326, "2031": 167534.5649912767, "2032": 154614.55352462083, "2033": 141694.54205796495, "2034": 128774.53059130907, "2035": 115854.51912465319, "2036": 102934.50765799731, "2037": 90014.49619134143, "2038": 77094.48472468555, "2039": 64174.47325802967, "2040": 51254.46179137379, "2041": 38334.45032471791, "2042": 25414.43885806203, "2043": 12494.427391406149, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 2575703.4038638063, "historicalEmissionChangePercent": -0.9798579793105634, "neededEmissionChangePercent": 30.983054681450422, "hitNetZero": "2043-12-14", "budgetRunsOut": "2026-11-28", "electricCarChangePercent": 0.06838985391189982, "electricCarChangeYearly": {"2015": 0.015954520447460114, "2016": 0.021750951604132682, "2017": 0.04129263913824058, "2018": 0.05584541062801932, "2019": 0.08505747126436781, "2020": 0.2382172131147541, "2021": 0.3542545274125527, "2022": 0.5105608157319738}, "climatePlanLink": "https://www.orebro.se/download/18.1d8f9a39155628f73841694a/1485339455931/Klimatstrategi%20%C3%96rebro%20kommun.pdf", "climatePlanYear": 2016, "climatePlanComment": "Miljöstrategi med mål och delmål 2020 och 2030", "bicycleMetrePerCapita": 3.428744851, "totalConsumptionEmission": 6087.2, "electricVehiclePerChargePoints": 15.496402877697841, "procurementScore": "2", "procurementLink": "https://www.orebro.se/fordjupning/fordjupning/sa-arbetar-vi-med/maltider-i-kommunens-kok-och-serveringar.html"}, {"kommun": "Örkelljunga", "län": "Skåne län", "emissions": {"1990": 76125.6667034147, "2000": 75434.8217512923, "2005": 73086.3067328799, "2010": 76761.5548320115, "2015": 65165.9562219394, "2016": 61797.0668459817, "2017": 59065.308291697, "2018": 61509.769298585, "2019": 61744.1061801218, "2020": 57392.7656537161, "2021": 58028.5562909162}, "budget": 125810.88438333746, "emissionBudget": {"2024": 54770.07462131325, "2025": 35438.805668219364, "2026": 22930.568487870783, "2027": 14837.152699208107, "2028": 9600.33329902235, "2029": 6211.865667274319, "2030": 4019.368272577679, "2031": 2600.719683253036, "2032": 1682.7875457458601, "2033": 1088.8424240229274, "2034": 704.5320886461884, "2035": 455.86528682290674, "2036": 294.9662096008426, "2037": 190.85696437352925, "2038": 123.49340251268755, "2039": 79.9060202713558, "2040": 51.70294077005727, "2041": 33.454226292262476, "2042": 21.646452602983466, "2043": 14.006269527793055, "2044": 9.062712938846442, "2045": 5.864000092883849, "2046": 3.794282939487954, "2047": 2.455078921700575, "2048": 1.588551146001744, "2049": 1.0278670559867338, "2050": 0.6650781672607697}, "approximatedHistoricalEmission": {"2021": 58028.5562909162, "2022": 56737.36064196867, "2023": 55753.71763164108, "2024": 54770.07462131325}, "totalApproximatedHistoricalEmission": 168890.39372972446, "trend": {"2024": 54770.07462131325, "2025": 53786.43161098566, "2026": 52802.78860065807, "2027": 51819.14559033024, "2028": 50835.50258000265, "2029": 49851.85956967482, "2030": 48868.21655934723, "2031": 47884.57354901964, "2032": 46900.93053869181, "2033": 45917.28752836422, "2034": 44933.64451803663, "2035": 43950.0015077088, "2036": 42966.35849738121, "2037": 41982.715487053385, "2038": 40999.07247672579, "2039": 40015.4294663982, "2040": 39031.786456070375, "2041": 38048.14344574278, "2042": 37064.50043541496, "2043": 36080.857425087364, "2044": 35097.21441475977, "2045": 34113.57140443195, "2046": 33129.928394104354, "2047": 32146.28538377653, "2048": 31162.642373448936, "2049": 30178.999363121344, "2050": 29195.35635279352}, "trendEmission": 1091550.6026633899, "historicalEmissionChangePercent": -1.835046594859003, "neededEmissionChangePercent": 35.2953124251748, "hitNetZero": "2079-08-23", "budgetRunsOut": "2026-05-07", "electricCarChangePercent": 0.03301981588753814, "electricCarChangeYearly": {"2015": 0.007220216606498195, "2016": 0.006430868167202572, "2017": 0.02318840579710145, "2018": 0.021538461538461538, "2019": 0.020689655172413793, "2020": 0.08056872037914692, "2021": 0.15942028985507245, "2022": 0.2697095435684647}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 4.810645387, "totalConsumptionEmission": 6067.0, "electricVehiclePerChargePoints": 8.08, "procurementScore": "2", "procurementLink": "https://drive.google.com/file/d/1w-XpLcjZch_a49jJyc65AJSYXjl6kOfM/view?usp=drive_link"}, {"kommun": "Örnsköldsvik", "län": "Västernorrlands län", "emissions": {"1990": 703144.380487024, "2000": 458635.000043178, "2005": 370156.789591317, "2010": 322840.919691759, "2015": 269722.689535555, "2016": 276319.787062736, "2017": 275718.322965957, "2018": 253440.488994978, "2019": 251724.871375134, "2020": 222789.168874571, "2021": 287664.06180264}, "budget": 544291.0416661355, "emissionBudget": {"2024": 245933.36198038887, "2025": 156525.50432733688, "2026": 99621.43121875776, "2027": 63404.55250870191, "2028": 40354.140967930456, "2029": 25683.592562791244, "2030": 16346.449487196094, "2031": 10403.778606290658, "2032": 6621.536338731707, "2033": 4214.309545056419, "2034": 2682.2181489312015, "2035": 1707.1110039591567, "2036": 1086.4992398174952, "2037": 691.5078137193232, "2038": 440.11356741970746, "2039": 280.11245626433725, "2040": 178.27895789364575, "2041": 113.46652430783331, "2042": 72.21633046666473, "2043": 45.962440621885555, "2044": 29.253022609553902, "2045": 18.618230890628585, "2046": 11.849665114043473, "2047": 7.5417779562319245, "2048": 4.80000187293877, "2049": 3.0549849271519944, "2050": 1.9443602632204458}, "approximatedHistoricalEmission": {"2021": 287664.06180264, "2022": 251449.83134938125, "2023": 248691.59666488506, "2024": 245933.36198038887}, "totalApproximatedHistoricalEmission": 766940.1399057808, "trend": {"2024": 245933.36198038887, "2025": 243175.12729589175, "2026": 240416.89261139557, "2027": 237658.65792689938, "2028": 234900.42324240226, "2029": 232142.18855790608, "2030": 229383.9538734099, "2031": 226625.7191889137, "2032": 223867.48450441658, "2033": 221109.2498199204, "2034": 218351.0151354242, "2035": 215592.78045092802, "2036": 212834.5457664309, "2037": 210076.31108193472, "2038": 207318.07639743853, "2039": 204559.84171294142, "2040": 201801.60702844523, "2041": 199043.37234394904, "2042": 196285.13765945286, "2043": 193526.90297495574, "2044": 190768.66829045955, "2045": 188010.43360596336, "2046": 185252.19892146718, "2047": 182493.96423697006, "2048": 179735.72955247387, "2049": 176977.4948679777, "2050": 174219.26018348057}, "trendEmission": 5461984.088130302, "historicalEmissionChangePercent": 1.8492991272173178, "neededEmissionChangePercent": 36.35450551852394, "hitNetZero": "2113-02-07", "budgetRunsOut": "2026-03-30", "electricCarChangePercent": 0.06104495238337404, "electricCarChangeYearly": {"2015": 0.008664627930682976, "2016": 0.01699150424787606, "2017": 0.02738283307003686, "2018": 0.03169398907103825, "2019": 0.05836341756919374, "2020": 0.17722681359044995, "2021": 0.31940575673166205, "2022": 0.45716510903426794}, "climatePlanLink": "https://www.ornskoldsvik.se/download/18.54f6f67017d0e18071cc1e0b/1645188359669/Klimatstrategi%202021-2026.pdf", "climatePlanYear": 2021, "climatePlanComment": "Klimatstrategi, gäller till 2026.", "bicycleMetrePerCapita": 1.88221786, "totalConsumptionEmission": 6131.3, "electricVehiclePerChargePoints": 18.076190476190476, "procurementScore": "2", "procurementLink": "https://docs.google.com/document/d/1Hjjp7bZbrpEoJ_rQuWgm48KzYZAvCtdw/edit"}, {"kommun": "Östersund", "län": "Jämtlands län", "emissions": {"1990": 267793.20055861, "2000": 193320.779532763, "2005": 192255.030535241, "2010": 169384.588985849, "2015": 143786.390451667, "2016": 136270.272900585, "2017": 134890.137836385, "2018": 123096.170608436, "2019": 113061.651497606, "2020": 94746.1396597532, "2021": 95248.2864179093}, "budget": 249160.66875817557, "emissionBudget": {"2024": 66480.35028424859, "2025": 50911.52011764331, "2026": 38988.70673224065, "2027": 29858.060594931485, "2028": 22865.692586653444, "2029": 17510.8458838111, "2030": 13410.034373748285, "2031": 10269.579385160589, "2032": 7864.577957724999, "2033": 6022.796468422911, "2034": 4612.336160317058, "2035": 3532.1872434681272, "2036": 2704.9951021049005, "2037": 2071.520561641349, "2038": 1586.397488839696, "2039": 1214.8839066327416, "2040": 930.3739554421184, "2041": 712.4925206756252, "2042": 545.6360735909362, "2043": 417.8552281803886, "2044": 319.9989886456529, "2045": 245.0594029423865, "2046": 187.6696899094864, "2047": 143.7198984729551, "2048": 110.06257444683084, "2049": 84.28735632695796, "2050": 64.54835780730865}, "approximatedHistoricalEmission": {"2021": 95248.2864179093, "2022": 84372.56920722872, "2023": 75426.45974573866, "2024": 66480.35028424859}, "totalApproximatedHistoricalEmission": 240663.34730404633, "trend": {"2024": 66480.35028424859, "2025": 57534.240822758526, "2026": 48588.13136126846, "2027": 39642.021899778396, "2028": 30695.91243828833, "2029": 21749.802976798266, "2030": 12803.693515308201, "2031": 3857.5840538181365, "2032": 0, "2033": 0, "2034": 0, "2035": 0, "2036": 0, "2037": 0, "2038": 0, "2039": 0, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 248111.5622101426, "historicalEmissionChangePercent": -6.467469907892919, "neededEmissionChangePercent": 23.418694546641177, "hitNetZero": "2031-06-05", "budgetRunsOut": "Håller budget", "electricCarChangePercent": 0.0601379340337174, "electricCarChangeYearly": {"2015": 0.047901459854014596, "2016": 0.03966870095902354, "2017": 0.048760330578512395, "2018": 0.055350553505535055, "2019": 0.0917686318131257, "2020": 0.2288072018004501, "2021": 0.30080296479308216, "2022": 0.5006666666666667}, "climatePlanLink": "https://ostersund.se/bygga-bo-och-miljo/klimat-och-miljo/klimatprogram-och-strategi.html", "climatePlanYear": 2019, "climatePlanComment": "Klimatprogram Färden mot ett fossilbränslefritt och energieffektivt Östersund 2030", "bicycleMetrePerCapita": 2.810475703, "totalConsumptionEmission": 6318.8, "electricVehiclePerChargePoints": 9.973684210526315, "procurementScore": "2", "procurementLink": "https://www.ostersund.se/bygga-bo-och-miljo/klimat-och-miljo/sa-arbetar-kommunen-med-klimat-och-miljo/klimatstrategi.html"}, {"kommun": "Österåker", "län": "Stockholms län", "emissions": {"1990": 142177.535818003, "2000": 122759.804421402, "2005": 99769.5584332844, "2010": 85808.4437131063, "2015": 75290.8826013512, "2016": 72469.1660068102, "2017": 70286.0602446154, "2018": 73133.2508668064, "2019": 72816.3773932359, "2020": 65613.8536799114, "2021": 66972.2779992721}, "budget": 147103.56718834813, "emissionBudget": {"2024": 63196.81240355456, "2025": 41126.23544937201, "2026": 26763.489769652537, "2027": 17416.726253295652, "2028": 11334.185339544245, "2029": 7375.884276003437, "2030": 4799.962875424651, "2031": 3123.644941178327, "2032": 2032.7569132887804, "2033": 1322.8458247769302, "2034": 860.8609640877198, "2035": 560.2176652861311, "2036": 364.5697105469675, "2037": 237.2489874634986, "2038": 154.39319401495877, "2039": 100.47359364097657, "2040": 65.38463747407164, "2041": 42.54999410981773, "2042": 27.690021214287235, "2043": 18.019679929186267, "2044": 11.726566124217296, "2045": 7.6312317203211375, "2046": 4.966133900781857, "2047": 3.2317831281182654, "2048": 2.103129395191204, "2049": 1.368641730453227, "2050": 0.890663308981853}, "approximatedHistoricalEmission": {"2021": 66972.2779992721, "2022": 65777.96392579842, "2023": 64487.38816467626, "2024": 63196.81240355456}, "totalApproximatedHistoricalEmission": 195349.89729188802, "trend": {"2024": 63196.81240355456, "2025": 61906.2366424324, "2026": 60615.6608813107, "2027": 59325.08512018854, "2028": 58034.50935906684, "2029": 56743.93359794514, "2030": 55453.35783682298, "2031": 54162.78207570128, "2032": 52872.20631457912, "2033": 51581.63055345742, "2034": 50291.05479233526, "2035": 49000.47903121356, "2036": 47709.903270091396, "2037": 46419.3275089697, "2038": 45128.751747848, "2039": 43838.17598672584, "2040": 42547.60022560414, "2041": 41257.024464481976, "2042": 39966.44870336028, "2043": 38675.872942238115, "2044": 37385.29718111642, "2045": 36094.721419994254, "2046": 34804.145658872556, "2047": 33513.56989775039, "2048": 32222.994136628695, "2049": 30932.418375506997, "2050": 29641.842614384834}, "trendEmission": 1206902.5152332117, "historicalEmissionChangePercent": -1.8272760046986134, "neededEmissionChangePercent": 34.9235604056213, "hitNetZero": "2072-12-07", "budgetRunsOut": "2026-05-21", "electricCarChangePercent": 0.07938435305447579, "electricCarChangeYearly": {"2015": 0.02406832298136646, "2016": 0.029432878679109833, "2017": 0.046984572230014024, "2018": 0.06416382252559727, "2019": 0.11328125, "2020": 0.29809104258443464, "2021": 0.44616376531270147, "2022": 0.564381806534273}, "climatePlanLink": "https://www.osteraker.se/download/18.4d8ccb9818167a07633123/1655380479130/Milj%C3%B6-%20och%20klimatprogram%202030.pdf", "climatePlanYear": 2022, "climatePlanComment": "Miljö– och klimatprogram 2030.", "bicycleMetrePerCapita": 2.148302014, "totalConsumptionEmission": 6228.0, "electricVehiclePerChargePoints": 37.98765432098765, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Östhammar", "län": "Uppsala län", "emissions": {"1990": 153908.862420939, "2000": 122080.551389608, "2005": 113659.565863601, "2010": 99278.9816251339, "2015": 85429.9734034396, "2016": 84621.4239772734, "2017": 85757.363239689, "2018": 83168.1694551649, "2019": 79385.6821941944, "2020": 64916.9934092557, "2021": 66856.4788173378}, "budget": 162968.05331477217, "emissionBudget": {"2024": 56840.64936951455, "2025": 40103.66507543318, "2026": 28294.96091832306, "2027": 19963.382694911506, "2028": 14085.075069512126, "2029": 9937.661504849064, "2030": 7011.472476900309, "2031": 4946.912940266948, "2032": 3490.2722244442643, "2033": 2462.5459044504114, "2034": 1737.4382115684546, "2035": 1225.8417329653387, "2036": 864.8871334094404, "2037": 610.217235570613, "2038": 430.5360320479671, "2039": 303.76276526879326, "2040": 214.31845582082158, "2041": 151.2114246944547, "2042": 106.68654209249554, "2043": 75.27221098969805, "2044": 53.10797066011723, "2045": 37.470090363386426, "2046": 26.43685409909135, "2047": 18.652403767341184, "2048": 13.160119770524496, "2049": 9.285063444626312, "2050": 6.55103484421401}, "approximatedHistoricalEmission": {"2021": 66856.4788173378, "2022": 64090.72265093122, "2023": 60465.68601022288, "2024": 56840.64936951455}, "totalApproximatedHistoricalEmission": 186404.97275458026, "trend": {"2024": 56840.64936951455, "2025": 53215.61272880621, "2026": 49590.57608809788, "2027": 45965.53944738954, "2028": 42340.50280668028, "2029": 38715.46616597194, "2030": 35090.42952526361, "2031": 31465.392884555273, "2032": 27840.356243846938, "2033": 24215.319603138603, "2034": 20590.28296243027, "2035": 16965.246321721934, "2036": 13340.209681012668, "2037": 9715.173040304333, "2038": 6090.136399595998, "2039": 2465.0997588876635, "2040": 0, "2041": 0, "2042": 0, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 446025.6683424604, "historicalEmissionChangePercent": -3.734909014500554, "neededEmissionChangePercent": 29.445448776061937, "hitNetZero": "2039-09-02", "budgetRunsOut": "2027-03-12", "electricCarChangePercent": 0.058000469617847335, "electricCarChangeYearly": {"2015": 0.002136752136752137, "2016": 0.0021008403361344537, "2017": 0.07142857142857142, "2018": 0.049586776859504134, "2019": 0.05869074492099323, "2020": 0.1813031161473088, "2021": 0.3234567901234568, "2022": 0.42021276595744683}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 0.5546263587, "totalConsumptionEmission": 6300.2, "electricVehiclePerChargePoints": 31.904761904761905, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Östra Göinge", "län": "Skåne län", "emissions": {"1990": 63752.7851120181, "2000": 56935.1280746756, "2005": 50287.2145338582, "2010": 43598.5245878435, "2015": 35702.2543050264, "2016": 35074.6418201926, "2017": 35454.0625461913, "2018": 33678.0737075914, "2019": 33423.2702764887, "2020": 30411.5732214922, "2021": 30157.3238665339}, "budget": 69289.08003751052, "emissionBudget": {"2024": 27416.23122423468, "2025": 18457.23172442208, "2026": 12425.829069747444, "2027": 8365.351336315583, "2028": 5631.7451807197, "2029": 3791.419213066636, "2030": 2552.4698273677614, "2031": 1718.3808630734761, "2032": 1156.853161951873, "2033": 778.8199153500593, "2034": 524.31931769324, "2035": 352.98371483315174, "2036": 237.63668194714379, "2037": 159.98243044595046, "2038": 107.7038184579862, "2039": 72.50866534591071, "2040": 48.81448611124358, "2041": 32.86302461832832, "2042": 22.124137179354623, "2043": 14.894473397251158, "2044": 10.027298962349585, "2045": 6.750606201283586, "2046": 4.544661952926387, "2047": 3.0595700075719865, "2048": 2.059772262094508, "2049": 1.3866856326849728, "2050": 0.9335483729349762}, "approximatedHistoricalEmission": {"2021": 30157.3238665339, "2022": 29415.63985156198, "2023": 28415.935537898215, "2024": 27416.23122423468}, "totalApproximatedHistoricalEmission": 86618.35293484449, "trend": {"2024": 27416.23122423468, "2025": 26416.52691057115, "2026": 25416.822596907383, "2027": 24417.11828324385, "2028": 23417.413969580084, "2029": 22417.70965591655, "2030": 21418.005342253018, "2031": 20418.301028589252, "2032": 19418.59671492572, "2033": 18418.892401262186, "2034": 17419.18808759842, "2035": 16419.483773934888, "2036": 15419.779460271122, "2037": 14420.075146607589, "2038": 13420.370832944056, "2039": 12420.66651928029, "2040": 11420.962205616757, "2041": 10421.257891953224, "2042": 9421.553578289459, "2043": 8421.849264625926, "2044": 7422.14495096216, "2045": 6422.440637298627, "2046": 5422.736323635094, "2047": 4423.032009971328, "2048": 3423.327696307795, "2049": 2423.623382644262, "2050": 1423.9190689804964}, "trendEmission": 374921.9538117978, "historicalEmissionChangePercent": -2.714802558596018, "neededEmissionChangePercent": 32.67772082361656, "hitNetZero": "2051-05-28", "budgetRunsOut": "2026-08-28", "electricCarChangePercent": 0.07524982951593966, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0036496350364963502, "2017": 0.022988505747126436, "2018": 0.021164021164021163, "2019": 0.18695652173913044, "2020": 0.1989795918367347, "2021": 0.410958904109589, "2022": 0.5129533678756477}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 3.503834265, "totalConsumptionEmission": 5512.2, "electricVehiclePerChargePoints": 205.0, "procurementScore": "1", "procurementLink": ""}, {"kommun": "Överkalix", "län": "Norrbottens län", "emissions": {"1990": 42903.3671766866, "2000": 38629.1193216892, "2005": 35728.9451486091, "2010": 40047.879300277, "2015": 30027.6871520633, "2016": 29083.2599581415, "2017": 24785.6885661394, "2018": 25610.2866042335, "2019": 25709.0948827391, "2020": 25206.2475790876, "2021": 25041.7369677682}, "budget": 54940.419598806875, "emissionBudget": {"2024": 21825.89974551159, "2025": 14670.408480510789, "2026": 9860.80241797602, "2027": 6627.997063308506, "2028": 4455.047693800471, "2029": 2994.4868358359863, "2030": 2012.7621579614504, "2031": 1352.8900698575405, "2032": 909.3531165018042, "2033": 611.2271121766892, "2034": 410.8399431202847, "2035": 276.1485141946491, "2036": 185.61486819597212, "2037": 124.76213893775746, "2038": 83.85961460743616, "2039": 56.3667393167741, "2040": 37.887239478482314, "2041": 25.466133622398434, "2042": 17.11721335734093, "2043": 11.505436885912934, "2044": 7.733447914228125, "2045": 5.198083065868201, "2046": 3.493922485719952, "2047": 2.3484608040176735, "2048": 1.578531913787114, "2049": 1.0610196255273132, "2050": 0.7131706593459128}, "approximatedHistoricalEmission": {"2021": 25041.7369677682, "2022": 23382.218959396938, "2023": 22604.059352454264, "2024": 21825.89974551159}, "totalApproximatedHistoricalEmission": 69420.0966684911, "trend": {"2024": 21825.89974551159, "2025": 21047.74013856915, "2026": 20269.580531626474, "2027": 19491.4209246838, "2028": 18713.261317741126, "2029": 17935.10171079845, "2030": 17156.942103855778, "2031": 16378.782496913103, "2032": 15600.622889970662, "2033": 14822.463283027988, "2034": 14044.303676085314, "2035": 13266.14406914264, "2036": 12487.984462199965, "2037": 11709.824855257291, "2038": 10931.66524831485, "2039": 10153.505641372176, "2040": 9375.346034429502, "2041": 8597.186427486828, "2042": 7819.026820544153, "2043": 7040.867213601479, "2044": 6262.707606658805, "2045": 5484.547999716364, "2046": 4706.38839277369, "2047": 3928.2287858310156, "2048": 3150.0691788883414, "2049": 2371.9095719456673, "2050": 1593.7499650029931}, "trendEmission": 304455.4462366919, "historicalEmissionChangePercent": -2.8029697365205237, "neededEmissionChangePercent": 32.78440453054999, "hitNetZero": "2052-01-11", "budgetRunsOut": "2026-08-23", "electricCarChangePercent": 0.037733516158574704, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.03278688524590164, "2017": 0.0, "2018": 0.027777777777777776, "2019": 0.1111111111111111, "2020": 0.18181818181818182, "2021": 0.21428571428571427, "2022": 0.23333333333333334}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 1.802995124, "totalConsumptionEmission": 6722.3, "electricVehiclePerChargePoints": 2.5294117647058822, "procurementScore": "0", "procurementLink": ""}, {"kommun": "Övertorneå", "län": "Norrbottens län", "emissions": {"1990": 50609.2008537337, "2000": 44780.2485890506, "2005": 34956.7255684865, "2010": 33716.1937636096, "2015": 19603.9932980453, "2016": 18713.0805274669, "2017": 17304.5657188851, "2018": 15938.8941526879, "2019": 16092.2741742944, "2020": 15908.1170792137, "2021": 15397.0438344427}, "budget": 35239.18744018546, "emissionBudget": {"2024": 12827.624076739652, "2025": 8913.6614070391, "2026": 6193.926420358012, "2027": 4304.036551187873, "2028": 2990.789585919954, "2029": 2078.240331109308, "2030": 1444.1279634591197, "2031": 1003.4958631234906, "2032": 697.3093609335581, "2033": 484.5464368254502, "2034": 336.7017031377716, "2035": 233.96733167334185, "2036": 162.57925570380834, "2037": 112.97309840720789, "2038": 78.50276413478322, "2039": 54.55001291181917, "2040": 37.9057214287459, "2041": 26.33993358271727, "2042": 18.30309713129, "2043": 12.718458972016768, "2044": 8.837804742146012, "2045": 6.141215129297471, "2046": 4.267408521084194, "2047": 2.965337494683272, "2048": 2.0605541780050682, "2049": 1.4318382066482604, "2050": 0.994955955005549}, "approximatedHistoricalEmission": {"2021": 15397.0438344427, "2022": 14216.414564732928, "2023": 13522.019320736174, "2024": 12827.624076739652}, "totalApproximatedHistoricalEmission": 41850.76784106028, "trend": {"2024": 12827.624076739652, "2025": 12133.228832742898, "2026": 11438.833588746376, "2027": 10744.438344749622, "2028": 10050.0431007531, "2029": 9355.64785675658, "2030": 8661.252612759825, "2031": 7966.857368763303, "2032": 7272.462124766549, "2033": 6578.066880770028, "2034": 5883.671636773273, "2035": 5189.276392776752, "2036": 4494.881148779998, "2037": 3800.485904783476, "2038": 3106.0906607869547, "2039": 2411.6954167902004, "2040": 1717.300172793679, "2041": 1022.9049287969247, "2042": 328.5096848004032, "2043": 0, "2044": 0, "2045": 0, "2046": 0, "2047": 0, "2048": 0, "2049": 0, "2050": 0}, "trendEmission": 118569.45869625977, "historicalEmissionChangePercent": -3.8930264093669433, "neededEmissionChangePercent": 30.511984497563695, "hitNetZero": "2042-06-17", "budgetRunsOut": "2026-12-27", "electricCarChangePercent": 0.06810241001823615, "electricCarChangeYearly": {"2015": 0.0, "2016": 0.0, "2017": 0.014492753623188406, "2018": 0.0196078431372549, "2019": 0.0392156862745098, "2020": 0.2413793103448276, "2021": 0.3409090909090909, "2022": 0.47368421052631576}, "climatePlanLink": "Saknar plan", "climatePlanYear": "Saknar plan", "climatePlanComment": "Plan saknas. ", "bicycleMetrePerCapita": 2.960456236, "totalConsumptionEmission": 7105.0, "electricVehiclePerChargePoints": 26.333333333333332, "procurementScore": "0", "procurementLink": ""}] \ No newline at end of file diff --git a/data/output/consumption_emissions.xlsx b/data/output/consumption_emissions.xlsx index 9d0d2edc..bdffb165 100644 Binary files a/data/output/consumption_emissions.xlsx and b/data/output/consumption_emissions.xlsx differ diff --git a/data/tests/test_climate_requirements_in_procurements.py b/data/tests/test_climate_requirements_in_procurements.py new file mode 100644 index 00000000..07952343 --- /dev/null +++ b/data/tests/test_climate_requirements_in_procurements.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +import unittest +import pandas as pd + +from facts.procurements.climate_requirements_in_procurements import ( + calculate_procurement_score, +) + + +class TestProcurementCalculations(unittest.TestCase): + + def test_calculate_procurement_score(self): + # Sample data frame for cleaned Greenpeace data + df_cleaned_greenpeace_input = pd.DataFrame( + { + "Kommun": ["Ale", "Alingsås", "Bräcke"], + "hasLink": [1, 0, 0], + } + ) + + # Sample data frame for NUR data + df_cleaned_nur_input = pd.DataFrame( + { + + "Kommun": ["Ale", "Alingsås", "Bräcke"], + "BINÄRT_UTFALL": [0, 0, 1], + } + ) + + df_expected = pd.DataFrame( + { + "Kommun": ["Ale", "Alingsås", "Bräcke"], + "procurementScore": [2, 0, 1], + } + ) + + df_result = calculate_procurement_score(df_cleaned_greenpeace_input, df_cleaned_nur_input) + print(df_result) + pd.testing.assert_frame_equal(df_result, df_expected) + +if __name__ == "__main__": + unittest.main() diff --git a/package-lock.json b/package-lock.json index 93c7f60b..24d3c2e1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,6 @@ "babel-plugin-styled-components": "^2.1.4", "chart.js": "^4.4.1", "deck.gl": "8.6.6", - "jotai": "2.6.4", "jsdom": "^24.0.0", "md5": "^2.3.0", "next": "14.1.0", @@ -8273,26 +8272,6 @@ "set-function-name": "^2.0.1" } }, - "node_modules/jotai": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/jotai/-/jotai-2.6.4.tgz", - "integrity": "sha512-RniwQPX4893YlNR1muOtyUGHYaTD1fhEN4qnOuZJSrDHj6xdEMrqlRSN/hCm2fshwk78ruecB/P2l+NCVWe6TQ==", - "engines": { - "node": ">=12.20.0" - }, - "peerDependencies": { - "@types/react": ">=17.0.0", - "react": ">=17.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "react": { - "optional": true - } - } - }, "node_modules/js-cookie": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", diff --git a/package.json b/package.json index 97a1488a..959b06a1 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,6 @@ "babel-plugin-styled-components": "^2.1.4", "chart.js": "^4.4.1", "deck.gl": "8.6.6", - "jotai": "2.6.4", "jsdom": "^24.0.0", "md5": "^2.3.0", "next": "14.1.0", diff --git a/pages/[dataset]/index.tsx b/pages/[dataset]/index.tsx index a15dd574..3738d46a 100644 --- a/pages/[dataset]/index.tsx +++ b/pages/[dataset]/index.tsx @@ -1,6 +1,6 @@ import { GetServerSideProps } from 'next' import { ParsedUrlQuery } from 'querystring' -import { defaultDataView } from '../../utils/datasetDescriptions' +import { defaultDataView } from '../../utils/datasetDefinitions' import { isValidDataset, normalizeString } from '../../utils/shared' interface Params extends ParsedUrlQuery { diff --git a/pages/_app.tsx b/pages/_app.tsx index 146fdff3..0fc5c456 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,7 +1,6 @@ /* eslint-disable react/jsx-props-no-spreading */ import type { AppProps } from 'next/app' import Head from 'next/head' -import { Provider } from 'jotai' import Script from 'next/script' import CookieConsent from 'react-cookie-consent' import { NextPage } from 'next' @@ -21,7 +20,7 @@ type AppPropsWithLayout = AppProps & { function MyApp({ Component, pageProps }: AppPropsWithLayout) { const getLayout = Component.getLayout ?? ((page) => page) return ( - + <>