Upgrade to Pro — share decks privately, control downloads, hide ads and more …

GTFS with Tidytransit package

GTFS with Tidytransit package

Yakitori.R#03(2023/05/27)のLTで話した内容です

nonki1974

May 28, 2023
Tweet

More Decks by nonki1974

Other Decks in Technology

Transcript

  1. GTFS -> sf toeibus <- read_gtfs("./ToeiBus-GTFS.zip") # attributionsのidが空になっているので警告が出る # GTFSオブジェクトとして読み込まれず単なるリストになる

    # 修正してから as_tidygtfs() 関数で改めてGTFSオブジェクトに変換 toeibus$attributions$attribution_id <- 1:2 toeibus <- as_tidygtfs(toeibus) toeibus <- gtfs_as_sf(toeibus) ggplot(toeibus$shapes) + geom_sf() + theme_minimal() ggplot(toeibus$stops) + geom_sf() + theme_minimal()