line_azimuth function

Extract azimuths of line segments

Extract azimuths of line segments

line_azimuth(x, warn = TRUE) lines_azimuths(x)

Arguments

  • x: sf object of type "LINESTRING" or "MULTILINESTRING"
  • warn: logical; if TRUE, warn if "MULTILINESTRING" (default).

Returns

sf object of type "POINT" with the columns and entries of the first row of x

Details

It is recommended to perform line_azimuth() on single line objects, i.e. type "LINESTRING", instead of "MULTILINESTRING". This is because the azimuth of the last point of a line will be calculated to the first point of the next line otherwise. This will cause a warning message (if warn = TRUE). For "MULTILINESTRING" objects, use lines_azimuths().

Examples

data("plates") # one line: subset(plates, pair == "af-eu") |> smoothr::densify() |> line_azimuth() # multiple lines: lines_azimuths(plates[1:5, ])
  • Maintainer: Tobias Stephan
  • License: GPL (>= 3)
  • Last published: 2025-03-01