We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
line_bearing(l, bidirectional= T) and line_bearing(l, bidirectional = F) return the same result
bearingT = line_bearing(l, bidirectional= T) bearingF = line_bearing(l, bidirectional = F) bearingT == bearingF [1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
b657db8
No branches or pull requests
line_bearing(l, bidirectional= T) and line_bearing(l, bidirectional = F) return the same result
The text was updated successfully, but these errors were encountered: