Claire Foster
Claire Foster
Just a quick note: > In this version, I have added a Laszip executable in the repo It seems @evetion has made https://github.com/evetion/LazIO.jl for laz support, so presumably you should...
There's also some mention of incorporating scaling/offset into the type at https://github.com/visr/LasIO.jl/issues/4. Ideally I think the las positions should includes the affine transformation in their type. You might be able...
Thinking more about this, I suspect we don't need to go inventing new things because the pieces already exist in `CoordinateTransformations` and `MappedArrays`: ```julia julia> points_int32 = SVector{3,Int32}[(1,2,3), (4,5,6)] 2-element...
I believe with `MappedArrays` we can simply map `RawLasPoint` (fictional name) to `LasPoint`, and have `LasPoint` contain a `SVector{3,Float64}` in the correct geospatial coordinate system. I don't think any of...
> Is there value in some generic supertype like [PointClouds.jl](https://github.com/FugroRoames/PointClouds.jl)? PointClouds.jl is quite abandoned now, but it's a good question. For completely generic processing of point cloud data (not specific...
> Based on what you describe, at what point does it become a task of essentially re-creating RoamesGeometry/ Roames ecosystem? Interesting question though I'm not sure I know how to...
Yeah I found RowTables.jl as well, but it doesn't look applicable. I also asked on slack, but to no avail so I think you'd have to build a new table...
> I'm still in doubt if I want that as one "point" column or as three separate columns In my experience I want it as a point column for work...
I'm really happy to have this package, but the API, I think, could definitely be refined a bit. Perhaps it's worth considering a simultaneous first release of: * Version 0.0.1,...
> What do you think about merging the laszip branch for v0.0.1 as well Am I correct in thinking you're just piping through an external laszip binary for this, and...