cl-las

2022-11-07

Library to manipulate LAS files

Upstream URL

github.com/mgi/cl-las

Author

Manuel Giraud <manuel@ledu-giraud.fr>

License

Not determined

README

1cl-las

This Common Lisp library gives a basic access to the de facto standard LAS files as defined here:

http://www.asprs.org/Committee-General/LASer-LAS-File-Format-Exchange-Activities.html

For simple usage, the UI is straightforward. You open a LAS file with the with-las macro and then you can access its points with the read-point-at function. A point is an object and you have accessors to get its slots' values.

(las:with-las (las "~/tmp/foo.las")
  (loop for i below (las:las-number-of-points las)
        collect (las:x (las:read-point-at i las :scale-p t))))

Dependencies (1)

  • binary-io

Dependents (0)

    • GitHub
    • Quicklisp