Encroachments Published by gis.wcc.govt.nz
Property encroachments on public land and agreements for Wellington City
New Zealand planning boundaries
Extent not published by this service Load live preview
Service facts Endpoint https://gis.wcc.govt.nz/arcgis/rest/services/PropertyAndBoundaries/Encroachments/MapServer Copy URL Type ESRI MapServer Layers 2 Formats PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP CRS EPSG:2193 CORS Enabled Response time 52 ms at last check Last verified 2026-07-24 Discovered 1 time by Geo Hound users Layers Id Layer Geometry Features 3 Encroachments19 fields Name Alias Type OBJECTID ObjectId esriFieldTypeOID encroachid Encroachment ID esriFieldTypeInteger filerefno File Ref Number esriFieldTypeInteger address Address esriFieldTypeString encroacharea Encroachment Area esriFieldTypeDouble enc_subtype Encroachment Subtype esriFieldTypeSmallInteger enc_domain Encroachment Domain esriFieldTypeString active Active esriFieldTypeString shared Shared esriFieldTypeString notes Notes esriFieldTypeString captured Captured esriFieldTypeDate updated Updated esriFieldTypeDate url url esriFieldTypeString floor floor esriFieldTypeString shape Shape esriFieldTypeGeometry GlobalID GlobalID esriFieldTypeGlobalID Town_Reserve Town & Reserve esriFieldTypeString shape.STArea() shape.STArea() esriFieldTypeDouble shape.STLength() shape.STLength() esriFieldTypeDouble
polygon 1 Park and Reserve Encroachments25 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID Shape Shape esriFieldTypeGeometry agreement_holder Agreement Holder esriFieldTypeString expiry_date Date of Expiry esriFieldTypeDate Shape_Length Shape_Length esriFieldTypeDouble Shape_Area Shape_Area esriFieldTypeDouble management_team Team Managing Encroachment esriFieldTypeString primary_type Primary Encroachment Type esriFieldTypeString secondary_type Secondary Encroachment Type esriFieldTypeString status Encroachment Status esriFieldTypeString assessment_date Date of Assessment esriFieldTypeDate owner_met Met with Land Owner esriFieldTypeString letter_date Letter Delivered/Posted Date esriFieldTypeDate agreement_date Signed Agreement Date esriFieldTypeDate removal_date Agreed Encroachment Removal Date esriFieldTypeDate reinstate_date Agreed Encroachment Re-instatement Date esriFieldTypeDate address Street Address esriFieldTypeString reserve Reserve Name esriFieldTypeString reserve_type Reserve Type esriFieldTypeString vision_no Vision Property Number esriFieldTypeString progress_notes Communication Progress Notes esriFieldTypeString other_notes Other Notes esriFieldTypeString sharepoint_URL SharePoint URL esriFieldTypeString GlobalID GlobalID esriFieldTypeGlobalID ward ward esriFieldTypeString
polygon
Use this service QGIS Copy
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: Encroachments
URL: https://gis.wcc.govt.nz/arcgis/rest/services/PropertyAndBoundaries/Encroachments/MapServer ArcGIS Pro Copy
Insert > Connections > Server > New ArcGIS Server
Server URL: https://gis.wcc.govt.nz/arcgis/rest/services/PropertyAndBoundaries/Encroachments/MapServer Leaflet Copy
fetch('https://gis.wcc.govt.nz/arcgis/rest/services/PropertyAndBoundaries/Encroachments/MapServer/3/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://gis.wcc.govt.nz/arcgis/rest/services/PropertyAndBoundaries/Encroachments/MapServer/3/query?where=1%3D1&outFields=*&f=geojson'
)