I have downloaded some GTFS data from http://www.131500.com. It is a zip file containing some text files such as stops.txt, trips.txt etc.
Now I would like to save that data in an SQLite database but am not sure how to do so. I did download GTFSImporter from https://github.com/jvashishtha/GTFSImporter/tree/master/GTFSImporter but I am not sure how to run it.
This will depend on what you want to do with it.
I’ve done it two ways – the simple way, and the more complex way.
The simple way is to load the data in directly column for column, row for row. Like this:
http://oegeo.wordpress.com/2011/08/17/salt-lake-city-gtfs-into-sqlite/
The more complex way is to use Graphserver and its “GTFSDB”, which I think is really just an sqlite db.
http://graphserver.github.com/graphserver/
I’ve done both of these procedures with 131500’s data before.