
- Dataset Availability
- 2012-01-01T00:00:00Z–2012-01-01T00:00:00
- Dataset Provider
- AHN
- Earth Engine Snippet
-
ee.Image("AHN/AHN2_05M_RUW")
Sign up for Earth Engine
Earth Engine is free to use for research, education, and nonprofit use.
To access this dataset in Earth Engine, please sign up for Earth Engine then return to this page.
- Tags
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.
This version contains both ground level samples and items above ground level (such as buildings, bridges, trees etc). The point cloud was converted to a 0.5m grid using an squared inverse distance weighting method.
Bands
Resolution
0.5 meters
Bands
Name | Units | Description |
---|---|---|
elevation |
m | 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 in Earth Engine
var dataset = ee.Image('AHN/AHN2_05M_RUW'); 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');