我可以在管道文件中读入和输出单个.las文件。
如何读入两个.las文件,合并它们,然后根据下面的示例应用过滤器和输出?
{
"pipeline":[
{
"type":"readers.las",
"filename":"E:\\offload\\3dspatial\\processed\\99.526\\201406071257\\201406071257.las",
"spatialreference":"EPSG:32635"
},
{
"type":"filters.chipper",
"capacity":600
},
{
"type":"writers.pgpointcloud",
"connection":"host='localhost' dbname='db' user='user' password='pw'",
"schema":"pointcloud_99_526",
"table":"pc_201406071257",
"compression":"dimensional",
"srid":"32635"
}
]
}发布于 2019-04-29 05:50:37
这似乎只需要测试一下就行了。
{
"pipeline":[
{
"type":"readers.las",
"filename":"E:\\offload\\3dspatial\\processed\\99.526\\201607150650\\201607150650.las",
"spatialreference":"EPSG:32635",
"tag":"A"
},
{
"type":"readers.las",
"filename":"E:\\offload\\3dspatial\\processed\\99.526\\201607140910\\201607140910.las",
"spatialreference":"EPSG:32635",
"tag":"B"
},
{
"type":"filters.merge",
"tag":"merged",
"inputs":[
"A",
"B"
]
},
{
"type":"filters.chipper",
"capacity":600
},
{
"type":"writers.pgpointcloud",
"connection":<info>,
"schema":"pointcloud_99_526",
"table":"pc_merge_201607150650_201607140910",
"compression":"dimensional",
"srid":"32635"
}
]
}https://stackoverflow.com/questions/55894751
复制相似问题