Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I list all the stops associated with a route using GTFS?

Tags:

People also ask

How do you visualize GTFS data?

Use Display GTFS in ArcGIS to visualize your GTFS stops and route shapes in ArcMap or ArcGIS Pro. The Display GTFS Stops tool makes a feature class of stops using information from the GTFS stops. txt file. The Display GTFS Route Shapes tool converts the information from the GTFS routes.

What is the full form of GTFS?

The General Transit Feed Specification (GTFS), also known as GTFS static or static transit to differentiate it from the GTFS realtime extension, defines a common format for public transportation schedules and associated geographic information.


I'm working with some GTFS data and would like to be able to create a list of all stops associated served by a route. I don't really understand how to do with with GTFS data.

Trips.txt comes in a format like this:

route_id,service_id,trip_id,trip_headsign,direction_id,block_id,shape_id 1,A20120610WKD,A20120610WKD_000800_1..S03R,SOUTH FERRY,1,,1..S03R 1,A20120610WKD,A20120610WKD_002700_1..S03R,SOUTH FERRY,1,,1..S03R 1,A20120610WKD,A20120610WKD_004700_1..S03R,SOUTH FERRY,1,,1..S03R 1,A20120610WKD,A20120610WKD_006700_1..S03R,SOUTH FERRY,1,,1..S03R 1,A20120610WKD,A20120610WKD_008700_1..S03R,SOUTH FERRY,1,,1..S03R

I tried reading in the matching shape using the shape_id and then looking for stops with matching latitudes and longitudes but that doesn't seem to work reliably. Does anybody know how to do this?