0

我正在尝试使用 PDAL 的 Python 扩展来读取 laz 文件。

为此,我使用了此处示例的简单管道结构:https ://gis.stackexchange.com/questions/303334/accessing-raw-data-from-laz-file-in-python-with-open-源软件。但是,插入“文件名:”字段的变量中包含的值对我很有用。为此,我尝试了以下操作,其中 fullFileName 是一个包含文件名称(完整路径)的 str 变量,但我收到一个错误,即不存在此类文件。我假设我的 JSON 语法有点偏离或什么的;谁能帮忙?

    pipeline="""{
    "pipeline": [
            {
                    "type": "readers.las",
                    "filename": "{fullFileName}"
                    }
            ]
    }"""
4

1 回答 1

1

您可以按照以下代码:

import json
import pdal

file = "D:/Lidar data/input.laz"

pipeline={
  "pipeline": [
    {
        "type": "readers.las",
        "filename": file
    },
    {
        "type": "filters.sort",
        "dimension": "Z"
    }
  ]
}

r = pdal.Pipeline(json.dumps(pipeline))
r.validate()
points = r.execute()
print(points)
于 2019-05-15T16:34:06.753 回答