ESRI MapServerData directory
Layers
Published by tiles.arcgis.com
100mm elevation contours for Gisborne derived from 2018-2020 LiDAR data.
Service facts
- Endpoint
- https://tiles.arcgis.com/tiles/8G10QCd84QpdcTJ9/arcgis/rest/services/Gisborne_100mm_Contours_NZVD16_/MapServer
- Type
- ESRI MapServer
- Layers
- 1
- Formats
- MIXED
- CRS
- EPSG:2193
- CORS
- Enabled
- Response time
- 359 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|---|---|---|
| 0 | Contour 100mm | line |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New Name: Layers URL: https://tiles.arcgis.com/tiles/8G10QCd84QpdcTJ9/arcgis/rest/services/Gisborne_100mm_Contours_NZVD16_/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server Server URL: https://tiles.arcgis.com/tiles/8G10QCd84QpdcTJ9/arcgis/rest/services/Gisborne_100mm_Contours_NZVD16_/MapServer
Leaflet
fetch('https://tiles.arcgis.com/tiles/8G10QCd84QpdcTJ9/arcgis/rest/services/Gisborne_100mm_Contours_NZVD16_/MapServer/0/query?where=1%3D1&outFields=*&f=geojson')
.then((r) => r.json())
.then((geojson) => L.geoJSON(geojson).addTo(map));Python
import geopandas as gpd
gdf = gpd.read_file(
'https://tiles.arcgis.com/tiles/8G10QCd84QpdcTJ9/arcgis/rest/services/Gisborne_100mm_Contours_NZVD16_/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)