厳密には「Python」ライブラリではなく、他のツール、特にGRASS用のラッパーのセットですが、私が書いた「ARSF DEMスクリプト」があります。
https://github.com/pmlrsg/arsf_dem_scripts
目的の1つは、ツール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
。