We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4912647 commit 6264334Copy full SHA for 6264334
README.md
@@ -204,8 +204,9 @@ val pc = ReadLas("/path/to/las") ~ FilterCrop() ~ WriteLas("/path/to/new/las")
204
val pcWithRawExpr = ReadLas("/path/to/las") ~ RawExpr(Map("type" -> "filters.crop").asJson) ~ WriteLas("/path/to/new/las")
205
206
// Create Pipelines from the constructed expressions
207
-val pipelinePc = pc.toPipeline
208
-val pipelinePc = pcWithRawExpr.toPipline
+val pipeline = pc.toPipeline
+
209
+val pipelineRaw = pcWithRawExpr.toPipline
210
```
211
212
## Build
0 commit comments