stops_as_sf | R Documentation |
Convert stops into Simple Features Points
stops_as_sf(stops, crs = NULL)
stops |
a gtfs$stops dataframe |
crs |
optional coordinate reference system (used by sf::st_transform) to transform lon/lat coordinates |
an sf dataframe for gtfs routes with a point column
gtfs_as_sf
data(gtfs_duke)
some_stops <- gtfs_duke$stops[sample(nrow(gtfs_duke$stops), 40),]
some_stops_sf <- stops_as_sf(some_stops)
plot(some_stops_sf[,"stop_name"])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.