Skip to content

Commit 6f5c788

Browse files
Process stops and stations
Do not process entrances, generic nodes, boarding areas. Extended location types (stops.txt) to be implemented later
1 parent 6793d2f commit 6f5c788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

multigtfs/models/stop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def is_stop(pairs):
153153
'''Does the row represent a stop?'''
154154
for name, val in pairs:
155155
if name == 'location_type':
156-
return val != '1'
156+
return val == '0'
157157
return True
158158

159159
logger.info("Importing non-station stops")

0 commit comments

Comments
 (0)