Skip to content

Commit

Permalink
Process stops and stations
Browse files Browse the repository at this point in the history
Do not process entrances, generic nodes, boarding areas.

Extended location types (stops.txt) to be implemented later
  • Loading branch information
daliborpavlovic committed Mar 24, 2020
1 parent 6793d2f commit 6f5c788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multigtfs/models/stop.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def is_stop(pairs):
'''Does the row represent a stop?'''
for name, val in pairs:
if name == 'location_type':
return val != '1'
return val == '0'
return True

logger.info("Importing non-station stops")
Expand Down

0 comments on commit 6f5c788

Please sign in to comment.