[GIS] Viewing LiDAR data from web browser

3dlidarsoftware-recommendationsvisualisationweb-mapping

I am looking to host lidar data on my own server and give clients the ability to view that data through a web browser as a 3D point cloud (file would be in .las format or equivalent), possibly with the ability to measure features.

Does anyone know of an easy to implement piece of software that can do this?

I am not nessecarily looking for open source, and I would prefer something plug and play because I am not a programmer.

Best Answer

I'm a little late to the party but here is another suggestion: http://potree.org/

It's an open souce, WebGL based point cloud viewer I've been working on for quite a while.

== UPDATE ==

It can render large amounts of colored point clouds. LIDAR data without colors will be supported soon.

Potree is based on three.js which means, you can also do everything that three.js offers, like rendering meshes, splines, lights, shadows, etc.

enter image description here

== OLD ==

Here is a nice demo: http://potree.org/demo/pompei/pompei.html
And here is a showcase from pix4d using potree: http://pix4d.com/discover-interact-3d-pointclouds/

Source code is available at github: https://github.com/potree/potree

And currently I'm working on a rewrite from scratch as a three.js based project: http://potree.org/demo/potree_rewrite/

This rewrite will have to advantage, that you will be able to use everything three.js has to offer as well, once it's finished.