transportation_ext
Published by maps.gdc.govt.nz
Gisborne public transport routes, bus stops, cycle ways, parking and rail infrastructure.
Gisborne, New Zealandtransportroads
Extent not published by this service Service facts
- Endpoint
- https://maps.gdc.govt.nz/hosting/rest/services/Roading/transportation_ext/MapServer
- Type
- ESRI MapServer
- Layers
- 28
- Formats
- PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP
- CRS
- EPSG:2193
- CORS
- Enabled
- Response time
- 149 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|
| 0 | Bus Routes and Stops | | |
| 1 | Bus Stops6 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Name | Name | esriFieldTypeString | | Address | Address | esriFieldTypeString | | bus_stop_id | Bus Stop ID | esriFieldTypeSmallInteger | | Timing | Timing | esriFieldTypeString |
| point | |
| 35 | Bus Routes 2025 | | |
| 36 | City 15 fields| Name | Alias | Type |
|---|
| Type | Type | esriFieldTypeString | | OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 37 | City 25 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble | | Type | Type | esriFieldTypeString |
| line | |
| 38 | City 35 fields| Name | Alias | Type |
|---|
| Type | Type | esriFieldTypeString | | OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 39 | WK 1015 fields| Name | Alias | Type |
|---|
| Type | Type | esriFieldTypeString | | OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 40 | WK 1025 fields| Name | Alias | Type |
|---|
| Type | Type | esriFieldTypeString | | OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 41 | WK 1035 fields| Name | Alias | Type |
|---|
| Type | Type | esriFieldTypeString | | OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 42 | WK 1045 fields| Name | Alias | Type |
|---|
| Type | Type | esriFieldTypeString | | OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 43 | WK 1055 fields| Name | Alias | Type |
|---|
| Type | Type | esriFieldTypeString | | OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 44 | WK 1065 fields| Name | Alias | Type |
|---|
| Type | Type | esriFieldTypeString | | OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Route | Route | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 6 | Cycle & Walkways | | |
| 7 | City Cycle and Walkways5 fields| Name | Alias | Type |
|---|
| OBJECTID_1 | OBJECTID_1 | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Name | Name | esriFieldTypeString | | SURFACE | Surface Type | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
| 3 | Proposed Cycle / Walkways4 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Shape | Shape | esriFieldTypeGeometry | | Name | Name | esriFieldTypeString | | Shape_Length | Shape_Length | esriFieldTypeDouble |
| line | |
All 28 layers
| 9 | New Zealand Walkways | line | |
| 10 | Kaiti Hill (Titirangi) Walking Tracks | line | |
| 11 | Whataupoko Park Trails (Mountain Bike) | line | |
| 12 | Motu Cycle Trail | line | |
| 13 | Rere Falls Cycle Trail | line | |
| 14 | Parking | | |
| 15 | Parking Location | point | |
| 16 | Parking Restriction | line | |
| 17 | Parking Meter | line | |
| 18 | Special Area | line | |
| 19 | Boundary | line | |
| 29 | Railways | line | |
| 45 | Road Areas | polygon | |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: transportation_ext
URL: https://maps.gdc.govt.nz/hosting/rest/services/Roading/transportation_ext/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server
Server URL: https://maps.gdc.govt.nz/hosting/rest/services/Roading/transportation_ext/MapServer
Leaflet
fetch('https://maps.gdc.govt.nz/hosting/rest/services/Roading/transportation_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/Roading/transportation_ext/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)