Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <Pipeline version="1.0">
  3. <Writer type="writers.pgpointcloud">
  4. <Option name="spatialreference">EPSG:28355</Option>
  5. <Option name="connection">dbname='lidardb' user='lidar' host='localhost'
  6. port='5432' password='123'</Option>
  7. <Option name="table">test</Option>
  8. <Option name="srid">928355</Option>
  9. <Filter type="filters.voxelgrid">
  10. <Option name="leaf_x">1.0</Option>
  11. <Option name="leaf_y">1.0</Option>
  12. <Option name="leaf_z">1.0</Option>
  13. <Reader type="readers.las">
  14. <Option name="filename">run1.las</Option>
  15. <Option name="spatialreference">EPSG:28355</Option>
  16. </Reader>
  17. </Filter>
  18. </Writer>
  19. </Pipeline>
  20.  
  21. >: pdal pipeline downsample_pipelineLAS.xml
  22.  
  23. PDAL: Couldn't create filter stage of type 'filters.voxelgrid'.
  24.  
  25. >: pdal --drivers
  26.  
  27. ========================= ======================================================================================================================================
  28. Name Description
  29. ========================= ======================================================================================================================================
  30. filters.chipper Organize points into spatially contiguous, squarish, and non-overlapping chips.
  31. filters.colorization Fetch and assign RGB color information from a GDAL-readable datasource.
  32. filters.crop Filter points inside or outside a bounding box or a polygon if PDAL was built with GEOS support.
  33. filters.decimation Rank decimation filter. Keep every Nth point
  34. filters.ferry Copy date from one dimension to another.
  35. filters.merge Merge data from two different readers into a single stream.
  36. filters.mortonorder Morton or z-order sorting of points. See http://en.wikipedia.org/wiki/Z-order_curve for more detail.
  37. filters.range Pass only points given a dimension/range.
  38. filters.reprojection Reproject data using GDAL from one coordinate system to another.
  39. filters.sort Sort data based on a given dimension.
  40. filters.splitter Split data based on a X/Y box length.
  41. filters.stats Compute statistics about each dimension (mean, min, max, etc.)
  42. filters.transformation Transform each point using a 4x4 transformation matrix
  43. readers.bpf "Binary Point Format" (BPF) reader support. BPF is a simple DoD and research format that is used by some sensor and processing
  44. chains.
  45. readers.faux Faux Reader
  46. readers.gdal Read GDAL rasters as point clouds.
  47. readers.ilvis2 ILVIS2 Reader
  48. readers.las ASPRS LAS 1.0 - 1.4 read support. LASzip support is also enabled through this driver if LASzip was found during compilation.
  49. readers.optech Optech reader support.
  50. readers.pgpointcloud Read data from pgpointcloud format. "query" option needs to be a SQL statment selecting the data.
  51. readers.ply Read ply files.
  52. readers.qfit QFIT Reader
  53. readers.sbet SBET Reader
  54. readers.terrasolid TerraSolid Reader
  55. readers.tindex TileIndex Reader
  56. writers.bpf "Binary Point Format" (BPF) writer support. BPF is a simple DoD and research format that is used by some sensor and processing
  57. chains.
  58. writers.derivative Derivative writer
  59. writers.las ASPRS LAS 1.0 - 1.4 writer. LASzip support is also available if enabled at compile-time. Note that LAZ does not provide LAS 1.4
  60. support at this time.
  61. writers.null Null writer. Provides a sink for points in a pipeline. It's the same as sending pipeline output to /dev/null.
  62. writers.pgpointcloud Write points to PostgreSQL pgpointcloud output
  63. writers.ply ply writer
  64. writers.sbet SBET Writer
  65. writers.text Text Writer
  66. ========================= ======================================================================================================================================
  67.  
  68. >: pdal --version
  69. ----------------------------------------------------------------------------------------------------------------------------------------------------------------
  70. pdal 1.1.0 (git-version: Release)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement