OGC WMSData directory
WMS TopPlusOpen
Published by Dienstleistungszentrum des Bundes für Geoinformation und Geodäsie
Worldwide basemap with emphasis on free German federal and state geodata.
Service facts
- Endpoint
- https://sg.geodatenzentrum.de/wms_topplus_open?SERVICE=WMS&LAYERS=web&REQUEST=GetCapabilities&VERSION=1.3.0&FORMAT=image%2Fpng&STYLES=&CRS=EPSG%3A25832&TRANSPARENT=true&t=550&zufall=0.07257930434796223
- Type
- OGC WMS
- Layers
- 6
- Formats
- image/png, image/png8, image/png24, image/png32, image/jpeg
- CRS
- CRS:84, EPSG:4326, EPSG:3857, EPSG:4258, EPSG:25832, EPSG:25833, EPSG:4647, EPSG:5650, EPSG:3034, EPSG:3035, EPSG:3044, EPSG:3045, EPSG:31466, EPSG:31467, EPSG:31468, EPSG:31469, EPSG:5676, EPSG:5677, EPSG:5678, EPSG:5679, EPSG:4839, EPSG:5243
- CORS
- Enabled
- Response time
- 2537 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|---|---|---|
| web | TopPlusOpen | ||
| web_grau | TopPlusOpen Graustufen | ||
| web_scale | TopPlusOpen (Upscale) | ||
| web_scale_grau | TopPlusOpen Graustufen (Upscale) | ||
| web_light | TopPlusOpen Light | ||
| web_light_grau | TopPlusOpen Light Grau |
Use this service
QGIS
Layer > Add Layer > Add WMS/WMTS Layer > New Name: WMS TopPlusOpen URL: https://sg.geodatenzentrum.de/wms_topplus_open
ArcGIS Pro
Insert > Connections > Server > New WMS Server Server URL: https://sg.geodatenzentrum.de/wms_topplus_open
Leaflet
L.tileLayer.wms('https://sg.geodatenzentrum.de/wms_topplus_open', {
layers: 'web',
format: 'image/png',
transparent: true,
}).addTo(map);Python
import requests
params = {
'SERVICE': 'WMS', 'REQUEST': 'GetMap', 'VERSION': '1.3.0',
'LAYERS': 'web', 'CRS': 'EPSG:4326',
'BBOX': '-90,-180,90,180', 'WIDTH': 720, 'HEIGHT': 360,
'FORMAT': 'image/png',
}
png = requests.get('https://sg.geodatenzentrum.de/wms_topplus_open', params=params).content