Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upline_bearing bidirectional returns the same result #153
Comments
|
Thanks for reporting. Another reproducible example, using the example data: library(stplanr)
lb1 = line_bearing(flowlines, bidirectional = T)
lb2 = line_bearing(flowlines, bidirectional = F)
identical(lb1, lb2) # TRUE
plot(lb1, lb2)My interpretation: The Y axis should not be negative - an easy fix I think. |

line_bearing(l, bidirectional= T) and line_bearing(l, bidirectional = F) return the same result