엄격하게 'Python'라이브러리가 아니라 다른 도구, 특히 GRASS 용 래퍼 세트이지만 필자가 작성한 'ARSF DEM Scripts'가 있습니다.
https://github.com/pmlrsg/arsf_dem_scripts
목표 중 하나는 도구 method
를 지정하는 데 사용되는 플래그 와 함께 다른 명령 줄 도구 (하위 프로세스 사용)에 대한 일반적인 Python 함수 세트를 제공하는 것입니다 .
DSM, 강도 및 밀도 이미지를 생성하는 사용 예는 다음과 같습니다.
from arsf_dem import dem_lidar
# DSM image (GRASS, points2grid, SPDLib, FUSION or licensed LAStools)
dem_lidar.las_to_dsm('in_las.las', 'out_dsm.tif',
method='points2grid')
# Intensity image (GRASS or licensed version of LAStools)
dem_lidar.las_to_intensity('in_las.las', 'out_intensity.tif',
method='GRASS')
# Density image (GRASS only)
dem_lidar.grass_lidar.las_to_density('in_las.las', 'out_density.tif',
bin_size=10)
GRASS Python 래퍼를 통해 사용할 수있는 LiDAR 처리 도구는 상당히 많으며,이 도구를 통해 사용 가능한 도구 외에 / 대신 사용할 수도 있습니다 arsf_dem
.