【问题标题】:reading in and merging multiple .las in a pdal pipeline file在 pdal 管道文件中读入和合并多个 .las
【发布时间】:2019-09-17 13:40:38
【问题描述】:

我可以在管道文件中读取和输出单个 .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"
    }
  ]
}

【问题讨论】:

    标签: pipeline pdal


    【解决方案1】:

    这似乎只是测试它。

    {
      "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"
        }
      ]
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2021-10-29
      • 2019-10-03
      • 2016-07-06
      • 2019-05-15
      • 1970-01-01
      • 1970-01-01
      • 2019-11-29
      • 2021-06-13
      相关资源
      最近更新 更多