You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
) and the corresponding actions if true are designed to deal with GTFS zip files stores as .txt rather than .csv.
Alternately, just read in the csv with file type set as txt. Check the file type via something like foo.lower().endswith('.txt') and then, if true, then go ahead and read in as a text file.
The text was updated successfully, but these errors were encountered:
As per our discussion IRL (w/ Sam at Maptime), we observed that this line (
urbanaccess/urbanaccess/gtfs/load.py
Line 59 in 2f37f8e
.txt
rather than.csv
.Alternately, just read in the
csv
with file type set astxt
. Check the file type via something likefoo.lower().endswith('.txt')
and then, if true, then go ahead and read in as a text file.The text was updated successfully, but these errors were encountered: