bikehopper / graphhopper

Open source routing engine for OpenStreetMap. Use it as Java library or standalone web server.
https://www.graphhopper.com/open-source/
Apache License 2.0
3 stars 0 forks source link

Silence wrong GTFS error: stop_name isn't required #113

Closed graue closed 4 months ago

graue commented 1 year ago

While building the graph cache using 511's regional transit dump, GraphHopper spits out a bunch of errors like

2023-01-08 21:36:40.741 [main] ERROR com.conveyal.gtfs.GTFSFeed - stops line 1530, field 'stop_name': No value supplied for a required column.

But this is allowed for the location type in question:

Optional for locations which are generic nodes (location_type=3) or boarding areas (location_type=4).

BART seems to be using unnamed stops for station concourses, location_type=3. This should not trigger a complaint from GraphHopper.