[WIP] PointCloud Support (HDFS and S3 InputFormats, general PDAL support)#1849
Closed
pomadchin wants to merge 19 commits into
Closed
[WIP] PointCloud Support (HDFS and S3 InputFormats, general PDAL support)#1849pomadchin wants to merge 19 commits into
pomadchin wants to merge 19 commits into
Conversation
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
ce43670 to
bad3cbd
Compare
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
bad3cbd to
71dfe82
Compare
27bab06 to
ca949d9
Compare
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
ca949d9 to
5cba8f9
Compare
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
ffd0d88 to
a5c5c44
Compare
lossyrob
suggested changes
Nov 30, 2016
| val outExtent = mapTransform(outKey) | ||
| val newBytes = mutable.ArrayBuffer[Array[Byte]]() | ||
|
|
||
| cfor(0)(_ < pointCloud.length, _ + 1) { i => |
Member
There was a problem hiding this comment.
This is iterating over the points for each extent. We should be able to do this by iterating over the points once.
Sketch: have a Map[SpatialKey, Array[Byte]] that will hold the result.
Iterate over the points
use mapTransform(x, y) to get the spatial Key.
if the key exists in the map, add it to the array, or else initialize that key
5796d7e to
07afadb
Compare
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
07afadb to
248c3f9
Compare
Member
|
Closing, this is merged into the feature branch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #1816 after locationtech move
Be sure, that you have installed PDAL JNI bindings, and correctly installed
LD_LIBRARY_PATH.If you use MAC OS, please install
LD_LIBRARY_PATHas well (it is related to GeoTrellis projects only),