-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #841 from CanalTP/DATENG-120_gtfs_extended_route_type
[feature] ntfs2gtfs: possibility to write gtfs extended route type
- Loading branch information
Showing
8 changed files
with
201 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
authors = ["Kisio Digital <[email protected]>", "Guillaume Pinot <[email protected]>"] | ||
name = "transit_model" | ||
version = "0.46.0" | ||
version = "0.47.0" | ||
license = "AGPL-3.0-only" | ||
description = "Transit data management" | ||
repository = "https://github.com/CanalTP/transit_model" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
route_id,agency_id,route_short_name,route_long_name,route_desc,route_type,route_url,route_color,route_text_color,route_sort_order | ||
line:1,network:kept,1,Metro 1,,400,,,, |
26 changes: 26 additions & 0 deletions
26
ntfs2gtfs/tests/fixtures/output_split_route_by_mode_extended/routes.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
route_id,agency_id,route_short_name,route_long_name,route_desc,route_type,route_url,route_color,route_text_color,route_sort_order | ||
MIPL:Bus,MIPL:PadamMobility,1,Line 1,,700,,,, | ||
MIPL:Air,MIPL:PadamMobility,2,Line 2,,1100,,,, | ||
MIPL:Bike,MIPL:PadamMobility,3,Line 3,,700,,,, | ||
MIPL:BikeSharingService,MIPL:PadamMobility,4,Line 4,,700,,,, | ||
MIPL:Car,MIPL:PadamMobility,5,Line 5,,700,,,, | ||
MIPL:Tramway,MIPL:PadamMobility,6,Line 6,,900,,,, | ||
MIPL:RailShuttle,MIPL:PadamMobility,7,Line 7,,900,,,, | ||
MIPL:Metro,MIPL:PadamMobility,8,Line 8,,400,,,, | ||
MIPL:LocalTrain,MIPL:PadamMobility,9,Line 9,,100,,,, | ||
MIPL:LongDistanceTrain,MIPL:PadamMobility,10,Line 10,,100,,,, | ||
MIPL:RapidTransit,MIPL:PadamMobility,11,Line 11,,100,,,, | ||
MIPL:Train,MIPL:PadamMobility,12,Line 12,,100,,,, | ||
MIPL:BusRapidTransit,MIPL:PadamMobility,13,Line 13,,700,,,, | ||
MIPL:Coach,MIPL:PadamMobility,14,Line 14,,200,,,, | ||
MIPL:Boat,MIPL:PadamMobility,15,Line 15,,1200,,,, | ||
MIPL:Ferry,MIPL:PadamMobility,16,Line 16,,1200,,,, | ||
MIPL:Funicular,MIPL:PadamMobility,17,Line 17,,1400,,,, | ||
MIPL:Shuttle,MIPL:PadamMobility,18,Line 18,,1400,,,, | ||
MIPL:SuspendedCableCar,MIPL:PadamMobility,19,Line 19,,1300,,,, | ||
MIPL:Taxi,MIPL:PadamMobility,20,Line 20,,1500,,,, | ||
MIPL:Bob,MIPL:PadamMobility,21,Line 21,,700,,,, | ||
MIPL:Bus-Coach,MIPL:PadamMobility,22,Line 22,,700,,,, | ||
MIPL:Bus-Coach:Coach,MIPL:PadamMobility,22,Line 22,,200,,,, | ||
MIPL:Bus-Taxi,MIPL:PadamMobility,22,Line 22,,700,,,, | ||
MIPL:Bus-Taxi:Taxi,MIPL:PadamMobility,22,Line 22,,1500,,,, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters