— Select Canton —
Vaud (VD)
Genève (GE)
Neuchâtel (NE)
Fribourg (FR)
Jura (JU)
Valais (VS)
Zürich (ZH)
Bern (BE)
Aargau (AG)
Luzern (LU)
Basel-Stadt (BS)
Ticino (TI)
St. Gallen (SG)
Others / Autres / Andere
Vaud Specifics
Passenger Car
Delivery Van / Truck
Estimated Annual Tax
CHF 0.00
*Estimates only. Subject to change. Not legally binding.
// — TRANSLATION DATA —
const i18n = {
en: {
title: “Swiss Car Tax Calculator”,
subtitle: “Estimate for all 26 Cantons”,
canton: “Canton”,
select_canton: “– Select Canton –“,
weight: “Weight (kg)”,
power: “Power (kW)”,
engine: “Engine (cc)”,
co2: “CO2 (g/km)”,
vd_specs: “Vaud Specific Rules”,
category: “Category”,
cat_passenger: “Passenger Car”,
cat_delivery: “Delivery / Van”,
year: “1st Registration Year”,
unknown_co2: “Unknown CO2 (+15% Malus)”,
calc_btn: “Calculate Tax”,
est_label: “Estimated Annual Tax”,
disclaimer: “*Estimates only. Consult official cantonal office for binding decisions.”,
// Logic Strings
txt_weight: “Weight Tax”,
txt_power: “Power Tax”,
txt_engine: “Engine Tax”,
txt_base: “Base Tax”,
txt_bonus: “Eco Bonus”,
txt_malus: “CO2 Malus”,
txt_total: “Total”,
txt_unknown: “Unknown”
},
de: {
title: “Schweizer Motorfahrzeugsteuer”,
subtitle: “Rechner für alle 26 Kantone”,
canton: “Kanton”,
select_canton: “– Kanton wählen –“,
weight: “Leergewicht (kg)”,
power: “Leistung (kW)”,
engine: “Hubraum (ccm)”,
co2: “CO2 (g/km)”,
vd_specs: “Spezifische Regeln (Waadt)”,
category: “Fahrzeugart”,
cat_passenger: “Personenwagen”,
cat_delivery: “Lieferwagen”,
year: “1. Inverkehrsetzung”,
unknown_co2: “CO2 Unbekannt (+15% Malus)”,
calc_btn: “Steuer Berechnen”,
est_label: “Geschätzte Jahressteuer”,
disclaimer: “*Nur Schätzungen. Für verbindliche Auskünfte kontaktieren Sie das Strassenverkehrsamt.”,
// Logic Strings
txt_weight: “Gewichtsabgabe”,
txt_power: “Leistungsabgabe”,
txt_engine: “Hubraumsteuer”,
txt_base: “Grundsteuer”,
txt_bonus: “Öko-Bonus”,
txt_malus: “CO2-Malus”,
txt_total: “Total”,
txt_unknown: “Unbekannt”
},
fr: {
title: “Calculateur Taxe Automobile”,
subtitle: “Estimation pour les 26 cantons”,
canton: “Canton”,
select_canton: “– Choisir le canton –“,
weight: “Poids à vide (kg)”,
power: “Puissance (kW)”,
engine: “Cylindrée (cc)”,
co2: “CO2 (g/km)”,
vd_specs: “Règles Spécifiques (Vaud)”,
category: “Catégorie”,
cat_passenger: “Voiture de tourisme”,
cat_delivery: “Voiture de livraison”,
year: “1ère Mise en circulation”,
unknown_co2: “CO2 Inconnu (Malus +15%)”,
calc_btn: “Calculer la taxe”,
est_label: “Taxe Annuelle Estimée”,
disclaimer: “*Estimations uniquement. Contactez le service des automobiles pour le montant exact.”,
// Logic Strings
txt_weight: “Taxe poids”,
txt_power: “Taxe puissance”,
txt_engine: “Taxe cylindrée”,
txt_base: “Taxe de base”,
txt_bonus: “Bonus Éco”,
txt_malus: “Malus CO2”,
txt_total: “Total”,
txt_unknown: “Inconnu”
}
};
let currentLang = ‘en’;
function setLang(lang) {
currentLang = lang;
// Update Buttons
document.querySelectorAll(‘.lang-btn’).forEach(btn => btn.classList.remove(‘active’));
event.target.classList.add(‘active’);
// Update Text Fields
const t = i18n[lang];
document.getElementById(‘t_title’).innerText = t.title;
document.getElementById(‘t_subtitle’).innerText = t.subtitle;
document.getElementById(‘t_canton’).innerText = t.canton;
document.getElementById(‘t_select_canton’).innerText = t.select_canton;
document.getElementById(‘t_weight’).innerText = t.weight;
document.getElementById(‘t_power’).innerText = t.power;
document.getElementById(‘t_engine’).innerText = t.engine;
document.getElementById(‘t_co2’).innerText = t.co2;
document.getElementById(‘t_vd_specs’).innerText = t.vd_specs;
document.getElementById(‘t_category’).innerText = t.category;
document.getElementById(‘t_cat_passenger’).innerText = t.cat_passenger;
document.getElementById(‘t_cat_delivery’).innerText = t.cat_delivery;
document.getElementById(‘t_year’).innerText = t.year;
document.getElementById(‘t_unknown_co2’).innerText = t.unknown_co2;
document.getElementById(‘t_calc_btn’).innerText = t.calc_btn;
document.getElementById(‘t_est_label’).innerText = t.est_label;
document.getElementById(‘t_disclaimer’).innerText = t.disclaimer;
// Re-calculate if result is visible to update breakdown labels
if(document.getElementById(‘resultBox’).style.display === ‘block’) calculate();
}
function updateUI() {
const canton = document.getElementById(‘canton’).value;
const vdSection = document.getElementById(‘vd-section’);
if (canton === ‘VD’) {
vdSection.style.display = ‘block’;
} else {
vdSection.style.display = ‘none’;
}
}
function toggleCo2() {
const isUnknown = document.getElementById(‘vd_unknown_co2’).checked;
const co2Input = document.getElementById(‘co2’);
co2Input.disabled = isUnknown;
if(isUnknown) co2Input.value = ”;
}
function calculate() {
const t = i18n[currentLang];
const canton = document.getElementById(‘canton’).value;
const weight = parseFloat(document.getElementById(‘weight’).value) || 0;
const kw = parseFloat(document.getElementById(‘power’).value) || 0;
const cc = parseFloat(document.getElementById(‘cc’).value) || 0;
let co2 = parseFloat(document.getElementById(‘co2’).value) || 0;
if (!canton) return;
let total = 0;
let rows = [];
// — VAUD (VD) LOGIC —
if (canton === ‘VD’) {
const type = document.getElementById(‘vd_type’).value;
const year = parseInt(document.getElementById(‘vd_year’).value) || new Date().getFullYear();
const co2Unknown = document.getElementById(‘vd_unknown_co2’).checked;
let wTax = 0;
let pTax = 0;
if (type === ‘passenger’) {
wTax = (weight <= 2500) ? weight * 0.15 : (2500 * 0.15) + ((weight – 2500) * 0.30);
pTax = (kw <= 100) ? kw * 1.60 : (100 * 1.60) + ((kw – 100) * 4.00);
} else {
wTax = (weight <= 2500) ? weight * 0.10 : (2500 * 0.10) + ((weight – 2500) * 0.20);
pTax = (kw = 2021) {
if (co2 < 118) { modPct = -90; modLabel = t.txt_bonus + " (-90%)"; }
else if (co2 <= 124) { modPct = -75; modLabel = t.txt_bonus + " (-75%)"; }
else if (co2 = 248) { modPct = 25; modLabel = t.txt_malus + ” (+25%)”; }
else if (co2 >= 223) { modPct = 15; modLabel = t.txt_malus + ” (+15%)”; }
else if (co2 >= 187) { modPct = 10; modLabel = t.txt_malus + ” (+10%)”; }
} else {
if (co2 < 95) { modPct = -90; modLabel = t.txt_bonus + " (-90%)"; }
else if (co2 <= 100) { modPct = -75; modLabel = t.txt_bonus + " (-75%)"; }
else if (co2 = 200) { modPct = 25; modLabel = t.txt_malus + ” (+25%)”; }
else if (co2 >= 180) { modPct = 15; modLabel = t.txt_malus + ” (+15%)”; }
else if (co2 >= 150) { modPct = 10; modLabel = t.txt_malus + ” (+10%)”; }
}
}
if (modPct !== 0) {
rows.push({ label: modLabel, val: base * (modPct / 100), color: modPct < 0 ? 'green' : 'red' });
}
total = base * (1 + (modPct/100));
}
// — GENEVA (GE) LOGIC —
else if (canton === 'GE') {
let geBase = kw * 5.5;
if (geBase 0 && co2 200) { mod = 0.5; rows.push({ label: t.txt_malus + ” (+50%)”, val: geBase * 0.5, color:’red’}); }
total = geBase * (1 + mod);
}
// — ZURICH (ZH) LOGIC —
else if (canton === ‘ZH’) {
let zhW = 50 + (weight * 0.15);
let zhC = (cc / 100) * 8;
rows.push({ label: t.txt_weight, val: zhW });
rows.push({ label: t.txt_engine, val: zhC });
total = zhW + zhC;
}
// — BERN (BE) LOGIC —
else if (canton === ‘BE’) {
if (weight 160) {
rows.push({ label: t.txt_malus + ” (+20%)”, val: base * 0.2, color: ‘red’});
total = base * 1.2;
} else {
total = base;
}
}
// — NEUCHATEL (NE) LOGIC —
else if (canton === ‘NE’) {
total = (co2 * 3.5) – 100;
if (total 0) total = 150;
if (co2 === 0) total = 100; // EV
rows.push({ label: “CO2 Tax”, val: total });
}
// — FALLBACK —
else {
let taxHp = Math.ceil(((cc / 1000) * 5.093) * 10) / 10;
total = 120 + (taxHp * 24);
rows.push({ label: “Standard Est.”, val: total });
}
// — RENDER —
if(total {
let tr = document.createElement(‘tr’);
let valStr = “CHF ” + Math.abs(row.val).toFixed(2);
if (row.val < 0) valStr = "- " + valStr;
else valStr = "+ " + valStr;
tr.innerHTML = `
${row.label}
${valStr}
`;
table.appendChild(tr);
});
// Add Total Row
let trTotal = document.createElement(‘tr’);
trTotal.innerHTML = `
${t.txt_total}
CHF ${total.toFixed(2)}
`;
table.appendChild(trTotal);
}
Calculate Your Vehicle Tax by Canton
Owning a car in Switzerland comes with the freedom to explore beautiful mountain passes and scenic lakes. However, it also comes with administrative complexities, specifically regarding the annual motor vehicle tax. Because Swiss car tax rates by canton vary significantly, finding accurate information can be a headache.
Whether you are a resident buying a new vehicle or an expat bringing a car across the border, our Swiss car tax calculator widget is here to simplify the process.
Why You Need a Vehicle Tax Calculator for Switzerland
In Switzerland, there is no single federal road tax. Instead, the 26 different cantons set their own rules. A Zurich car tax calculator might focus on engine capacity and total weight, while a Geneva car tax calculator places a heavy emphasis on CO2 emissions. Meanwhile, a Vaud car tax calculator uses its own unique formula.
Trying to figure out how to calculate Swiss motor vehicle tax manually requires navigating dozens of different government websites. Our online car tax calculator consolidates this data into one easy-to-use widget.
Key Features of Our Widget
Our tool serves as a comprehensive Swiss auto tax guide for all drivers. Here is what it covers:
Environmental Factors: Many cantons are shifting towards eco-friendly taxation. Our tool functions as a co2 car tax calculator, helping you see how emissions impact your bill.
Going Electric: Are you considering a Tesla or an ID.4? You can check for Electric car tax exemptions Switzerland to see how much you could save.
Vehicle Types: Whether you need a used car tax calculator for a second-hand purchase or an Import car tax calculator Switzerland for bringing your foreign vehicle into the country, we have the data you need.
Calculate Car Tax in Switzerland in Seconds
Stop guessing and start budgeting accurately. Whether you are in Bern, Ticino, or Basel, our Vehicle tax calculator Switzerland provides instant estimates.
Ready to see what you owe? Use the car tax calculator widget to get started.
Calculateur impôt voiture Suisse | Taxe automobile Suisse | Impôt véhicules moteur | Taxe sur les véhicules Suisse | Calculer taxe automobile en Suisse | Impôt sur les voitures par canton | Calculateur taxe routière Suisse | Taxe voiture Genève calcul | Exonération impôt voiture électrique Suisse | Guide impôt véhicules automobiles Suisse | Calcul impôt moto Suisse
How Swiss Car Tax is Calculated: The Formula Explained
Switzerland has no federal vehicle tax — each of the 26 cantons sets its own formula. Most cantons use one or more of the following factors:
Engine power (kW) — the most common basis, used by Zurich, Bern, Aargau and others
Engine displacement (cc) — used by some older cantonal systems
Vehicle weight (kg) — used by cantons such as Valais and Ticino
CO₂ emissions — used as a bonus/malus modifier in several cantons to incentivise low-emission vehicles
Vehicle type — passenger car, van, motorcycle, campervan each have different rates
The typical formula is: Annual tax = Base rate × (kW or kg) × cantonal coefficient. Electric vehicles receive a discount of 25–50% in most cantons.
Swiss Car Tax by Canton: Comparison Table 2025
The table below shows approximate annual car tax for a typical mid-size petrol car (132 kW / 1,500 kg) in each canton, to help you compare costs across Switzerland.
Canton
Tax Basis
Approx. Annual Tax (132 kW / 1,500 kg)
EV Discount
Zurich (ZH)
kW
CHF 390–440
50%
Bern (BE)
kW + CO₂
CHF 420–520
50%
Vaud (VD)
kW
CHF 460–560
50%
Aargau (AG)
kW
CHF 340–400
50%
St. Gallen (SG)
kW
CHF 380–450
50%
Geneva (GE)
kW + CO₂
CHF 500–650
60%
Lucerne (LU)
kW
CHF 360–420
50%
Ticino (TI)
Weight (kg)
CHF 280–360
50%
Valais (VS)
Weight (kg)
CHF 260–340
50%
Basel-Stadt (BS)
kW + CO₂
CHF 480–600
60%
Basel-Landschaft (BL)
kW
CHF 400–480
50%
Solothurn (SO)
kW
CHF 320–400
50%
Fribourg (FR)
kW
CHF 360–440
50%
Thurgau (TG)
kW
CHF 300–380
50%
Graubünden (GR)
kW
CHF 340–420
50%
Schwyz (SZ)
kW
CHF 280–340
50%
Zug (ZG)
kW
CHF 260–320
50%
Neuchâtel (NE)
kW
CHF 400–480
50%
Jura (JU)
kW
CHF 380–460
50%
Schaffhausen (SH)
kW
CHF 300–380
50%
Nidwalden (NW)
kW
CHF 240–300
50%
Obwalden (OW)
kW
CHF 240–300
50%
Uri (UR)
kW
CHF 260–320
50%
Appenzell AR
kW
CHF 320–400
50%
Appenzell IR
kW
CHF 280–360
50%
Glarus (GL)
kW
CHF 280–340
50%
Note: Figures are estimates based on current cantonal tariffs. Always confirm with your cantonal motor vehicle office (Strassenverkehrsamt) for exact amounts, as rates are updated annually.
Which Canton Has the Lowest Car Tax in Switzerland?
Based on 2025 tariffs, Nidwalden, Obwalden and Zug consistently have the lowest annual vehicle tax in Switzerland. For a typical family car, annual tax in Zug can be 40–50% lower than in Geneva or Basel-Stadt. If you are relocating within Switzerland, the canton of registration can make a meaningful difference to your running costs.
Frequently Asked Questions: Swiss Car Tax
When is car tax due in Switzerland?
Car tax is billed annually by the cantonal motor vehicle office, usually at the start of the calendar year or when you first register the vehicle. Most cantons allow payment in one or two instalments.
Do electric cars pay vehicle tax in Switzerland?
Yes, but at a reduced rate. Most cantons apply a 50% discount on vehicle tax for fully electric cars. Geneva and Basel-Stadt offer up to 60% off. Plug-in hybrids typically receive a smaller discount of 25–30% depending on the canton.
Is car tax deductible in Switzerland?
If you use the vehicle for professional purposes and declare actual costs in your tax return, the annual vehicle tax may be deductible as a business expense. For private use, it is generally not deductible at the federal level, but cantonal rules vary.
What happens if I move canton?
You must re-register your vehicle in your new canton within 14 days of moving. You will receive a new number plate and be billed at the new canton’s tariff from the registration date. The old canton refunds any prepaid tax pro-rata.
Can I pay Swiss car tax monthly?
A few cantons offer monthly direct debit options, but most bill annually or semi-annually. Check with your Strassenverkehrsamt for available payment plans.
Find a Garage or Dealer Near You
Buying or selling a car in Switzerland? Use the CarGPT.ch Swiss Garage Directory to find trusted mechanics, used car dealers and authorised service centres in your canton.
Der Fahrzeugsteuerrechner oben deckt alle 26 Schweizer Kantone ab. Geben Sie einfach Ihren Kanton, die Motorleistung (kW oder PS) und das Leergewicht Ihres Fahrzeugs ein, um die genaue Motorfahrzeugsteuer sofort zu berechnen. Die Steuer variiert je nach Kanton erheblich — zum Beispiel zahlen Autofahrer in Zürich nach kW, während Bern das Leergewicht als Basis verwendet.
Taxe véhicule Suisse — Calculez par canton
La taxe véhicule (Motorfahrzeugsteuer en allemand) est perçue annuellement par chaque canton. Le montant dépend du canton de domicile, de la puissance du moteur (kW ou CV), du poids à vide et du type de carburant. Notre calculateur couvre les 26 cantons suisses et intègre les tarifs 2026 officiels.
{“@context”:”https://schema.org”,”@type”:”FAQPage”,”mainEntity”:[{“@type”:”Question”,”name”:”How is Swiss car tax calculated?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Swiss vehicle tax (Motorfahrzeugsteuer) is calculated by each canton independently based on engine power (kW), vehicle weight, or a combination of both. Use our free calculator above to get the exact amount for your canton and vehicle.”}},{“@type”:”Question”,”name”:”Which Swiss canton has the lowest car tax?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Cantons vary significantly. Nidwalden and Uri tend to have lower rates for standard vehicles, while urban cantons like Geneva and Basel-City can be higher. Enter your details in our calculator for a direct canton comparison.”}},{“@type”:”Question”,”name”:”Wie hoch ist die Motorfahrzeugsteuer in der Schweiz?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Die Motorfahrzeugsteuer variiert je nach Kanton erheblich. Ein durchschnittliches Fahrzeug (100 kW) zahlt zwischen CHF 200 und CHF 600 pro Jahr, je nach Kanton. Nutzen Sie unseren kostenlosen Rechner oben fuer eine genaue Berechnung.”}},{“@type”:”Question”,”name”:”Quand dois-je payer la taxe vehicule en Suisse?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”La taxe vehicule est due annuellement. La date limite varie selon le canton — generalement en debut d annee ou lors du renouvellement de l immatriculation. Vous recevez un avis de paiement par courrier de votre canton de domicile.”}},{“@type”:”Question”,”name”:”Does Swiss car tax depend on the vehicle registration canton?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Yes. Swiss vehicle tax is levied by the canton where your vehicle is registered (your main residence canton). Moving to a different canton means you will pay that canton s rates from the next tax period.”}},{“@type”:”Question”,”name”:”What is the difference between vehicle tax and vehicle registration in Switzerland?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Vehicle registration is a one-time process at the cantonal road office (Strassenverkehrsamt) when you first bring a vehicle to Switzerland or change residence. Vehicle tax is an annual fee. Both are managed by the canton, but they are separate payments.”}}]}
Fahrzeugsteuer Schweiz 2026 — Alle Kantone im Vergleich
Die Motorfahrzeugsteuer (auch Fahrzeugsteuer oder Autosteuer) wird in der Schweiz von jedem Kanton separat erhoben. Der Berechnungsmassstab variiert stark: Manche Kantone verwenden die Motorleistung in kW, andere den Hubraum (cm³), das Leergewicht oder eine Kombination aus kW und CO₂-Emissionen. Unser Fahrzeugsteuer-Rechner berechnet den Jahresbetrag automatisch nach Kanton und Fahrzeugdaten.
Autosteuer berechnen — Berechnungsgrundlagen nach Kanton
Kanton
Berechnungsbasis
Beispiel VW Golf 1.5 TSI (110 kW)
Elektro-Rabatt
Zürich (ZH)
Gewicht + Emissionen
CHF 280–360
50%
Bern (BE)
Leistung (kW)
CHF 340–440
50%
Luzern (LU)
Gewicht (kg)
CHF 260–340
50%
Aargau (AG)
Leistung (kW)
CHF 320–420
50%
St. Gallen (SG)
Hubraum (cm³)
CHF 300–400
Teilbefreiung
Schwyz (SZ)
Leistung (kW)
CHF 280–340
50%
Zug (ZG)
Leistung (kW)
CHF 260–320
50%
Nidwalden (NW)
Leistung (kW)
CHF 240–300
50%
Alle 26 Kantone sind im Rechner oben abgedeckt. Die günstigsten Kantone für die Motorfahrzeugsteuer sind typischerweise Nidwalden, Obwalden und Zug.
Calcul Taxe Véhicule Vaud 2026 — Plaques VD
Le canton de Vaud calcule la taxe sur les véhicules à moteur (taxe auto, ou "taxe de plaques") selon une formule combinant la cylindrée (cm³) et les émissions de CO₂ pour les véhicules immatriculés après 2020. Pour les véhicules plus anciens, la taxe est basée uniquement sur la cylindrée.
Comment calculer la taxe auto Vaud?
Cylindrée
CO₂ ≤ 130 g/km
CO₂ 131–160 g/km
CO₂ > 160 g/km
jusqu'à 1400 cm³
CHF 188
CHF 226
CHF 263
1401–1800 cm³
CHF 262
CHF 314
CHF 367
1801–2400 cm³
CHF 392
CHF 470
CHF 549
2401–3000 cm³
CHF 536
CHF 643
CHF 751
plus de 3000 cm³
CHF 680+
CHF 816+
CHF 952+
Véhicules électriques (VD): exonérés à 100% pendant les 3 premières années, puis taxe réduite de 50% les années suivantes. Hybrides rechargeables: réduction de 25%.
La taxe est payable en une fois, généralement en début d'année ou au moment de l'immatriculation. Utilisez le calculateur ci-dessus pour obtenir le montant exact pour Vaud selon votre véhicule.
Calcul Taxe Auto Genève 2026
À Genève, la taxe sur les véhicules dépend de la cylindrée, du type de carburant et de la puissance fiscale. Genève applique l'une des taxes les plus élevées de Suisse pour les véhicules à essence ou diesel de grande cylindrée, mais offre une réduction significative pour les véhicules propres:
Véhicules à essence jusqu'à 1400 cm³: env. CHF 250–350
Véhicules à essence 1401–2000 cm³: env. CHF 420–550
Véhicules diesel et gros moteurs: env. CHF 580–900+
Véhicules électriques: réduction jusqu'à 60% — parmi les meilleures de Suisse
Utilisez le calculateur en haut de page et sélectionnez "Genève (GE)" pour le calcul exact selon votre véhicule.
Geneva Car Tax Calculator — How Vehicle Tax Works in Canton Geneva
Geneva (GE) uses a cylinder capacity + fuel type model to calculate annual vehicle tax. Unlike cantons such as Bern or Aargau which use engine power in kW, Geneva bases its calculation on engine displacement (cm³). Petrol and diesel vehicles pay a higher base rate; electric vehicles receive a 60% discount — one of the most generous EV incentives in Switzerland.
Up to 1400 cm³: approx. CHF 250–350 per year
1401–2000 cm³ (e.g. VW Golf, Toyota Corolla): approx. CHF 420–550
Over 2000 cm³ (diesel, SUVs): approx. CHF 580–900+
Electric vehicles (GE): 60% reduction — approx. CHF 100–200 for a typical EV
Select "Geneva (GE)" in the calculator above for a precise estimate based on your vehicle's cylinder capacity and fuel type.
Calcolo Tassa Circolazione Svizzera 2026
In Svizzera, la tassa di circolazione (Motorfahrzeugsteuer in tedesco) è riscossa annualmente da ogni cantone. L'importo dipende dal cantone di immatricolazione, dalla potenza del motore (kW o cilindrata cm³) e dal peso a vuoto del veicolo. Il canton Ticino basa il calcolo sul peso del veicolo. Usate il calcolatore sopra selezionando "Ticino (TI)" per ottenere una stima precisa.
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.