This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bean class="org.opentripplanner.graph_builder.model.GtfsBundle"> | |
<property name="url" value="http://gtfs.s3.amazonaws.com/pvta_20120820_0735.zip" /> | |
<property name="defaultAgencyId" value="pvta" /> | |
</bean> | |
<bean class="org.opentripplanner.graph_builder.model.GtfsBundle"> | |
<property name="url" value="http://gtfs.s3.amazonaws.com/port-authority-of-new-york-new-jersey_20110512_0300.zip" /> | |
<property name="defaultAgencyId" value="port-authority-of-new-york-new-jersey" /> | |
</bean> | |
<bean class="org.opentripplanner.graph_builder.model.GtfsBundle"> | |
<property name="url" value="http://gtfs.s3.amazonaws.com/lanta_20120701_0310.zip" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import code | |
import logging | |
from datetime import datetime | |
from sqlalchemy import create_engine, event | |
from sqlalchemy import Column, Float, Integer, MetaData, UnicodeText |
NewerOlder