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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See also r-lidar/lidR#219. Function check_las_validity could be more tolerant with the specification and allow to write numbers up to 2⁷-1.
check_las_validity
is_valid_ScanAngleRank
is_compliant_ScanAngleRank
library(rlas) lazfile <- system.file("extdata", "example.laz", package="rlas") lasdata <- read.las(lazfile) header <- read.lasheader(lazfile) lasdata$ScanAngleRank[1] <- 91L f <- tempfile(fileext = ".las") write.las(f, header, lasdata) #> Error: Invalid data: ScanAngleRank greater than 90
@pobsteta
The text was updated successfully, but these errors were encountered:
22277a1
@pobsteta install rlas 1.3.2 from github.
rlas 1.3.2
Sorry, something went wrong.
Jean-Romain
No branches or pull requests
See also r-lidar/lidR#219. Function
check_las_validity
could be more tolerant with the specification and allow to write numbers up to 2⁷-1.is_valid_ScanAngleRank
to allow range of [-127, +127]is_compliant_ScanAngleRank
to warn about rank out of [-90, +90]@pobsteta
The text was updated successfully, but these errors were encountered: