Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

eneral

The AHN dataset contains the topography of the Netherlands.

...

The full list is available at https://www.pdok.nl/nl/producten/pdok-services/overzicht-urlsImage Removed

The relevant url's are:
WMS:

WFS:

WMTS:

WCS

If you're using QGIS you can use the pdok plugin which is very handy (in dutch).

...

To download the data use one of the atomfeeds to get a list of files.

https://www.pdok.nl/nl/producten/pdok-downloads/atomfeedsImage Removed

Examples

Qgis

: Load the PDOK plugin. Add the AHN2 WMTS service from the list (for viewing). You should see something like:

Python

Notebook: https://svn.oss.deltares.nl/repos/openearthtools/trunk/python/notebooks/ahn2.ipynbImage Removed

Matlab

OpenEarthTOols has a function wcs and wms for using the web services, which can be dowloaded here after registration.

Code Block

server = 'http://geodata.nationaalgeoregister.nl/ahn2/wms?';
[url,OPT,lim] = wcs('server',server,...
    'coverage','ahn2:ahn2_5m',... % shoudl not work: GeoTIFF (case)
    'format','GeoTiff',...
    'crs','epsg:4326',...
    'axis',[94000 466000 96000 468000],...
    'resx',5,'resy',5);

other

Grontmij made a nice overview of possible use cases.

...