Public Transport Published by pagen
GIS service providing recreation, transport, boundaries data.
Wellington, New Zealand recreation transport boundaries
Extent not published by this service Load live preview
Service facts Endpoint https://mapping1.gw.govt.nz/arcgis/rest/services/GW/Public_Transport_P/MapServer Copy URL Type ESRI MapServer Layers 6 Formats PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP CRS EPSG:2193 CORS Enabled Response time 17 ms at last check Last verified 2026-07-24 Discovered 1 time by Geo Hound users Layers Id Layer Geometry Features 0 Park and Ride Sites5 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID LINE LINE esriFieldTypeString SPACES SPACES esriFieldTypeDouble Shape Shape esriFieldTypeGeometry NAME NAME esriFieldTypeString
point 1 PT Stops7 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID Service Service esriFieldTypeString Mode Mode esriFieldTypeString Stop Stop esriFieldTypeString X X esriFieldTypeDouble Y Y esriFieldTypeDouble Shape Shape esriFieldTypeGeometry
point 2 Public Transport Routes7 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID Shape Shape esriFieldTypeGeometry DESCRIPTION DESCRIPTION esriFieldTypeString SERVICE SERVICE esriFieldTypeString DIRECTION DIRECTION esriFieldTypeString ServiceType ServiceType esriFieldTypeString Shape_Length Shape_Length esriFieldTypeDouble
line 3 Park_and_Ride_Areas18 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID Line Line esriFieldTypeString Station Station esriFieldTypeString Spaces Spaces esriFieldTypeInteger Fare_Zone Fare_Zone esriFieldTypeString Owner Owner esriFieldTypeString Managing_Agency Managing_Agency esriFieldTypeString Lot_name Lot_name esriFieldTypeString Off_street Off_Street esriFieldTypeString CCTV CCTV esriFieldTypeString More_spaces More_spaces esriFieldTypeString Size Size esriFieldTypeString Notes Notes esriFieldTypeString Shape Shape esriFieldTypeGeometry Shape_STArea_1 Shape_STArea_1 esriFieldTypeDouble Shape_STLength_1 Shape_STLength_1 esriFieldTypeDouble Shape_Length Shape_Length esriFieldTypeDouble Shape_Area Shape_Area esriFieldTypeDouble
polygon 4 Fare_Zone_Boundary_Polygons_Outlines5 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID ZONE ZONE esriFieldTypeDouble Shape Shape esriFieldTypeGeometry Shape_Length Shape_Length esriFieldTypeDouble Shape_Area Shape_Area esriFieldTypeDouble
polygon 5 Fare_Zone_Boundary_Polygons5 fields Name Alias Type OBJECTID OBJECTID esriFieldTypeOID ZONE ZONE esriFieldTypeDouble Shape Shape esriFieldTypeGeometry 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: Public Transport
URL: https://mapping1.gw.govt.nz/arcgis/rest/services/GW/Public_Transport_P/MapServer ArcGIS Pro Copy
Insert > Connections > Server > New ArcGIS Server
Server URL: https://mapping1.gw.govt.nz/arcgis/rest/services/GW/Public_Transport_P/MapServer Leaflet Copy
fetch('https://mapping1.gw.govt.nz/arcgis/rest/services/GW/Public_Transport_P/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://mapping1.gw.govt.nz/arcgis/rest/services/GW/Public_Transport_P/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)