convert_stops_to_sf {gtfstools} | R Documentation |
Convert stops
table to simple feature object
Description
Converts the stops
table to a POINT sf
object.
Usage
convert_stops_to_sf(gtfs, stop_id = NULL, crs = 4326)
Arguments
gtfs |
A GTFS object, as created by |
stop_id |
A character vector including the |
crs |
The CRS of the resulting object, either as an EPSG code or as an
|
Value
A POINT sf
object.
Examples
# read gtfs
data_path <- system.file("extdata/spo_gtfs.zip", package = "gtfstools")
gtfs <- read_gtfs(data_path)
stops_sf <- convert_stops_to_sf(gtfs)
head(stops_sf)
stops_sf <- convert_stops_to_sf(gtfs, stop_id = "18848")
stops_sf
[Package gtfstools version 1.2.0 Index]