added MCTS and WTA to agency_list.csv
This commit is contained in:
parent
2b47a45b8f
commit
38243834c5
2 changed files with 3 additions and 1 deletions
|
|
@ -1,2 +1,4 @@
|
||||||
Name,GTFS,GTFS-RT_vehicles,GTFS-RT_trips,GTFS-RT_alerts
|
Name,GTFS,GTFS-RT_vehicles,GTFS-RT_trips,GTFS-RT_alerts
|
||||||
Madison Metro,mdb-394,mdb-2097,mdb-2096,mdb-2095
|
Madison Metro,mdb-394,mdb-2097,mdb-2096,mdb-2095
|
||||||
|
Milwaukee County Transit System,mdb-2127,mdb-2130,mdb-2128,mdb-2129
|
||||||
|
Whatcom Transportation Authority,mdb-284,tld-4358-vp,tld-4358-tu,tld-4358-sa
|
||||||
|
|
|
||||||
|
|
|
@ -13,6 +13,6 @@ def agency_list(duckdb: DuckDBResource) -> None:
|
||||||
# Write to DuckDB
|
# Write to DuckDB
|
||||||
with duckdb.get_connection() as conn:
|
with duckdb.get_connection() as conn:
|
||||||
conn.execute("""
|
conn.execute("""
|
||||||
CREATE TABLE IF NOT EXISTS agency_list AS
|
CREATE OR REPLACE TABLE agency_list AS
|
||||||
SELECT * FROM df
|
SELECT * FROM df
|
||||||
""")
|
""")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue