diff --git a/index.html b/index.html
index 557849f..daf7245 100644
--- a/index.html
+++ b/index.html
@@ -39,7 +39,7 @@
SETA:
Il Cerca orario ora è dotato di integrazione con la geolocalizzazione del bus!
- Nel Monitor bus in servizio è ora possibile cliccare sul numero del bus per ottenere informazioni aggiuntive!
+ Nel Monitor bus in servizio è ora possibile filtrare per linea!
Radiati definitivamente:
TUTTI I CITYCLASS PAVIA ,
30 Busotto NGT ,
diff --git a/seta_menu/businservizio/css/style.css b/seta_menu/businservizio/css/style.css
index 4fa87ee..441d403 100644
--- a/seta_menu/businservizio/css/style.css
+++ b/seta_menu/businservizio/css/style.css
@@ -31,7 +31,7 @@ table {
}
td.uguale{
- min-width: 50%;
+ width: 50%;
}
th {
diff --git a/seta_menu/businservizio/index.html b/seta_menu/businservizio/index.html
index 6992b03..f16fc8b 100644
--- a/seta_menu/businservizio/index.html
+++ b/seta_menu/businservizio/index.html
@@ -26,7 +26,7 @@
Visualizzatore bus in servizio SETA Modena
-
+
Ordina per:
diff --git a/seta_menu/businservizio/js/script.js b/seta_menu/businservizio/js/script.js
index fafd1de..146c766 100644
--- a/seta_menu/businservizio/js/script.js
+++ b/seta_menu/businservizio/js/script.js
@@ -1,7 +1,9 @@
const lineaSelect = document.getElementById('linea');
const modelloSelect = document.getElementById('modello');
+const contentBackground = document.getElementById('content-background');
let allresults = [];
+const urlList="https://setaapi.serverissimo.freeddns.org/busesinservice";
//Reperire modelli e numeri linea
@@ -18,7 +20,6 @@ fetch(urlRoutes)
})
.then(data => {
allresults = data;
- console.log(allresults);
allresults.forEach(route => {
const option = document.createElement('option');
option.value = route;
@@ -44,8 +45,8 @@ fetch(urlModels)
})
.catch(error => console.error('Errore nel caricamento dei dati:', error));
caricadati();
+var refreshGeneraleID=setInterval(caricadati, 60000);
function caricadati(){
- const urlList="https://setaapi.serverissimo.freeddns.org/busesinservice";
fetch(urlList)
.then(response => {
if (!response.ok) throw new Error("Errore nel caricamento dei dati.");
@@ -104,4 +105,77 @@ function caricadati(){
});
}
-setInterval(caricadati, 60000);
\ No newline at end of file
+//FILTRI
+//Filtro per linea
+lineaSelect.addEventListener('change', function(event) {
+ const eventConst=event;
+ caricaFiltratiLinea(eventConst);
+ setInterval(function dummyFunc(){caricaFiltratiLinea(eventConst);}, 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);
+ }
+});
+
+function caricaFiltratiLinea(event){
+ fetch(urlList)
+ .then(response => {
+ if (!response.ok) throw new Error("Errore nel caricamento dei dati.");
+ return response.json();
+ })
+ .then(data=>{
+ const selectedOption = event.target.value;
+ currentSelectedOption = selectedOption;
+ const container = document.getElementById('tabella-container');
+ container.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 => {
+ // Extract only the numeric part
+ const number = elements.properties.linea.match(/\d+/g);
+ if(number==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);
+ }else{
+ container.appendChild(table);
+ }
+ });
+ });
+}
\ No newline at end of file
diff --git a/sitemap.xml b/sitemap.xml
index 63d0f3a..94d9165 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -3,7 +3,7 @@
https://www.ertpl.pages.dev
1.00
- 2025-08-20
+ 2025-08-21
https://www.ertpl.pages.dev/chisiamo.html
@@ -11,102 +11,12 @@
2025-07-27
- https://www.ertpl.pages.dev/altri_menu/at.html
+ https://www.ertpl.pages.dev/seta_menu/cercaorario/index.html
0.50
- 2025-05-11
+ 2025-07-29
- https://www.ertpl.pages.dev/seta_menu/busottolalinea.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/tper_menu/tper.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/start_menu/starturbano.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/start_menu/startsub.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/start_menu/startextra.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/start_menu/start.html
- 0.50
- 2025-07-25
-
-
- https://www.ertpl.pages.dev/startravenna_bus/listamezzi.html
- 0.50
- 2025-08-14
-
-
- https://www.ertpl.pages.dev/seta_menu/setaurbano.html
- 0.50
- 2025-08-20
-
-
- https://www.ertpl.pages.dev/seta_menu/setasub.html
- 0.50
- 2025-08-04
-
-
- https://www.ertpl.pages.dev/seta_menu/setastreetview.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/seta_menu/setafilobus.html
- 0.50
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/seta_menu/setaextra.html
- 0.50
- 2025-08-08
-
-
- https://www.ertpl.pages.dev/seta_menu/seta.html
- 0.50
- 2025-08-20
-
-
- https://www.ertpl.pages.dev/seta_menu/atcmlalinea.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/ravenna_privatibus/zaganelli.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/ravenna_privatibus/pollini.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/ravenna_privatibus/gamberini.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/ravenna_menu/ravenna.html
- 0.50
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/ravenna_menu/mete.html
+ https://www.ertpl.pages.dev/tper_menu/tperextra.html
0.50
2025-05-11
@@ -116,342 +26,117 @@
2025-05-11
- https://www.ertpl.pages.dev/tper_menu/tperextra.html
+ https://www.ertpl.pages.dev/ravenna_menu/mete.html
0.50
2025-05-11
- https://www.ertpl.pages.dev/seta_menu/cercaorario/index.html
+ https://www.ertpl.pages.dev/ravenna_menu/ravenna.html
0.50
- 2025-07-29
-
-
- https://www.ertpl.pages.dev/seta_menu/cercaorario/comeleggere.html
- 0.25
- 2025-08-12
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwlefacelift.html
- 0.25
- 2025-08-04
-
-
- https://www.ertpl.pages.dev/tper_bus/urbano/bredino.html
- 0.25
- 2025-04-23
-
-
- https://www.ertpl.pages.dev/tper_bus/suburbano/bredino.html
- 0.25
- 2025-04-23
-
-
- https://www.ertpl.pages.dev/startravenna_bus/urbano/uwpiccolo.html
- 0.25
2025-05-11
- https://www.ertpl.pages.dev/startravenna_bus/urbano/uwdim.html
- 0.25
+ https://www.ertpl.pages.dev/ravenna_privatibus/gamberini.html
+ 0.50
2025-05-11
- https://www.ertpl.pages.dev/startravenna_bus/urbano/uw.html
- 0.25
+ https://www.ertpl.pages.dev/ravenna_privatibus/pollini.html
+ 0.50
2025-05-11
- https://www.ertpl.pages.dev/startravenna_bus/urbano/citymoodcng.html
- 0.25
+ https://www.ertpl.pages.dev/ravenna_privatibus/zaganelli.html
+ 0.50
2025-05-11
- https://www.ertpl.pages.dev/startravenna_bus/urbano/karsan.html
- 0.25
+ https://www.ertpl.pages.dev/seta_menu/atcmlalinea.html
+ 0.50
2025-05-11
- https://www.ertpl.pages.dev/startravenna_bus/urbano/bredinovivo.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/urbano/bredino.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/suburbano/uw.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/suburbano/mana40.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/suburbano/citeliseev.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/suburbano/citelis.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/extraurbano/irizari4.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/extraurbano/desimon.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/extraurbano/crossway13le.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/extraurbano/crossway12le.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/extraurbano/crossway12cngle2023.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/startravenna_bus/extraurbano/crossway12cngle.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/urbano/urbanway.html
- 0.25
- 2025-08-16
-
-
- https://www.ertpl.pages.dev/setamodena_bus/urbano/template.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/urbano/surbinocng.html
- 0.25
- 2025-08-16
-
-
- https://www.ertpl.pages.dev/setamodena_bus/urbano/menarinolng.html
- 0.25
- 2025-08-08
-
-
- https://www.ertpl.pages.dev/setamodena_bus/urbano/menarinocng.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/urbano/cityclasspavia.html
- 0.25
+ https://www.ertpl.pages.dev/seta_menu/seta.html
+ 0.50
2025-08-20
- https://www.ertpl.pages.dev/setamodena_bus/urbano/cityclassatcm.html
- 0.25
+ https://www.ertpl.pages.dev/seta_menu/setaextra.html
+ 0.50
+ 2025-08-08
+
+
+ https://www.ertpl.pages.dev/seta_menu/setafilobus.html
+ 0.50
2025-07-31
- https://www.ertpl.pages.dev/setamodena_bus/urbano/citelis.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/urbano/citarodiesel.html
- 0.25
- 2025-06-10
-
-
- https://www.ertpl.pages.dev/setamodena_bus/urbano/citarocng.html
- 0.25
- 2025-06-10
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/template.html
- 0.25
+ https://www.ertpl.pages.dev/seta_menu/setastreetview.html
+ 0.50
2025-05-11
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/surbinole.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/surbinodoppio.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/setra3p.html
- 0.25
- 2025-06-10
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/setra2p.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/newman.html
- 0.25
- 2025-06-10
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/manl.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/mang4p.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/mang3p.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/ibcwle.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwlelungo.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwlecng.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwlebianco.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwle.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/citarole.html
- 0.25
+ https://www.ertpl.pages.dev/seta_menu/setasub.html
+ 0.50
2025-08-04
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/citarogtper.html
- 0.25
- 2025-06-10
+ https://www.ertpl.pages.dev/seta_menu/setaurbano.html
+ 0.50
+ 2025-08-20
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/citarogkoln.html
- 0.25
- 2025-07-31
+ https://www.ertpl.pages.dev/startravenna_bus/listamezzi.html
+ 0.50
+ 2025-08-14
- https://www.ertpl.pages.dev/setamodena_bus/suburbano/bredone.html
- 0.25
+ https://www.ertpl.pages.dev/start_menu/start.html
+ 0.50
+ 2025-07-25
+
+
+ https://www.ertpl.pages.dev/start_menu/startextra.html
+ 0.50
2025-05-11
- https://www.ertpl.pages.dev/setamodena_bus/minibus/template.html
- 0.25
+ https://www.ertpl.pages.dev/start_menu/startsub.html
+ 0.50
2025-05-11
- https://www.ertpl.pages.dev/setamodena_bus/minibus/sprinter.html
- 0.25
- 2025-07-31
+ https://www.ertpl.pages.dev/start_menu/starturbano.html
+ 0.50
+ 2025-05-11
- https://www.ertpl.pages.dev/setamodena_bus/filobus/trollino.html
+ https://www.ertpl.pages.dev/tper_menu/tper.html
+ 0.50
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/seta_menu/busottolalinea.html
+ 0.50
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/altri_menu/at.html
+ 0.50
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/seta_menu/livebus/altrecorsie.html
+ 0.25
+ 2025-08-19
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/servizio.html
0.25
2025-08-08
- https://www.ertpl.pages.dev/setamodena_bus/filobus/template.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/filobus/neoplan.html
- 0.25
- 2025-08-08
-
-
- https://www.ertpl.pages.dev/setamodena_bus/filobus/busottongt.html
- 0.25
- 2025-08-08
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/template.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/lionregio.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/irizar.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/integrogiallo.html
- 0.25
- 2025-08-08
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/integro.html
- 0.25
- 2025-08-16
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/cwline.html
- 0.25
- 2025-07-31
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/cwiris.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/cwesercito.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/ares.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/tper_bus/extraurbano/newmanc.html
- 0.25
- 2025-05-11
-
-
- https://www.ertpl.pages.dev/setamodena_bus/extraurbano/cwlinecng.html
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/uwfacelift.html
0.25
2025-07-31
@@ -461,18 +146,333 @@
2025-07-31
- https://www.ertpl.pages.dev/setamodena_bus/urbano/uwfacelift.html
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/cwlinecng.html
0.25
2025-07-31
- https://www.ertpl.pages.dev/setamodena_bus/servizio.html
+ https://www.ertpl.pages.dev/tper_bus/extraurbano/newmanc.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/ares.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/cwesercito.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/cwiris.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/cwline.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/integro.html
+ 0.25
+ 2025-08-16
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/integrogiallo.html
0.25
2025-08-08
- https://www.ertpl.pages.dev/seta_menu/livebus/altrecorsie.html
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/irizar.html
0.25
- 2025-08-19
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/lionregio.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/extraurbano/template.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/filobus/busottongt.html
+ 0.25
+ 2025-08-08
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/filobus/neoplan.html
+ 0.25
+ 2025-08-08
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/filobus/template.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/filobus/trollino.html
+ 0.25
+ 2025-08-08
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/minibus/sprinter.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/minibus/template.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/bredone.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/citarogkoln.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/citarogtper.html
+ 0.25
+ 2025-06-10
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/citarole.html
+ 0.25
+ 2025-08-04
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwle.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwlebianco.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwlecng.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwlelungo.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/ibcwle.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/mang3p.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/mang4p.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/manl.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/newman.html
+ 0.25
+ 2025-06-10
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/setra2p.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/setra3p.html
+ 0.25
+ 2025-06-10
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/surbinodoppio.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/surbinole.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/template.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/citarocng.html
+ 0.25
+ 2025-06-10
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/citarodiesel.html
+ 0.25
+ 2025-06-10
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/citelis.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/cityclassatcm.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/cityclasspavia.html
+ 0.25
+ 2025-08-20
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/menarinocng.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/menarinolng.html
+ 0.25
+ 2025-08-08
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/surbinocng.html
+ 0.25
+ 2025-08-16
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/template.html
+ 0.25
+ 2025-07-31
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/urbano/urbanway.html
+ 0.25
+ 2025-08-16
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/extraurbano/crossway12cngle.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/extraurbano/crossway12cngle2023.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/extraurbano/crossway12le.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/extraurbano/crossway13le.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/extraurbano/desimon.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/extraurbano/irizari4.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/suburbano/citelis.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/suburbano/citeliseev.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/suburbano/mana40.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/suburbano/uw.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/urbano/bredino.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/urbano/bredinovivo.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/urbano/karsan.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/urbano/citymoodcng.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/urbano/uw.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/urbano/uwdim.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/startravenna_bus/urbano/uwpiccolo.html
+ 0.25
+ 2025-05-11
+
+
+ https://www.ertpl.pages.dev/tper_bus/suburbano/bredino.html
+ 0.25
+ 2025-04-23
+
+
+ https://www.ertpl.pages.dev/tper_bus/urbano/bredino.html
+ 0.25
+ 2025-04-23
+
+
+ https://www.ertpl.pages.dev/setamodena_bus/suburbano/cwlefacelift.html
+ 0.25
+ 2025-08-04
+
+
+ https://www.ertpl.pages.dev/seta_menu/cercaorario/comeleggere.html
+ 0.25
+ 2025-08-12
\ No newline at end of file