Lesson 3. How lidar point clouds are converted to raster data formats


Learning Objectives

  • Describe the basic process of how a lidar point cloud is converted into a raster.
  • Describe the structural differences between a raster dataset and a lidar point cloud.

In the last lesson, you learned about lidar point clouds. In this lesson, you will learn how a point cloud is converted into a gridded or raster data format.

How a Lidar System Records Points

Remember that lidar is an active remote sensing system that records reflected or returned light energy. A discrete return lidar system, records the strongest reflections of light as discrete or individual points.

Each point has an associated X, Y and Z value associated with it. It also has an intensity which represents the amount of reflected light energy that returned to the sensor.

Example of a lidar waveform
An example lidar waveform. Source: NEON.

Gridded or Raster LiDAR Data Products

Point clouds provide a lot of information, scientifically. However, they can be difficult to work with given the size of the data and tools that are available to handle large volumns of points.

LiDAR data products are often created and stored in a gridded or raster data format. The raster format can be easier for many people to work with and also is supported by many different commonly used software packages.

lidar data on top of a raster. LEFT: Lidar data points overlayed on top of a hillshade which represents elevation in a graphical 3-dimensional view. RIGHT: If you zoom in on a portion of the data, you will see that the elevation data consists of cells or pixels, And there are lidar data points that fall within most of the pixels.
LEFT: Lidar data points overlayed on top of a hillshade which represents elevation in a graphical 3-dimensional view. RIGHT: If you zoom in on a portion of the data, you will see that the elevation data consists of cells or pixels and there are lidar data points that fall within most of the pixels.

For a review of raster data, check out the chapter on Fundamentals of Raster Data.

Creating a Raster from LiDAR Point Clouds

There are different ways to create a raster from LiDAR point clouds. Let’s look at one of the most basic ways to create a raster file points - gridding. When you grid raster data, you calculate a value for each pixel or cell in your raster dataset using the points that are spatially located within that cell. To do this:

  1. A grid is placed on top of the LiDAR data in geographic space. Each cell in the grid has the same spatial dimensions. These dimensions represent that particular area on the ground. If you want to derive a 1 m resolution raster from the lidar data, you will overlay a 1m by 1m grid over the LiDAR data points.
  2. Within each 1 m x 1 m cell, you calculate a value to be applied to that cell, using the LiDAR points found within that cell. The simplest method of doing this is to take the max, min or mean height value of all lidar points found within the 1 m cell. If you use this approach, you might have cells in the raster that do not contain any lidar points. These cells will have a “no data” value if you process your raster in this way.

Point to Raster Methods - Interpolation

A different approach is to interpolate the value for each cell. Interpolation considers the values of points outside of the cell in addition to points within the cell to calculate a value. Interpolation also often uses statistical operations (math) to calculate the cell value.

Interpolation is useful because it can provide you with some ability to predict or calculate cell values in areas where there are no data (or no points), and to quantify the error associated with those predictions (which is useful to know if you are doing research).

You will not learn about interpolation in today’s class, but will learn about it later in this course.

Animation Showing the general process of taking lidar point clouds and converting them to a Raster Format
Animation Showing the general process of taking lidar point clouds and converting them to a Raster Format. Source: Tristan Goulden, NEON.

Leave a Comment