OperativeDP_EPlanLabels Published by March 2020) Includes all layers for E-Plan
Heritage features, notable trees and landscape designations for district planning.
New Zealand heritage planning
Extent not published by this service Load live preview
Service facts Endpoint https://gismaps.hdc.govt.nz/server/rest/services/DistrictPlan/OperativeDP_EPlanLabels/MapServer Copy URL Type ESRI MapServer Layers 10 Formats PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP CRS EPSG:2193 CORS Enabled Response time 30 ms at last check Last verified 2026-07-24 Discovered 1 time by Geo Hound users Layers Id Layer Geometry Features 0 Cultural / Heritage 1 Notable Trees8 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID CommonName CommonName esriFieldTypeString Location Location esriFieldTypeString TreeSignificance TreeSignificance esriFieldTypeString Designation Designation esriFieldTypeString Accuracy Accuracy esriFieldTypeString Shape Shape esriFieldTypeGeometry ID ID esriFieldTypeString
point 2 Wāhi Taonga10 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID Designation Designation esriFieldTypeString SiteType SiteType esriFieldTypeString SHAPE Shape esriFieldTypeGeometry Significance Significance esriFieldTypeString Confidential Confidential esriFieldTypeString AltRef AltRef esriFieldTypeString Status Status esriFieldTypeString SHAPE_Length SHAPE_Length esriFieldTypeDouble SHAPE_Area SHAPE_Area esriFieldTypeDouble
polygon 3 Heritage Features14 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID TAG ID esriFieldTypeString Category Category esriFieldTypeString Building_Name Building_Name esriFieldTypeString Shape SHAPE esriFieldTypeGeometry OrderField OrderField esriFieldTypeSmallInteger PropertyNo PropertyNo esriFieldTypeInteger HeritageNZRef HeritageNZRef esriFieldTypeString CreatedDate CreatedDate esriFieldTypeDate CreatedBy CreatedBy esriFieldTypeString ModifiedDate ModifiedDate esriFieldTypeDate ModifiedBy ModifiedBy esriFieldTypeString SHAPE_Length SHAPE_Length esriFieldTypeDouble SHAPE_Area SHAPE_Area esriFieldTypeDouble
polygon 4 Landscape Areas / Features 5 Landscape Review7 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID Name Name esriFieldTypeString T12012_Typ T12012_Typ esriFieldTypeString Shape Shape esriFieldTypeGeometry AreaName Area esriFieldTypeString SHAPE_Length SHAPE_Length esriFieldTypeDouble SHAPE_Area SHAPE_Area esriFieldTypeDouble
polygon 6 Other 7 Scheduled Activities7 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID Zone Zone esriFieldTypeString PermittedActivities PermittedActivities esriFieldTypeString OrderField OrderField esriFieldTypeSmallInteger Shape Shape esriFieldTypeGeometry SHAPE_Length SHAPE_Length esriFieldTypeDouble SHAPE_Area SHAPE_Area esriFieldTypeDouble
polygon 8 Designations9 fields Name Alias Type Designation Designation esriFieldTypeString DesignatingAuthority DesignatingAuthority esriFieldTypeString OBJECTID OBJECTID esriFieldTypeOID SHAPE SHAPE esriFieldTypeGeometry DesignationPurpose DesignationPurpose esriFieldTypeString OrderField OrderField esriFieldTypeSmallInteger SHAPE_Length SHAPE_Length esriFieldTypeDouble SHAPE_Area SHAPE_Area esriFieldTypeDouble OldRefID OldRefID esriFieldTypeString
polygon 9 Contaminated Sites6 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID TAG TAG esriFieldTypeString Shape Shape esriFieldTypeGeometry Designation Designation esriFieldTypeString SHAPE_Length SHAPE_Length esriFieldTypeDouble SHAPE_Area SHAPE_Area esriFieldTypeDouble
polygon
Use this service QGIS Copy
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: OperativeDP_EPlanLabels
URL: https://gismaps.hdc.govt.nz/server/rest/services/DistrictPlan/OperativeDP_EPlanLabels/MapServer ArcGIS Pro Copy
Insert > Connections > Server > New ArcGIS Server
Server URL: https://gismaps.hdc.govt.nz/server/rest/services/DistrictPlan/OperativeDP_EPlanLabels/MapServer Leaflet Copy
fetch('https://gismaps.hdc.govt.nz/server/rest/services/DistrictPlan/OperativeDP_EPlanLabels/MapServer/0/query?where=1%3D1&outFields=*&f=geojson')
.then((r) => r.json())
.then((geojson) => L.geoJSON(geojson).addTo(map)); Python Copy
import geopandas as gpd
gdf = gpd.read_file(
'https://gismaps.hdc.govt.nz/server/rest/services/DistrictPlan/OperativeDP_EPlanLabels/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)