base_data_ext
Published by default
Gisborne addresses, localities, and road networks.
Gisborne, New Zealandaddressesroads
Extent not published by this service Service facts
- Endpoint
- https://maps.gdc.govt.nz/hosting/rest/services/Data/base_data_ext/MapServer
- Type
- ESRI MapServer
- Layers
- 8
- Formats
- PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP
- CRS
- EPSG:2193
- CORS
- Enabled
- Response time
- 245 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|
| 0 | Addresses9 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | SHAPE | Shape | esriFieldTypeGeometry | | FEATURECOD | Feature Code | esriFieldTypeString | | ROADNAME | Roadname | esriFieldTypeString | | X_COORD | X Coord | esriFieldTypeDouble | | Y_COORD | Y Coord | esriFieldTypeDouble | | ADDRESS | Address | esriFieldTypeString | | RUBBISHDAY | Rubbish Day | esriFieldTypeString | | NAME | Name | esriFieldTypeString |
| point | |
| 1 | Gisborne Localities | | |
| 2 | Main Locations5 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | ID | ID | esriFieldTypeDouble | | NAME | Name | esriFieldTypeString | | Population | Population | esriFieldTypeSmallInteger |
| point | |
| 3 | Minor Locations3 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | NAME | Name | esriFieldTypeString |
| point | |
| 4 | All Locations8 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | NAME | Name | esriFieldTypeString | | EASTING | Easting | esriFieldTypeInteger | | NORTHING | Northing | esriFieldTypeInteger | | DESCRIPTIO | Description | esriFieldTypeString | | DISTRICT_N | District Name | esriFieldTypeString | | LATITUDE | Latitude | esriFieldTypeDouble | | LONGITUDE | Longitude | esriFieldTypeDouble |
| point | |
| 5 | Railways4 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | SHAPE | Shape | esriFieldTypeGeometry | | name | Name | esriFieldTypeString | | SHAPE_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 6 | Road Names18 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | HIERARCHY | Hierarchy | esriFieldTypeString | | ROADNAME | Road Name | esriFieldTypeString | | Code | Code | esriFieldTypeString | | Status | Status | esriFieldTypeString | | Suburb | Suburb | esriFieldTypeString | | Comments | Comments | esriFieldTypeString | | Name_Only | Name Only | esriFieldTypeString | | Roadtype | Road type | esriFieldTypeString | | Roadsuffix | Road Suffix | esriFieldTypeString | | SH_num | SH Number | esriFieldTypeString | | Fullname | Fullname | esriFieldTypeString | | Location | Location | esriFieldTypeString | | MainLocation | Main Location | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble | | no_go_zone | No Go Zone | esriFieldTypeString | | Priority | Priority | esriFieldTypeString |
| line | |
| 7 | Road Centrelines19 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | ROADNAME | Road Name | esriFieldTypeString | | Location | Location | esriFieldTypeString | | Suburb | Suburb | esriFieldTypeString | | HIERARCHY | Hierarchy | esriFieldTypeString | | ROAD_STATU | Status | esriFieldTypeString | | Status | Status | esriFieldTypeString | | road_LENGTH | Road Length | esriFieldTypeDouble | | Shape_Length | Shape_Length | esriFieldTypeDouble | | OBJECTID | OBJECTID | esriFieldTypeOID | | Code | Code | esriFieldTypeString | | Comments | Comments | esriFieldTypeString | | Name_Only | Name Only | esriFieldTypeString | | Roadtype | Road Type | esriFieldTypeString | | Roadsuffix | Road Suffix | esriFieldTypeString | | SH_num | SH Num | esriFieldTypeString | | MainLocation | Main Location | esriFieldTypeString | | no_go_zone | No Go Zone | esriFieldTypeString | | Priority | Priority | esriFieldTypeString |
| line | |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: base_data_ext
URL: https://maps.gdc.govt.nz/hosting/rest/services/Data/base_data_ext/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server
Server URL: https://maps.gdc.govt.nz/hosting/rest/services/Data/base_data_ext/MapServer
Leaflet
fetch('https://maps.gdc.govt.nz/hosting/rest/services/Data/base_data_ext/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://maps.gdc.govt.nz/hosting/rest/services/Data/base_data_ext/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)