Label | Explanation | Data Type |
Input GTFS Stops File
| A valid stops.txt file from a GTFS dataset. | File |
Output Feature Class
| The output feature class. | Feature Class |
Summary
Converts a GTFS stops.txt file from a GTFS public transit dataset to a feature class of public transit stops.
Usage
A file geodatabase feature class is recommended for tool output instead of a shapefile because shapefile field names can have a maximum of only 10 characters. Longer GTFS field names will be shortened if the output table is a shapefile.
To edit GTFS stop locations and attributes, use this tool to import an existing stops.txt file, make edits in the map, and export the edited table back to GTFS format using the Features To GTFS Stops tool.
The stop_lat and stop_lon fields in the GTFS stops.txt file define the latitude and longitude of stops. These fields are permitted by the specification to be null if the stop's location_type field has a value of 3 or 4. However, because this tool creates geographical features to represent stops, it cannot map stops that have no latitude or longitude. Consequently, stops with location_type values of 3 or 4 that have null values for stop_lat or stop_lon will be skipped and not included in the tool's output.
Parameters
arcpy.conversion.GTFSStopsToFeatures(in_gtfs_stops_file, out_feature_class)
Name | Explanation | Data Type |
in_gtfs_stops_file | A valid stops.txt file from a GTFS dataset. | File |
out_feature_class | The output feature class. | Feature Class |
Code sample
The following code sample demonstrates how to use the GTFSStopsToFeatures function in the Python window.
import arcpy
arcpy.conversion.GTFSStopsToFeatures(r"D:/GTFS/stops.txt", r"D:/Data/output.gdb/stops")