diff --git a/scripts/setabus.json b/scripts/setabus.json
index c01ef0a..990af7a 100644
--- a/scripts/setabus.json
+++ b/scripts/setabus.json
@@ -884,7 +884,7 @@
{
"matricola": "4793",
"settore": "Urbano",
- "modello": "Iveco Urbanway Mild Hybrid 202",
+ "modello": "Iveco Urbanway Mild Hybrid 2022",
"link": "/setamodena_bus/urbano/urbanway.html#4793"
},
{
diff --git a/seta_menu/businservizio/index.html b/seta_menu/businservizio/index.html
index 4e8a645..6172014 100644
--- a/seta_menu/businservizio/index.html
+++ b/seta_menu/businservizio/index.html
@@ -38,7 +38,7 @@
diff --git a/seta_menu/businservizio/js/script.js b/seta_menu/businservizio/js/script.js
index 8ae3ff8..ac5865e 100644
--- a/seta_menu/businservizio/js/script.js
+++ b/seta_menu/businservizio/js/script.js
@@ -28,7 +28,6 @@ fetch(urlRoutes)
});
})
.catch(error => console.error('Errore nel caricamento dei dati:', error));
-
fetch(urlModels)
.then(response => {
if (!response.ok) throw new Error("Errore nel caricamento dei dati.");
@@ -36,14 +35,43 @@ fetch(urlModels)
})
.then(data => {
allresults = data;
- allresults.forEach(route => {
- const option = document.createElement('option');
- option.value = route;
- option.textContent = route;
- modelloSelect.appendChild(option);
- });
+ allresults.forEach(model => {
+ const option = document.createElement('option');
+ option.value = modelsDictionary(model);
+ option.textContent = model;
+ modelloSelect.appendChild(option);
+ });
})
.catch(error => console.error('Errore nel caricamento dei dati:', error));
+
+
+function modelsDictionary(model){
+ if(model=="Irisbus Citelis CNG EEV"){
+ return "Irisbus Citelis CNG";
+ }
+ if(model=="Irisbus Citelis CNG EEV"){
+ return "Irisbus Citelis CNG";
+ }
+ if(model=="Irisbus Citelis CNG EEV"){
+ return "Irisbus Citelis CNG";
+ }
+ if(model=="Irisbus Citelis CNG EEV"){
+ return "Irisbus Citelis CNG";
+ }
+ if(model=="Irisbus Citelis CNG EEV"){
+ return "Irisbus Citelis CNG";
+ }
+ if(model=="Irisbus Citelis CNG EEV"){
+ return "Irisbus Citelis CNG";
+ }
+ if(model=="Irisbus Citelis CNG EEV"){
+ return "Irisbus Citelis CNG";
+ }
+ if(model=="Irisbus Citelis CNG EEV"){
+ return "Irisbus Citelis CNG";
+ }
+}
+
caricadati();
var refreshGeneraleID=setInterval(caricadati, 60000);
function caricadati(){
@@ -105,6 +133,7 @@ function caricadati(){
});
}
+var intervalFiltrati = 0;
//FILTRI
//Filtro per linea
lineaSelect.addEventListener('change', function(event) {
@@ -113,7 +142,28 @@ lineaSelect.addEventListener('change', function(event) {
}
const selectedOption = event.target.value;
caricaFiltratiLinea(selectedOption);
- var intervalFiltrati = setInterval(function dummyFunc(){caricaFiltratiLinea(selectedOption);}, 60000);
+ intervalFiltrati = setInterval(function dummyFunc(){caricaFiltratiLinea(selectedOption);}, 60000);
+ clearInterval(refreshGeneraleID);
+ if(document.getElementById("reimposta-filtro")==undefined){
+ const reimpostaFiltro = document.createElement('p');
+ reimpostaFiltro.setAttribute("style","margin-bottom: 0; font-size: 14px;");
+ reimpostaFiltro.setAttribute("id","reimposta-filtro");
+ reimpostaFiltro.innerHTML = `
+ Reimposta il filtro
+ `;
+ contentBackground.appendChild(reimpostaFiltro);
+ }
+});
+
+//Filtro per modello
+modelloSelect.addEventListener('change', function(event) {
+ if(intervalFiltrati!=undefined){
+ //alert("Non รจ possibile usare due filtri allo stesso momento")
+ clearInterval(intervalFiltrati);
+ }
+ const selectedOption = event.target.value;
+ caricaFiltratiModello(selectedOption);
+ intervalFiltrati = setInterval(function dummyFunc(){caricaFiltratiModello(selectedOption);}, 60000);
clearInterval(refreshGeneraleID);
if(document.getElementById("reimposta-filtro")==undefined){
const reimpostaFiltro = document.createElement('p');
@@ -195,4 +245,73 @@ function caricaFiltratiLinea(selectedOption){
}
});
});
+}
+
+function caricaFiltratiModello(selectedOption){
+ const container = document.getElementById('tabella-container');
+ container.innerHTML = 'Caricamento dati...';
+ fetch(urlList)
+ .then(response => {
+ if (!response.ok) throw new Error("Errore nel caricamento dei dati.");
+ return response.json();
+ })
+ .then(data=>{
+ container.innerHTML = '';
+ //Sostituisco il pulsante aggiorna tutti col pulsante aggiorna filtrati
+ const aggiornaNav = document.getElementById('nav-inservizio');
+ aggiornaNav.innerHTML = `
+
+
+ `;
+ // Creo tabella
+ const table = document.createElement('table');
+
+ // Intestazione
+ const thead = document.createElement('thead');
+ thead.innerHTML = `
+
+ Linea |
+ Direzione |
+ Veicolo |
+ Modello veicolo |
+ Ora si trova a |
+
+ `;
+ table.appendChild(thead);
+ data.features.forEach(elements => {
+ if(elements.properties.model==selectedOption){
+ const tbody = document.createElement('tbody');
+ const element = elements.properties;
+ const tr = document.createElement('tr');
+ if(element.next_stop==null){
+ var posizione="";
+ }else{
+ var posizione=element.next_stop;
+ }
+ tr.innerHTML = `
+ ${element.linea} |
+ ${element.route_desc} |
+ ${element.vehicle_code} |
+ ${element.model} |
+ ${posizione} |
+ `;
+ tbody.appendChild(tr);
+ table.appendChild(tbody);
+
+ container.appendChild(table);
+ console.log("Ricarico");
+ }else{
+ container.appendChild(table);
+ }
+ });
+ });
+}
+
+function reloadFiltratiModello(){
+ caricaFiltratiModello(lineaSelect.value);
}
\ No newline at end of file
diff --git a/seta_menu/seta.html b/seta_menu/seta.html
index b7868c4..eec1113 100644
--- a/seta_menu/seta.html
+++ b/seta_menu/seta.html
@@ -49,7 +49,7 @@
diff --git a/sitemap.xml b/sitemap.xml
index a9a4c84..7bff8aa 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -11,142 +11,7 @@
2025-08-22
- https://ertpl.pages.dev/altri_menu/altri.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/altri_menu/at.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/ravenna_menu/mete.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/ravenna_menu/ravenna.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/ravenna_privatibus/gamberini.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/ravenna_privatibus/pollini.html
- 0.60
- 2025-08-04
-
-
- https://ertpl.pages.dev/ravenna_privatibus/riolo.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/ravenna_privatibus/zaganelli.html
- 0.60
- 2025-08-04
-
-
- https://ertpl.pages.dev/setamodena_bus/servizio.html
- 0.60
- 2025-08-08
-
-
- https://ertpl.pages.dev/seta_menu/atcmlalinea.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/seta_menu/businservizio
- 0.60
- 2025-08-25
-
-
- https://ertpl.pages.dev/seta_menu/busottolalinea.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/seta_menu/cercaorario
- 0.60
- 2025-08-25
-
-
- https://ertpl.pages.dev/seta_menu/radiatimenu.html
- 0.60
- 2025-08-22
-
-
- https://ertpl.pages.dev/seta_menu/seta.html
- 0.60
- 2025-08-26
-
-
- https://ertpl.pages.dev/seta_menu/setaextra.html
- 0.60
- 2025-08-08
-
-
- https://ertpl.pages.dev/seta_menu/setafilobus.html
- 0.60
- 2025-07-31
-
-
- https://ertpl.pages.dev/seta_menu/setastreetview.html
- 0.60
- 2025-07-12
-
-
- https://ertpl.pages.dev/seta_menu/setasub.html
- 0.60
- 2025-08-25
-
-
- https://ertpl.pages.dev/seta_menu/setaurbano.html
- 0.60
- 2025-08-20
-
-
- https://ertpl.pages.dev/startravenna_bus/listamezzi.html
- 0.60
- 2025-08-22
-
-
- https://ertpl.pages.dev/start_menu/start.html
- 0.60
- 2025-07-27
-
-
- https://ertpl.pages.dev/start_menu/startextra.html
- 0.60
- 2025-08-04
-
-
- https://ertpl.pages.dev/start_menu/startsub.html
- 0.60
- 2025-08-04
-
-
- https://ertpl.pages.dev/start_menu/starturbano.html
- 0.60
- 2025-08-22
-
-
- https://ertpl.pages.dev/tper_menu/tper.html
- 0.60
- 2025-07-25
-
-
- https://ertpl.pages.dev/tper_menu/tperext.html
- 0.60
- 2025-08-04
-
-
- https://ertpl.pages.dev/percorsi/index.html
+ https://ertpl.pages.dev/tper_menu/tperurb.html
0.60
2025-08-04
@@ -156,507 +21,152 @@
2025-08-04
- https://ertpl.pages.dev/tper_menu/tperurb.html
+ https://ertpl.pages.dev/percorsi/index.html
0.60
2025-08-04
- https://ertpl.pages.dev/setamodena_bus/extraurbano/ares.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/cwesercito.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/cwiris.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/cwline.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/cwlinecng.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/integro.html
- 0.40
- 2025-08-16
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/integrogiallo.html
- 0.40
- 2025-08-08
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/irizar.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/lionregio.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/extraurbano/template.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/filobus/busottongt.html
- 0.40
- 2025-08-08
-
-
- https://ertpl.pages.dev/setamodena_bus/filobus/neoplan.html
- 0.40
- 2025-08-08
-
-
- https://ertpl.pages.dev/setamodena_bus/filobus/template.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/filobus/trollino.html
- 0.40
- 2025-08-08
-
-
- https://ertpl.pages.dev/setamodena_bus/minibus/sprinter.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/minibus/template.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/bredone.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/citarogkoln.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/citarogtper.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/citarou.html
- 0.40
+ https://ertpl.pages.dev/tper_menu/tperext.html
+ 0.60
2025-08-04
- https://ertpl.pages.dev/setamodena_bus/suburbano/cwle.html
- 0.40
- 2025-07-31
+ https://ertpl.pages.dev/tper_menu/tper.html
+ 0.60
+ 2025-07-25
- https://ertpl.pages.dev/setamodena_bus/suburbano/cwlebianco.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/cwlecng.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/cwlefacelift.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/cwlelungo.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/ibcwle.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/mang3p.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/mang4p.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/manl.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/newman.html
- 0.40
- 2025-08-25
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/setra2p.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/setra3p.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/setamodena_bus/suburbano/solarisdiesel.html
- 0.40
+ https://ertpl.pages.dev/start_menu/starturbano.html
+ 0.60
2025-08-22
- https://ertpl.pages.dev/setamodena_bus/suburbano/surbinodoppio.html
- 0.40
- 2025-07-12
+ https://ertpl.pages.dev/start_menu/startsub.html
+ 0.60
+ 2025-08-04
- https://ertpl.pages.dev/setamodena_bus/suburbano/template.html
- 0.40
- 2025-07-12
+ https://ertpl.pages.dev/start_menu/startextra.html
+ 0.60
+ 2025-08-04
- https://ertpl.pages.dev/setamodena_bus/urbano/citarocng.html
- 0.40
- 2025-07-12
+ https://ertpl.pages.dev/start_menu/start.html
+ 0.60
+ 2025-07-27
- https://ertpl.pages.dev/setamodena_bus/urbano/citarodiesel.html
- 0.40
- 2025-07-12
+ https://ertpl.pages.dev/startravenna_bus/listamezzi.html
+ 0.60
+ 2025-08-22
- https://ertpl.pages.dev/setamodena_bus/urbano/citelis.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/urbano/cityclassatcm.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/urbano/cityclasspavia.html
- 0.40
+ https://ertpl.pages.dev/seta_menu/setaurbano.html
+ 0.60
2025-08-20
- https://ertpl.pages.dev/setamodena_bus/urbano/menarinocng.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/urbano/menarinolng.html
- 0.40
- 2025-08-08
-
-
- https://ertpl.pages.dev/setamodena_bus/urbano/solarisidrogeno.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/urbano/surbinocng.html
- 0.40
- 2025-08-16
-
-
- https://ertpl.pages.dev/setamodena_bus/urbano/template.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/setamodena_bus/urbano/urbanway.html
- 0.40
- 2025-08-16
-
-
- https://ertpl.pages.dev/setamodena_bus/urbano/uwfacelift.html
- 0.40
- 2025-07-31
-
-
- https://ertpl.pages.dev/seta_menu/businservizio/infoveicolo.html
- 0.40
+ https://ertpl.pages.dev/seta_menu/setasub.html
+ 0.60
2025-08-25
- https://ertpl.pages.dev/seta_menu/cercaorario/comeleggere.html
- 0.40
+ https://ertpl.pages.dev/seta_menu/setastreetview.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/seta_menu/setafilobus.html
+ 0.60
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/seta_menu/setaextra.html
+ 0.60
+ 2025-08-08
+
+
+ https://ertpl.pages.dev/seta_menu/seta.html
+ 0.60
+ 2025-08-27
+
+
+ https://ertpl.pages.dev/seta_menu/radiatimenu.html
+ 0.60
2025-08-22
- https://ertpl.pages.dev/seta_menu/radiati/estate25.html
- 0.40
- 2025-08-22
+ https://ertpl.pages.dev/seta_menu/cercaorario
+ 0.60
+ 2025-08-25
- https://ertpl.pages.dev/startravenna_bus/extraurbano/crossway12cngle.html
+ https://ertpl.pages.dev/seta_menu/busottolalinea.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/seta_menu/businservizio
+ 0.60
+ 2025-08-27
+
+
+ https://ertpl.pages.dev/seta_menu/atcmlalinea.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/servizio.html
+ 0.60
+ 2025-08-08
+
+
+ https://ertpl.pages.dev/ravenna_privatibus/zaganelli.html
+ 0.60
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/ravenna_privatibus/riolo.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/ravenna_privatibus/pollini.html
+ 0.60
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/ravenna_privatibus/gamberini.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/ravenna_menu/ravenna.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/ravenna_menu/mete.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/altri_menu/at.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/altri_menu/altri.html
+ 0.60
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/urbano/manlc12g.html
0.40
2025-08-04
- https://ertpl.pages.dev/startravenna_bus/extraurbano/crossway12cngle2023.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/startravenna_bus/extraurbano/crossway12le.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/startravenna_bus/extraurbano/crossway13le.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/startravenna_bus/extraurbano/desimon.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/startravenna_bus/extraurbano/interlinklng.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/startravenna_bus/extraurbano/irizari4.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/startravenna_bus/suburbano/citelis.html
- 0.40
- 2025-08-22
-
-
- https://ertpl.pages.dev/startravenna_bus/suburbano/citeliseev.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/startravenna_bus/suburbano/mana40.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/startravenna_bus/suburbano/uw.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/startravenna_bus/suburbano/uwmh.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/bredino.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/bredinovivo.html
- 0.40
- 2025-08-22
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/citymoodcng.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/karsan.html
- 0.40
- 2025-08-22
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/manlc12e.html
- 0.40
- 2025-08-22
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/manlc19g.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/uw.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/uwdim.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/startravenna_bus/urbano/uwpiccolo.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/start_menu/servizi/start-corsesopp
- 0.40
- 2025-08-16
-
-
- https://ertpl.pages.dev/start_menu/servizi/start-fermatebus
- 0.40
- 2025-07-28
-
-
- https://ertpl.pages.dev/start_menu/servizi/start-livebus
- 0.40
- 2025-07-29
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/arway.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/arwayfer.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/citarogu.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/citarolu.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/citarou.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/citymoodlng.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/crossway12cng.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/crossway12le.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/crossway14le.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/interlinklng.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/irizari4.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/manlc19g.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/manlic.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/myway.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/mywayfer.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/extraurbano/regio14.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/suburbano/citaro1.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/suburbano/citaro2.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/suburbano/citaroc2h.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/suburbano/citarogfl.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/suburbano/citarol.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/suburbano/citymood.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/suburbano/manlcllcng.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/suburbano/manlcllecng.html
- 0.40
- 2025-08-04
-
-
- https://ertpl.pages.dev/tper_bus/urbano/citea.html
- 0.40
- 2025-07-12
-
-
- https://ertpl.pages.dev/tper_bus/urbano/cito.html
+ https://ertpl.pages.dev/tper_bus/urbano/m240lucng.html
0.40
2025-07-12
@@ -666,17 +176,507 @@
2025-07-12
- https://ertpl.pages.dev/tper_bus/urbano/m240lucng.html
+ https://ertpl.pages.dev/tper_bus/urbano/cito.html
0.40
2025-07-12
- https://ertpl.pages.dev/tper_bus/urbano/manlc12g.html
+ https://ertpl.pages.dev/tper_bus/urbano/citea.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/suburbano/manlcllecng.html
0.40
2025-08-04
- https://www.ertpl.pages.dev/seta_menu/percorsi/rcodes.html
+ https://ertpl.pages.dev/tper_bus/suburbano/manlcllcng.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/suburbano/citymood.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/suburbano/citarol.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/suburbano/citarogfl.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/suburbano/citaroc2h.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/suburbano/citaro2.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/suburbano/citaro1.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/regio14.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/mywayfer.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/myway.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/manlic.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/manlc19g.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/irizari4.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/interlinklng.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/crossway14le.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/crossway12le.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/crossway12cng.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/citymoodlng.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/citarou.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/citarolu.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/citarogu.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/arwayfer.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/tper_bus/extraurbano/arway.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/start_menu/servizi/start-livebus
+ 0.40
+ 2025-07-29
+
+
+ https://ertpl.pages.dev/start_menu/servizi/start-fermatebus
+ 0.40
+ 2025-07-28
+
+
+ https://ertpl.pages.dev/start_menu/servizi/start-corsesopp
+ 0.40
+ 2025-08-16
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/uwpiccolo.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/uwdim.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/uw.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/manlc19g.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/manlc12e.html
+ 0.40
+ 2025-08-22
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/karsan.html
+ 0.40
+ 2025-08-22
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/citymoodcng.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/bredinovivo.html
+ 0.40
+ 2025-08-22
+
+
+ https://ertpl.pages.dev/startravenna_bus/urbano/bredino.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/startravenna_bus/suburbano/uwmh.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/startravenna_bus/suburbano/uw.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/startravenna_bus/suburbano/mana40.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/startravenna_bus/suburbano/citeliseev.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/startravenna_bus/suburbano/citelis.html
+ 0.40
+ 2025-08-22
+
+
+ https://ertpl.pages.dev/startravenna_bus/extraurbano/irizari4.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/startravenna_bus/extraurbano/interlinklng.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/startravenna_bus/extraurbano/desimon.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/startravenna_bus/extraurbano/crossway13le.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/startravenna_bus/extraurbano/crossway12le.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/startravenna_bus/extraurbano/crossway12cngle2023.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/startravenna_bus/extraurbano/crossway12cngle.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/seta_menu/radiati/estate25.html
+ 0.40
+ 2025-08-22
+
+
+ https://ertpl.pages.dev/seta_menu/cercaorario/comeleggere.html
+ 0.40
+ 2025-08-22
+
+
+ https://ertpl.pages.dev/seta_menu/businservizio/infoveicolo.html
+ 0.40
+ 2025-08-25
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/uwfacelift.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/urbanway.html
+ 0.40
+ 2025-08-16
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/template.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/surbinocng.html
+ 0.40
+ 2025-08-16
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/solarisidrogeno.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/menarinolng.html
+ 0.40
+ 2025-08-08
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/menarinocng.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/cityclasspavia.html
+ 0.40
+ 2025-08-20
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/cityclassatcm.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/citelis.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/citarodiesel.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/urbano/citarocng.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/template.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/surbinodoppio.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/solarisdiesel.html
+ 0.40
+ 2025-08-22
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/setra3p.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/setra2p.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/newman.html
+ 0.40
+ 2025-08-25
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/manl.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/mang4p.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/mang3p.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/ibcwle.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/cwlelungo.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/cwlefacelift.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/cwlecng.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/cwlebianco.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/cwle.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/citarou.html
+ 0.40
+ 2025-08-04
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/citarogtper.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/citarogkoln.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/suburbano/bredone.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/minibus/template.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/minibus/sprinter.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/filobus/trollino.html
+ 0.40
+ 2025-08-08
+
+
+ https://ertpl.pages.dev/setamodena_bus/filobus/template.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/filobus/neoplan.html
+ 0.40
+ 2025-08-08
+
+
+ https://ertpl.pages.dev/setamodena_bus/filobus/busottongt.html
+ 0.40
+ 2025-08-08
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/template.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/lionregio.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/irizar.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/integrogiallo.html
+ 0.40
+ 2025-08-08
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/integro.html
+ 0.40
+ 2025-08-16
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/cwlinecng.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/cwline.html
+ 0.40
+ 2025-07-31
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/cwiris.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/cwesercito.html
+ 0.40
+ 2025-07-12
+
+
+ https://ertpl.pages.dev/setamodena_bus/extraurbano/ares.html
+ 0.40
+ 2025-07-12
+
+
+ https://www.ertpl.pages.dev/seta_menu/percorsi/percorso.html
0.25
2025-08-27
@@ -686,7 +686,7 @@
2025-08-26
- https://www.ertpl.pages.dev/seta_menu/percorsi/percorso.html
+ https://www.ertpl.pages.dev/seta_menu/percorsi/rcodes.html
0.25
2025-08-27