AHN Netherlands 0.5m DEM, Interpolated

  • The AHN DEM is a 0.5m resolution Digital Elevation Model (DEM) covering the Netherlands, derived from LIDAR data acquired between 2007 and 2012.

  • It provides ground level elevation data, with above-ground features like buildings and trees removed and interpolated.

  • The dataset is freely available as Open Data under the CC-0 license and can be accessed through Google Earth Engine.

  • This interpolated version utilizes a squared inverse distance weighting method for converting point cloud data to a 0.5m grid.

  • The dataset is hosted by AHN and accessible via the provided links for further exploration and use.

AHN/AHN2_05M_INT
Dataset Availability
2012-01-01T00:00:00Z–2012-01-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.Image("AHN/AHN2_05M_INT")
Tags
ahn dem elevation elevation-topography geophysical lidar netherlands

Description

The AHN DEM is a 0.5m DEM covering the Netherlands. It was generated from LIDAR data taken in the spring between 2007 and 2012.

It contains ground level samples with all other items above ground (such as buildings, bridges, trees etc.) removed. This version is interpolated; the areas where objects have been removed are filled with interpolated values. The point cloud was converted to a 0.5m grid using a squared inverse distance weighting method.

Bands

Pixel Size
0.5 meters

Bands

Name Units Pixel Size Description
elevation m meters

Elevation

Terms of Use

Terms of Use

The datasets of the AHN are available as Open Data. This means that the data can be used by anyone for free and without restrictions. For more information visit the Open Data page. Downloads are available under the terms of the CC-0 license.

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.Image('AHN/AHN2_05M_INT');
var elevation = dataset.select('elevation');
var elevationVis = {
  min: -5.0,
  max: 30.0,
};
Map.setCenter(5.76583, 51.855276, 16);
Map.addLayer(elevation, elevationVis, 'Elevation');
Open in Code Editor