중요

번역은 여러분이 참여할 수 있는 커뮤니티 활동입니다. 이 페이지는 현재 72.80% 에서 번역되고 있습니다.

28.1.12. Point Cloud Conversion

NEW in 3.32

28.1.12.1. 포맷 변환하기

Converts a point cloud to a different file format, e.g. creates a compressed .LAZ.

파라미터

라벨

이름

유형

설명

Input layer

INPUT

[point cloud]

Input point cloud layer to convert

Converted

OUTPUT

[point cloud]

기본값: [Save to temporary file]

Specify the point cloud file to use as output. One of:

  • 임시 파일로 저장

  • 파일로 저장…

산출물

라벨

이름

유형

설명

Converted

OUTPUT

[point cloud]

Output point cloud layer in a modified file format. Currently supported formats are .LAS, .LAZ, .COPC.LAZ and .VPC.

파이썬 코드

Algorithm ID: pdal:convertformat

import processing
processing.run("algorithm_id", {parameter_dictionary})

공간 처리 툴박스에 있는 알고리즘 위에 마우스를 가져가면 알고리즘 ID 를 표시합니다. 파라미터 목록(dictionary) 은 파라미터 이름 및 값을 제공합니다. 파이썬 콘솔에서 공간 처리 알고리즘을 어떻게 실행하는지 자세히 알고 싶다면 콘솔에서 공간 처리 알고리즘 사용 을 참조하세요.

28.1.12.2. Export to raster

Exports point cloud data to a 2D raster grid having cell size of given resolution, writing values from the specified attribute.

../../../../_images/point_cloud_exportraster.png

그림 28.10 Raster output using Intensity attribute of points

파라미터

기본 파라미터

라벨

이름

유형

설명

Input layer

INPUT

[point cloud]

Input point cloud layer to export

Attribute

ATTRIBUTE

[field] [enumeration]

A Field of the point cloud layer to extract the values from

Resolution of the density raster

RESOLUTION

[number]

기본값: 1.0

Cell size of the output raster

Tile size for parallel runs

TILE_SIZE

[number]

기본값: 1000

Exported

OUTPUT

[raster]

기본값: [Save to temporary file]

Specify the raster file to export the data to. One of:

  • 임시 파일로 저장

  • 파일로 저장…

고급 파라미터

라벨

이름

유형

설명

Filter expression

부가적

FILTER_EXPRESSION

[expression]

A PDAL expression for selecting a subset of features in the point cloud data

Cropping extent

부가적

FILTER_EXTENT

[extent]

A map extent for selecting a subset of features in the point cloud data

다음과 같은 메소드를 사용할 수 있습니다:

  • 레이어로부터 계산…: 현재 프로젝트에 불러온 레이어의 범위를 사용합니다.

  • 레이어 맵으로부터 계산…: 활성 프로젝트의 조판 맵 항목 범위를 사용합니다.

  • 북마크로부터 계산…: 저장되어 있는 북마크 의 범위를 사용합니다.

  • 맵 캔버스 범위 사용

  • 캔버스에 그리기: 연산에 넣을 범위를 정하는 직사각형을 클릭&드래그합니다.

  • 좌표를 xmin, xmax, ymin, ymax 로 입력

X origin of a tile for parallel runs

부가적

ORIGIN_X

[number]

Y origin of a tile for parallel runs

부가적

ORIGIN_Y

[number]

산출물

라벨

이름

유형

설명

Exported

OUTPUT

[raster]

Output raster layer features of the point cloud layer are exported to. Currently supported format is .TIF.

파이썬 코드

Algorithm ID: pdal:exportraster

import processing
processing.run("algorithm_id", {parameter_dictionary})

공간 처리 툴박스에 있는 알고리즘 위에 마우스를 가져가면 알고리즘 ID 를 표시합니다. 파라미터 목록(dictionary) 은 파라미터 이름 및 값을 제공합니다. 파이썬 콘솔에서 공간 처리 알고리즘을 어떻게 실행하는지 자세히 알고 싶다면 콘솔에서 공간 처리 알고리즘 사용 을 참조하세요.

28.1.12.3. Export raster (using triangulation)

Exports point cloud data to a 2D raster grid using a triangulation of points and then interpolating cell values from triangles.

참고

Using this algorithm can be slower if you are dealing with a large dataset. If your point cloud is dense, you can export your ground points as a raster using the Export to raster algorithm.

../../../../_images/point_cloud_exportrastertin.png

그림 28.11 Terrain raster output generated by point cloud triangulation

파라미터

기본 파라미터

라벨

이름

유형

설명

Input layer

INPUT

