I need to read LAS file using C# and then convert it to xml using C# for my project. Any help would be appreciated.
I need to read the specific headers and Data under them. The headers basically start with ~ in the LAS file. I have worked on creating an XML using C#. But having problem in reading the LAS file using C#. I have tried using libLAS libraries available on net, but getting errors.
@17-06-2010
I am using the libLAS library into my project to read a LAS file and I am getting this error
(Unable to load DLL 'liblas1.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)).  Any help???
 
                        
You can create an XML document quite easily in C# using XmlWriter, contained in the System.Xml namespace. Here's an example of how you can use it: