Planning
Published by map.devon.gov.uk
Waste and minerals planning designations including strategic sites.
Devon, United Kingdomplanningzoning
Extent not published by this service Service facts
- Endpoint
- https://map.devon.gov.uk/arcgis/rest/services/Environment/Planning/MapServer
- Type
- ESRI MapServer
- Layers
- 25
- Formats
- PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP
- CRS
- EPSG:27700
- CORS
- Enabled
- Response time
- 1262 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|
| 0 | Devon Waste Plan 2011-2031 | | |
| 1 | Strategic Energy Recovery Sites [Policy W6]3 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | Site_Name | Site | esriFieldTypeString | | Shape | Shape | esriFieldTypeGeometry |
| polygon | |
| 2 | Existing and Permitted Waste Sites [Policy W10]5 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | District | District | esriFieldTypeString | | Site | Site | esriFieldTypeString | | Facility_1 | Facility | esriFieldTypeString | | OBJECTID_1 | OBJECTID_1 | esriFieldTypeOID |
| polygon | |
| 3 | Waste Consultation Zones [Policy W10]11 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | Site | Site | esriFieldTypeString | | District | District | esriFieldTypeString | | Facility_1 | Facility | esriFieldTypeString | | OBJECTID_1 | OBJECTID_1 | esriFieldTypeInteger | | Shape_STAr | Shape_STAr | esriFieldTypeDouble | | Shape_STLe | Shape_STLe | esriFieldTypeDouble | | BUFF_DIST | BUFF_DIST | esriFieldTypeDouble | | ORIG_FID | ORIG_FID | esriFieldTypeInteger | | OBJECTID_12 | OBJECTID_12 | esriFieldTypeOID | | Shape_Leng | Shape_Leng | esriFieldTypeDouble |
| polygon | |
| 4 | Devon Minerals Plan 2011-2033 | | |
| 5 | Strategic Green Infrastructure Corridors [Policy M6]2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| line | |
| 6 | Sensitive Frontages [Policy M6]2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| line | |
| 7 | Ball Clay Long Term Working Area [Policy M6]2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| polygon | |
| 8 | Ball Clay Mineral Working Area [Policy M4]2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| polygon | |
| 9 | Sand and Gravel Preferred Area [Policy M12]2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| polygon | |
| 10 | Hillhead Planning Permission 2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| polygon | |
| 11 | China Clay Mineral Working Area [Policies M7 & M8]2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| polygon | |
| 12 | Drakelands Mineral Working Area [Policy M9]2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| polygon | |
| 13 | Drakelands Lateral Extension [Policy M9]2 fields| Name | Alias | Type |
|---|
| Shape | Shape | esriFieldTypeGeometry | | OBJECTID | OBJECTID | esriFieldTypeOID |
| polygon | |
| 14 | Mineral Consultation Areas | | |
All 25 layers
| 15 | Industrial Minerals MCA [Policy M2] | polygon | |
| 16 | Aggregates MCA [Policy M2] | polygon | |
| 17 | Building Stone & Chalk MCA [Policy M2] | polygon | |
| 22 | Mineral Safeguarding Areas | | |
| 24 | Industrial Minerals MSA [Policy M2] | polygon | |
| 20 | Aggregates MSA [Policy M2] | polygon | |
| 21 | Building Stone & Chalk MSA [Policy M2] | polygon | |
| 18 | Planning Applications determined by Devon County Council | polygon | |
| 25 | Article 4 Direction | | |
| 19 | Codden Hill | polygon | |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: Planning
URL: https://map.devon.gov.uk/arcgis/rest/services/Environment/Planning/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server
Server URL: https://map.devon.gov.uk/arcgis/rest/services/Environment/Planning/MapServer
Leaflet
fetch('https://map.devon.gov.uk/arcgis/rest/services/Environment/Planning/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://map.devon.gov.uk/arcgis/rest/services/Environment/Planning/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)