NaturalHazards
Published by maps.es.govt.nz
Earthquakes, faults, flooding, tsunami and landslide hazards.
New Zealandfloodcoastalgeology
Extent not published by this service Service facts
- Endpoint
- https://maps.es.govt.nz/server/rest/services/Public/NaturalHazards/MapServer
- Type
- ESRI MapServer
- Layers
- 12
- Formats
- PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP
- CRS
- EPSG:2193
- CORS
- Enabled
- Response time
- 225 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|
| 0 | Alerts8 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Site | Site | esriFieldTypeString | | AlertLevel | Alert Level | esriFieldTypeString | | Type | Type | esriFieldTypeString | | Comments | Comments | esriFieldTypeString | | Label | Label | esriFieldTypeString | | Link | Link | esriFieldTypeString | | SHAPE | SHAPE | esriFieldTypeGeometry |
| point | |
| 1 | Localities4 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | PointName | Point Name | esriFieldTypeString | | PointDescription | Point Description | esriFieldTypeString | | SHAPE | Shape | esriFieldTypeGeometry |
| point | |
| 2 | Active Faults4 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | NAME | Name | esriFieldTypeString | | ZONE | Zone | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry |
| line | |
| 3 | Flooding | | |
| 4 | Flood Photos6 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Date | Date | esriFieldTypeString | | Type | Type | esriFieldTypeString | | Aspect | Aspect | esriFieldTypeString | | URL | URL | esriFieldTypeString | | SHAPE | SHAPE | esriFieldTypeGeometry |
| point | |
| 5 | ES Dams3 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | NAME | Name | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry |
| point | |
| 6 | ES Stopbanks10 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | ReachID | Reach ID | esriFieldTypeString | | Scheme | Scheme | esriFieldTypeString | | River | River | esriFieldTypeString | | Bank | Bank | esriFieldTypeString | | ReachPurpose | Reach Purpose | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry | | UrbanRural | Urban or Rural | esriFieldTypeString | | Catchment | Catchment | esriFieldTypeString | | OperationalArea | Operational Area | esriFieldTypeString |
| line | |
| 7 | Significant Floodplains4 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Region | Region | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry | | GlobalID | GlobalID | esriFieldTypeGlobalID |
| polygon | |
| 8 | Tsunami Evacuation Zones6 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Name | Name | esriFieldTypeString | | Type | Type | esriFieldTypeString | | Zone | Zone | esriFieldTypeString | | ZoneText | Zone Text | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry |
| polygon | |
| 9 | Stewart Island Land Use Capability6 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | UNIT_NO | Unit No | esriFieldTypeDouble | | CAPABILITY | Capability | esriFieldTypeString | | CapabilityClass | Capability Class | esriFieldTypeString | | CapabilityDetails | Capability Detail | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry |
| polygon | |
| 10 | Shaking Amplification5 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | AMP_CODE | AMP_CODE | esriFieldTypeString | | GroundClass | GroundClass | esriFieldTypeString | | Description | Description | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry |
| polygon | |
| 11 | Liquefaction Risk4 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | LIQ_RISK | Liquefaction Risk | esriFieldTypeString | | Description | Description | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry |
| polygon | |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: NaturalHazards
URL: https://maps.es.govt.nz/server/rest/services/Public/NaturalHazards/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server
Server URL: https://maps.es.govt.nz/server/rest/services/Public/NaturalHazards/MapServer
Leaflet
fetch('https://maps.es.govt.nz/server/rest/services/Public/NaturalHazards/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.es.govt.nz/server/rest/services/Public/NaturalHazards/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)