Importing a GTFS feed into an SQlite database should only take a couple
of minutes at most. Doing each insert in its own separate transaction
could certainly cause an enormous slowdown -- you want to do all the
inserts in a single transaction then commit the transaction at the end.
(see http://www.sqlite.org/faq.html#q19)
It sounds like you are looking for Graphserver's GTFSDB:
https://github.com/graphserver/graphserver/blob/master/pygs/graphserver/ext/gtfs/gtfsdb.py
-Andrew
--
You received this message because you are subscribed to the Google Groups "Transit Developers" group.
To post to this group, send email to transit-developers@googlegroups.com.
To unsubscribe from this group, send email to transit-developers+unsub...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/transit-developers?hl=en.