แม้ว่าจะไม่ใช่ไลบรารี 'Python' อย่างเคร่งครัด แต่เป็นชุดของเครื่องมือเสริมอื่น ๆ โดยเฉพาะ GRASS มี 'ARSF DEM Scripts' ซึ่งฉันได้เขียนไว้:
https://github.com/pmlrsg/arsf_dem_scripts
หนึ่งในเป้าหมายคือเพื่อจัดเตรียมชุดทั่วไปของฟังก์ชั่น Python สำหรับเครื่องมือบรรทัดคำสั่งที่แตกต่างกัน (เรียกว่าการใช้กระบวนการย่อย) ด้วยการmethod
ตั้งค่าสถานะที่ใช้เพื่อระบุเครื่องมือ
ตัวอย่างการใช้งานเพื่อสร้างภาพ 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)
มีค่อนข้างน้อยเครื่องมือการประมวลผล LiDAR สามารถผ่านกระดาษห่อ GRASS หลามซึ่งยังสามารถนำมาใช้แทน / arsf_dem
นอกเหนือไปจากสิ่งที่จะผ่านที่มีอยู่