Skip to content

Commit

Permalink
Add SNCF station Le Bouscat Sainte-Germaine (#1202)
Browse files Browse the repository at this point in the history
  • Loading branch information
Clemsx authored Aug 7, 2023
1 parent 8af35dd commit 7cc3a19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions stations.csv
Original file line number Diff line number Diff line change
Expand Up @@ -64044,3 +64044,4 @@ id;name;slug;uic;uic8_sncf;latitude;longitude;parent_station_id;country;time_zon
68185;Campitello di Fassa;campitello-di-fassa;;;46.477028;11.74075;;IT;Europe/Rome;t;f;f;t;t;f;;;f;;f;;f;;f;ITCDA;t;;f;;f;;f;;f;;f;;f;;;;f;;f;;f;;f;;f;;f;f;;;;;;;;;;;;;;;;;;;;urn:trainline:public:nloc:csv68185;
68186;Carisolo;carisolo;;;46.16902;10.7637;;IT;Europe/Rome;t;f;f;t;t;f;;;f;;f;;f;;f;ITCIO;t;;f;;f;;f;;f;;f;;f;;;;f;;f;;f;;f;;f;;f;f;;;;;;;;;;;;;;;;;;;;urn:trainline:public:nloc:csv68186;
68187;Ancenis Bis;ancenis-bis;8774417;87744177;47.36930;-1.17780;2186;FR;Europe/Paris;f;f;f;f;f;f;FRKGW;;t;;f;;f;;f;;f;;f;;f;;f;;f;;f;;f;;;;f;;f;;f;;f;;f;;f;f;;;;;;;;;;;;;;;;;;;;urn:trainline:public:nloc:csv68187;
68188;Le Bouscat Sainte-Germaine;le-bouscat-sainte-germaine;;87738096;44.87090;-0.61400;;FR;Europe/Paris;f;f;f;t;t;f;FRKTO;;t;;f;;f;;f;;f;;f;;f;;f;;f;;f;;f;;;;f;;f;;f;;f;;f;;f;f;;;;;;;;;;;;;;;;;;;;urn:trainline:public:nloc:csv68188;
2 changes: 1 addition & 1 deletion test_data.rb
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def test_uic8_sncf
STATIONS.each do |row|
uic8_sncf = row["uic8_sncf"]
uic = row["uic"]
if !uic8_sncf.nil? && !Constants::UIC8_WHITELIST_IDS.include?(row["id"])
if !uic.nil? && !uic8_sncf.nil? && !Constants::UIC8_WHITELIST_IDS.include?(row["id"])
assert uic == uic8_sncf[0...-1], "Station #{row["name"]} (#{row["id"]}) has an incoherent uic8_sncf code"
end
end
Expand Down

0 comments on commit 7cc3a19

Please sign in to comment.