[point cloud]

Input point cloud layer to export

Resolution of the density raster

RESOLUTION

[number]

기본값: 1.0

Cell size of the output raster

Tile size for parallel runs

TILE_SIZE

[number]

기본값: 1000

Exported

OUTPUT

[raster]

기본값: [Save to temporary file]

Specify the raster file to export the data to. One of:

  • 임시 파일로 저장

  • 파일로 저장…

고급 파라미터

라벨

이름

유형

설명

Filter expression

부가적

FILTER_EXPRESSION

[expression]

A PDAL expression for selecting a subset of features in the point cloud data

Cropping extent

부가적

FILTER_EXTENT

[extent]

A map extent for selecting a subset of features in the point cloud data

다음과 같은 메소드를 사용할 수 있습니다:

  • 레이어로부터 계산…: 현재 프로젝트에 불러온 레이어의 범위를 사용합니다.

  • 레이어 맵으로부터 계산…: 활성 프로젝트의 조판 맵 항목 범위를 사용합니다.

  • 북마크로부터 계산…: 저장되어 있는 북마크 의 범위를 사용합니다.

  • 맵 캔버스 범위 사용

  • 캔버스에 그리기: 연산에 넣을 범위를 정하는 직사각형을 클릭&드래그합니다.

  • 좌표를 xmin, xmax, ymin, ymax 로 입력

X origin of a tile for parallel runs

부가적

ORIGIN_X

[number]

Y origin of a tile for parallel runs

부가적

ORIGIN_Y

[number]

산출물

라벨

이름

유형

설명

Exported (using triangulation)

OUTPUT

[raster]

Output raster layer features of the point cloud layer are exported to. Currently supported format is .TIF.

파이썬 코드

Algorithm ID: pdal:exportrastertin

import processing
processing.run("algorithm_id", {parameter_dictionary})

공간 처리 툴박스에 있는 알고리즘 위에 마우스를 가져가면 알고리즘 ID 를 표시합니다. 파라미터 목록(dictionary) 은 파라미터 이름 및 값을 제공합니다. 파이썬 콘솔에서 공간 처리 알고리즘을 어떻게 실행하는지 자세히 알고 싶다면 콘솔에서 공간 처리 알고리즘 사용 을 참조하세요.

28.1.12.4. Export to vector

Exports point cloud data to a vector layer with 3D points (a GeoPackage), optionally with extra attributes.

../../../../_images/point_cloud_exportvector.png

그림 28.12 Exporting point cloud (ground points) to a vector layer styled based on the elevation

파라미터

기본 파라미터

라벨

이름

유형

설명

Input layer

INPUT

[point cloud]

Input point cloud layer to export

Attribute

부가적

ATTRIBUTE

[field] [list]

One or more fields of the point cloud layer to export with the points.

Exported

OUTPUT

[vector]

기본값: [Save to temporary file]

Specify the vector file to export the data to. One of:

  • 임시 파일로 저장

  • 파일로 저장…

고급 파라미터

라벨

이름

유형

설명

Filter expression

부가적

FILTER_EXPRESSION

[expression]

A PDAL expression for selecting a subset of features in the point cloud data

Cropping extent

부가적

FILTER_EXTENT

[extent]

A map extent for selecting a subset of features in the point cloud data

다음과 같은 메소드를 사용할 수 있습니다:

  • 레이어로부터 계산…: 현재 프로젝트에 불러온 레이어의 범위를 사용합니다.

  • 레이어 맵으로부터 계산…: 활성 프로젝트의 조판 맵 항목 범위를 사용합니다.

  • 북마크로부터 계산…: 저장되어 있는 북마크 의 범위를 사용합니다.

  • 맵 캔버스 범위 사용

  • 캔버스에 그리기: 연산에 넣을 범위를 정하는 직사각형을 클릭&드래그합니다.

  • 좌표를 xmin, xmax, ymin, ymax 로 입력

산출물

라벨

이름

유형

설명

Exported

OUTPUT

[vector]

Output vector layer features of the point cloud layer are exported to. Currently supported format is .GPKG.

파이썬 코드

Algorithm ID: pdal:exportvector

import processing
processing.run("algorithm_id", {parameter_dictionary})

공간 처리 툴박스에 있는 알고리즘 위에 마우스를 가져가면 알고리즘 ID 를 표시합니다. 파라미터 목록(dictionary) 은 파라미터 이름 및 값을 제공합니다. 파이썬 콘솔에서 공간 처리 알고리즘을 어떻게 실행하는지 자세히 알고 싶다면 콘솔에서 공간 처리 알고리즘 사용 을 참조하세요.