Skip to content

Commit

Permalink
Production Deploy (#2820)
Browse files Browse the repository at this point in the history
Co-authored-by: Jessica McInchak <[email protected]>
  • Loading branch information
Mike-Heneghan and jessicamcinchak authored Feb 27, 2024
1 parent 6b92ea6 commit 51e5ea3
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api.planx.uk/modules/gis/service/digitalLand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ const localAuthorityMetadata: Record<string, LocalAuthorityMetadata> = {
camden: require("./local_authorities/metadata/camden"),
canterbury: require("./local_authorities/metadata/canterbury"),
doncaster: require("./local_authorities/metadata/doncaster"),
gateshead: require("./local_authorities/metadata/gateshead"),
lambeth: require("./local_authorities/metadata/lambeth"),
medway: require("./local_authorities/metadata/medway"),
newcastle: require("./local_authorities/metadata/newcastle"),
southwark: require("./local_authorities/metadata/southwark"),
tewkesbury: require("./local_authorities/metadata/tewkesbury"),
};

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
LAD20CD: E08000037
LAD20NM: Gateshead
LAD20NMW:
FID:
https://www.planning.data.gov.uk/entity/?dataset=article-4-direction-area&geometry_curie=statistical-geography%3AE08000037&entry_date_day=&entry_date_month=&entry_date_year=
https://docs.google.com/spreadsheets/d/13RdEvCfydfSx6R6p4S742xubOhfea-tvR3n95sYUpvs/edit#gid=0
*/

import { LocalAuthorityMetadata } from "../../digitalLand";

const planningConstraints: LocalAuthorityMetadata["planningConstraints"] = {
article4: {
// Planx granular values link to Digital Land article-4-direction dataset and entity.reference
records: {
"article4.gateshead.saltwell.D1": "A401-01",
"article4.gateshead.saltwell.D2": "A402-01",
"article4.gateshead.saltwell.D3": "A403-01",
"article4.gateshead.saltwell.D4": "A404-01",
"article4.gateshead.saltwell.D5": "A405-01",
},
},
};

export { planningConstraints };
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
LAD20CD: E07000083
LAD20NM: Tewkesbury
LAD20NMW:
FID:
https://www.planning.data.gov.uk/entity/?dataset=article-4-direction-area&geometry_curie=statistical-geography%3AE07000083&entry_date_day=&entry_date_month=&entry_date_year=#52.00734014476549,-2.034074923920798,15.123289382038873z
https://docs.google.com/spreadsheets/d/19VMxVhzIt3z1CcvlhELuUxablfbw40Ri/edit#gid=1979469480
*/

import { LocalAuthorityMetadata } from "../../digitalLand";

const planningConstraints: LocalAuthorityMetadata["planningConstraints"] = {
article4: {
// Planx granular values link to Digital Land article-4-direction dataset and entity.reference
records: {
"article4.tewkesbury.ashleworthgreen": "A4Da2",
"article4.tewkesbury.buckland": "A4Da3",
"article4.tewkesbury.dumbleton": "A4Da4",
"article4.tewkesbury.forthampton": "A4Da5",
"article4.tewkesbury.laverton": "A4Da7",
"article4.tewkesbury.stanton": "A4Da8",
"article4.tewkesbury.tewkesbury": "A4Da9",
"article4.tewkesbury.twyningchurchend": "A4Da1",
"article4.tewkesbury.washbourne": "A4Da6",
"article4.tewkesbury.winchcombe": "A4Da10",
},
},
};

export { planningConstraints };
Loading

0 comments on commit 51e5ea3

Please sign in to comment.