pylidar is a Python package developed for use with LIDAR data
At the moment pylidar only supports Digital Surface Model (DSM) files in the .asc format. It stores the LIDAR data internally using numpy
, a fast and efficient numerical python package. It uses the matplotlib
library to provide plotting abilities to help visualise the data.
from pylidar import LIDAR, plt, np
y = LIDAR('../LIDAR/st7564_dsm_1m.asc')
y.plot_shaded()