French Railway Monthly TGV Regularity
Discover monthly regularity on TGV French SNCF by connections (aqst)
@kaggle.elliotx1000_french_railway_monthly_tgv_regularity
Discover monthly regularity on TGV French SNCF by connections (aqst)
@kaggle.elliotx1000_french_railway_monthly_tgv_regularity
La régularité TGV tient compte des différentes durées de trajet des clients (aussi appelée composite).
Un train est considéré à l'heure si son retard au terminus est inférieur à 5min pour un parcours inférieur à 1h30
Un train est considéré à l'heure si son retard au terminus est inférieur à 10min pour un parcours entre 1h30 et 3h
Un train est considéré à l'heure si son retard au terminus est inférieur à 15min pour un parcours au-delà de 3h
Original data link: https://ressources.data.sncf.com/explore/dataset/regularite-mensuelle-tgv-aqst/information/?sort=date
CREATE TABLE regularite_mensuelle_tgv_aqst (
"date" TIMESTAMP,
"service" VARCHAR,
"gare_de_d_part" VARCHAR,
"gare_d_arriv_e" VARCHAR -- Gare D\u0027arrivée,
"dur_e_moyenne_du_trajet" BIGINT,
"nombre_de_circulations_pr_vues" BIGINT,
"nombre_de_trains_annul_s" BIGINT,
"commentaire_annulations" VARCHAR,
"nombre_de_trains_en_retard_au_d_part" BIGINT,
"retard_moyen_des_trains_en_retard_au_d_part" DOUBLE,
"retard_moyen_de_tous_les_trains_au_d_part" DOUBLE,
"commentaire_retards_au_d_part" VARCHAR,
"nombre_de_trains_en_retard_l_arriv_e" BIGINT -- Nombre De Trains En Retard À L\u0027arrivée,
"retard_moyen_des_trains_en_retard_l_arriv_e" DOUBLE -- Retard Moyen Des Trains En Retard À L\u0027arrivée,
"retard_moyen_de_tous_les_trains_l_arriv_e" DOUBLE -- Retard Moyen De Tous Les Trains À L\u0027arrivée,
"commentaire_retards_l_arriv_e" VARCHAR -- Commentaire Retards À L\u0027arrivée,
"nombre_trains_en_retard_15min" BIGINT -- Nombre Trains En Retard \u003e 15min,
"retard_moyen_trains_en_retard_15_si_liaison_concurrenc_e4b9bf49" DOUBLE -- Retard Moyen Trains En Retard \u003e 15 (si Liaison Concurrencée Par Vol),
"nombre_trains_en_retard_30min" BIGINT -- Nombre Trains En Retard \u003e 30min,
"nombre_trains_en_retard_60min" BIGINT -- Nombre Trains En Retard \u003e 60min,
"prct_retard_pour_causes_externes" DOUBLE,
"prct_retard_pour_cause_infrastructure" DOUBLE,
"prct_retard_pour_cause_gestion_trafic" DOUBLE,
"prct_retard_pour_cause_mat_riel_roulant" DOUBLE,
"prct_retard_pour_cause_gestion_en_gare_et_r_utilisatio_67798f14" DOUBLE -- Prct Retard Pour Cause Gestion En Gare Et Réutilisation De Matériel,
"prct_retard_pour_cause_prise_en_compte_voyageurs_afflu_9647b45b" DOUBLE -- Prct Retard Pour Cause Prise En Compte Voyageurs (affluence, Gestions PSH, Correspondances)
);
Anyone who has the link will be able to view this.