diff --git a/api.planx.uk/modules/gis/service/digitalLand.ts b/api.planx.uk/modules/gis/service/digitalLand.ts index 0768711f96..4e13f3ca48 100644 --- a/api.planx.uk/modules/gis/service/digitalLand.ts +++ b/api.planx.uk/modules/gis/service/digitalLand.ts @@ -26,6 +26,7 @@ const localAuthorityMetadata: Record = { camden: require("./local_authorities/metadata/camden"), canterbury: require("./local_authorities/metadata/canterbury"), doncaster: require("./local_authorities/metadata/doncaster"), + "epsom-and-ewell": require("./local_authorities/metadata/epsomAndEwell"), gateshead: require("./local_authorities/metadata/gateshead"), lambeth: require("./local_authorities/metadata/lambeth"), medway: require("./local_authorities/metadata/medway"), diff --git a/api.planx.uk/modules/gis/service/local_authorities/metadata/epsomAndEwell.ts b/api.planx.uk/modules/gis/service/local_authorities/metadata/epsomAndEwell.ts new file mode 100644 index 0000000000..0880301d9b --- /dev/null +++ b/api.planx.uk/modules/gis/service/local_authorities/metadata/epsomAndEwell.ts @@ -0,0 +1,49 @@ +/* +LAD20CD: E07000208 +LAD20NM: Epsom and Ewell +LAD20NMW: +FID: + +https://www.planning.data.gov.uk/entity/?dataset=article-4-direction-area&geometry_curie=statistical-geography%3AE07000208&entry_date_day=&entry_date_month=&entry_date_year= +https://docs.google.com/spreadsheets/d/1BzYZ_YvJjOrY2afxPGWbPvV2g_FLBr0H/edit#gid=125611981 +*/ + +import { LocalAuthorityMetadata } from "../../digitalLand"; + +const planningConstraints: LocalAuthorityMetadata["planningConstraints"] = { + article4: { + // Planx granular values link to Digital Land article-4-direction and entity.reference + records: { + "article4.epsomAndEwell.burghheath": "11/00003/ART4", + "article4.epsomAndEwell.churchstreet": "11/00004/ART4", + "article4.epsomAndEwell.college": "11/00005/ART4", + "article4.epsomAndEwell.downs": "11/00006/ART4", + "article4.epsomAndEwell.ewellvillage": "11/00002/ART4", + "article4.epsomAndEwell.highergreenlongdown": "05/00002/ART4", + "article4.epsomAndEwell.lintons": "11/00007/ART4", + "article4.epsomAndEwell.pikes": "12/00002/ART4", + "article4.epsomAndEwell.pikesPart": "11/00008/ART4", + "article4.epsomAndEwell.stamfordgreen": "05/00001/ART4", + "article4.epsomAndEwell.greenewelldowns": "05/00004/ART4", + "article4.epsomAndEwell.worple": "11/00009/ART4", + "article4.epsomAndEwell.adelphi": "16/00008/ART4", + "article4.epsomAndEwell.aplanhouse": "16/00013/ART4", + "article4.epsomAndEwell.bradfordhouse": "16/00013/ART4", + "article4.epsomAndEwell.eastleighhouse": "16/00005/ART4", + "article4.epsomAndEwell.emeraldhouse": "16/00009/ART4", + "article4.epsomAndEwell.epsomchase": "16/00004/ART4", + "article4.epsomAndEwell.epsomgateway": "16/00015/ART4", + "article4.epsomAndEwell.globalhouse": "16/00016/ART4", + "article4.epsomAndEwell.horizonhouse": "16/00012/ART4", + "article4.epsomAndEwell.newplanhouse": "16/00006/ART4", + "article4.epsomAndEwell.nightingalehouse": "16/00007/ART4", + "article4.epsomAndEwell.oakshouse": "16/00014/ART4", + "article4.epsomAndEwell.parksidehouse": "16/00017/ART4", + "article4.epsomAndEwell.sollishouse": "16/00011/ART4", + "article4.epsomAndEwell.thekirkgate": "16/00019/ART4", + "article4.epsomAndEwell.thewells": "16/00018/ART4", + }, + }, +}; + +export { planningConstraints };