Skip to content

Instantly share code, notes, and snippets.

@nickponline
Created March 7, 2018 06:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickponline/16d661e25116cad08f73479bcd5f8748 to your computer and use it in GitHub Desktop.
Save nickponline/16d661e25116cad08f73479bcd5f8748 to your computer and use it in GitHub Desktop.
config.json
{
"pipeline":[
"input.las",
{
"type":"filters.reprojection",
"in_srs":"EPSG:4326",
"out_srs":"EPSG:3857"
},
{
"type":"filters.voxelgrid",
"leaf_x" : 0.5,
"leaf_y" : 0.5,
"leaf_z" : 0.5
},
{
"type":"filters.lof",
"minpts":20
},
{
"type":"filters.pmf",
"initial_distance" : 0.1,
"slope" : 0.1
},
{
"type":"filters.range",
"limits":"Classification[1:1]"
},
{
"type":"filters.cluster",
"min_points" : 50,
"tolerance" : 3.0
},
{
"type":"filters.range",
"limits":"ClusterID![0:0]"
},
"output.las"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment