Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
lidario
✓ github.com/edaniels/lidario
Minimal example opening a LAS file and reading its header.
package main
import (
"fmt"
"github.com/edaniels/lidario"
)
func main() {
// Example: open a LAS file
file, err := lidario.Open("pointcloud.las")
if err != nil {
fmt.Println(err)
return
}
defer file.Close()
fmt.Println("Point count:", file.Header.NumberPointRecords)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
0.0.0-20220607182921-5879aa7b96ddlatest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.