Search found 28 matches

by Jälv
Sun Jul 30, 2017 11:15 pm
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83734

Re: libLAS/PDAL

Looking at the unittest of PDAL I think I understood how to use the streaming API, now I need to make it work with CloudCompare.
by Jälv
Fri Jul 28, 2017 8:13 am
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83734

Re: libLAS/PDAL

Ok, let me know if you have problems, For now there are still a few things i need to fix: - When writing, some clouds gets shifted to the upper right by bbMin.x/2 and bbMax.y/2 - The spatial reference is not saved yet And also, with PDAL the actual file reading and writing doesn't happen during the ...
by Jälv
Mon Jul 17, 2017 7:57 am
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83734

Re: libLAS/PDAL

I also had the json/json.h issue and I must do the same thing as you did, copy the json/json.h folder from the pdal/vendor folder For the WinSock2.h I think I have the same issue using Visual 2017 (and MSVC 2017), so instead I tell Visual Studio 2017 to use MSVC 2015 (which can be installed from the...
by Jälv
Wed Jul 12, 2017 11:04 pm
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83734

Re: libLAS/PDAL

I ended up asking PDAL's team for some help, and they delivered. PDAL produces 2 libs: pdalcpp and pdal_util. I was linking to pdalcpp as it is what's in the PDAL_LIBRARIES CMake variable. But, it turns out that on windows you also have to explicitly link pdal_util So I was able to compile and quick...
by Jälv
Mon Jul 10, 2017 11:44 am
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83734

Re: libLAS/PDAL

Strange, I built it easily using OSGeo4W64 to install the dependencies as recommended in the basic build steps

However, the libs in OSGeo4W must have been compiled with another version of msvc that I am using which might be the reason why I can compile PDAl but can't use it.
by Jälv
Fri Jul 07, 2017 3:32 pm
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83734

Re: libLAS/PDAL

I have no idea if it's planned on their side, at least I haven't found clues telling me that it's planned.
Maybe I should ask them what's the status of waveform data support.

And why not try to implement it in PDAL for them if it's not something completely out of my league...
by Jälv
Mon Jul 03, 2017 2:47 pm
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83734

Re: libLAS/PDAL

I didn't know about the LASlib based filter .
I fear PDAL won't be really useful then, as it does not currently support any point format that stores FWF
by Jälv
Sun Jul 02, 2017 10:16 pm
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83734

Re: libLAS/PDAL

Hello, For the past few days/weeks, I've been working on replacing liblas with PDAL. (GitHub) At the moment the las reader is on par with what was done with liblas (or almost). The las writer is almost done I would say, it need more testing, so if anyone has some "tricky" files to test... ...