Given a blue line key and downstream route measure, return the point
geometry on the stream network. Wraps fwapg fwa_locatealong().
Arguments
- conn
A DBI::DBIConnection object (from
frs_db_conn()).- blue_line_key
Integer. Blue line key of the stream.
- downstream_route_measure
Numeric. Downstream route measure in metres.
See also
Other index:
frs_point_snap()
Examples
if (FALSE) { # \dontrun{
conn <- frs_db_conn()
pt <- frs_point_locate(conn, blue_line_key = 360873822,
downstream_route_measure = 1000)
DBI::dbDisconnect(conn)
} # }
