-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Hook up granular A4 GIS API variables for Gloucester (#3411)
Co-authored-by: Dafydd Llŷr Pearson <[email protected]>
- Loading branch information
1 parent
f73b730
commit 15786e7
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
api.planx.uk/modules/gis/service/local_authorities/metadata/gloucester.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
LAD20CD: E07000081 | ||
LAD20NM: Gloucester | ||
LAD20NMW: | ||
FID: | ||
https://www.planning.data.gov.uk/entity/?dataset=article-4-direction&dataset=article-4-direction-area&geometry_curie=statistical-geography%3AE07000081&entry_date_day=&entry_date_month=&entry_date_year= | ||
https://docs.google.com/spreadsheets/d/1ALSH4hiupdUlrA7Rq7jhfHnWr0-PcB-IzhsztPLl7FY/edit?gid=0#gid=0 | ||
*/ | ||
|
||
import { LocalAuthorityMetadata } from "../../digitalLand"; | ||
|
||
const planningConstraints: LocalAuthorityMetadata["planningConstraints"] = { | ||
article4: { | ||
// Planx granular values link to Digital Land entity.reference | ||
records: { | ||
"article4.gloucester.southgateStreetConservationArea": | ||
"Southgate Street Conservation Area", | ||
"article4.gloucester.stMichaelsSquare": | ||
"St Michael’s Square Article 4 direction", | ||
}, | ||
}, | ||
}; | ||
|
||
export { planningConstraints }; |