Guest User

Untitled

a guest
Oct 19th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. json = """
  2. {
  3. "pipeline": [
  4. "input.las",
  5. {
  6. "type": "filters.normal"
  7. },
  8. {
  9. "type": "filters.poisson"
  10. }
  11. ]
  12. }"""
  13.  
  14. import pdal
  15. pipeline = pdal.Pipeline(json)
  16. pipeline.validate() # check if our JSON and options were good
  17. count = pipeline.execute()
Add Comment
Please, Sign In to add comment