diff --git a/api.planx.uk/gis/helpers.js b/api.planx.uk/gis/helpers.js index aa561ca988..7f61d6a8d0 100644 --- a/api.planx.uk/gis/helpers.js +++ b/api.planx.uk/gis/helpers.js @@ -111,7 +111,7 @@ const getManualConstraints = (metadata) => { metadata[constraint]["value"] = false; metadata[constraint]["type"] = "check"; - metadata[constraint]["data"] = {}; + metadata[constraint]["data"] = []; manualConstraints[constraint] = metadata[constraint]; } diff --git a/api.planx.uk/gis/local_authorities/buckinghamshire.js b/api.planx.uk/gis/local_authorities/buckinghamshire.js index 64ffe5e717..f62d8b8b25 100644 --- a/api.planx.uk/gis/local_authorities/buckinghamshire.js +++ b/api.planx.uk/gis/local_authorities/buckinghamshire.js @@ -13,7 +13,7 @@ const { planningConstraints } = require("./metadata/buckinghamshire.js"); // Process local authority metadata const gisLayers = getQueryableConstraints(planningConstraints); const preCheckedLayers = getManualConstraints(planningConstraints); -const articleFours = {}; // "planningConstraints.article4.records" in future +const articleFours = planningConstraints.article4.records; // Fetch a data layer async function search( @@ -70,7 +70,10 @@ async function go(x, y, siteBoundary, extras) { try { if (data.features.length > 0) { - const { attributes: properties } = data.features[0]; + // account for multiple, overlapping features in a single source + const properties = []; + data.features.forEach(feature => properties.push(feature.attributes)); + acc[k] = { ...planningConstraints[key].pos(properties), value: true, @@ -83,7 +86,7 @@ async function go(x, y, siteBoundary, extras) { text: planningConstraints[key].neg, value: false, type: "check", - data: {}, + data: [], }; } } @@ -94,28 +97,28 @@ async function go(x, y, siteBoundary, extras) { return acc; }, { - ...Object.values(articleFours).reduce((acc, curr) => { - acc[curr] = { value: false }; - return acc; - }, {}), ...preCheckedLayers, ...extras, } ); - ob["article4.buckinghamshire.officetoresi"] = { - value: ob["article4"]?.data?.DESCRIPTIO?.startsWith( - "Change of use from offices to residential" - ) - ? true - : false, - }; - - ob["article4.buckinghamshire.poultry"] = { - value: ob["article4"]?.data?.DEV_TYPE?.toLowerCase().includes("poultry") - ? true - : false, - }; + // Loop through article4 features and set granular planx values + if (ob["article4"].data.length > 0) { + ob["article4"].data.forEach((d) => { + (Object.keys(articleFours)).forEach((key) => { + // Account for line breaks/newlines in DEV_TYPE formatting + if (d.DEV_TYPE.replace(/\r?\n|\r/g, " ") === articleFours[key] || ob[key]?.value) { + ob[key] = { value: true } + } else if (d.INT_ID === articleFours[key] || ob[key]?.value) { + ob[key] = { value: true } + } else if (d.DESCRIPTIO.startsWith(articleFours[key]) || ob[key]?.value) { + ob[key] = { value: true } + } else { + ob[key] = { value: false } + } + }); + }); + } // Add summary "designated" key to response const obWithDesignated = addDesignatedVariable(ob); diff --git a/api.planx.uk/gis/local_authorities/metadata/buckinghamshire.js b/api.planx.uk/gis/local_authorities/metadata/buckinghamshire.js index 926de16795..6b91c868ce 100644 --- a/api.planx.uk/gis/local_authorities/metadata/buckinghamshire.js +++ b/api.planx.uk/gis/local_authorities/metadata/buckinghamshire.js @@ -18,77 +18,170 @@ const planningConstraints = { source: bucksDomain, id: "PLANNING/RIPA_BOPS", serverIndex: 5, - fields: ["OBJECTID", "DEV_TYPE", "DESCRIPTIO", "DISTRICT", "DATE_CONF"], + fields: ["OBJECTID", "INT_ID", "DEV_TYPE", "DESCRIPTIO", "DISTRICT"], neg: "is not subject to any Article 4 restrictions", pos: (data) => ({ text: "is subject to Article 4 restriction(s)", description: data.DESCRIPTIO, }), - records: { - 0: "article4.buckinghamshire.AD186731", - 1: "article4.buckinghamshire.AD285884", - 2: "article4.buckinghamshire.AD287247", - 3: "article4.buckinghamshire.AD390975", - 4: "article4.buckinghamshire.amershamroad", - 5: "article4.buckinghamshire.amershamroadeast", - 6: "article4.buckinghamshire.bakerswood", - 7: "article4.buckinghamshire.bakerswoodbrokengate", - 8: "article4.buckinghamshire.ballingerroadnorth", - 9: "article4.buckinghamshire.boismoorroad", - 10: "article4.buckinghamshire.bourneend", - 11: "article4.buckinghamshire.bovingdonheights", - 12: "article4.buckinghamshire.bovingdonheights.a", - 13: "article4.buckinghamshire.bovingdonheights.b", - 14: "article4.buckinghamshire.bryantsbottomroad", - 15: "article4.buckinghamshire.chessfieldparkenclosure", - 16: "article4.buckinghamshire.commonwoodenclosure", - 17: "article4.buckinghamshire.commonwoodpennroad", - 18: "article4.buckinghamshire.cooperskinslaneenclosure", - 19: "article4.buckinghamshire.copperkinslanecaravan", - 20: "article4.buckinghamshire.cryershillroad", - 21: "article4.buckinghamshire.deanfield", - 22: "article4.buckinghamshire.ferrylane", - 23: "article4.buckinghamshire.georgegreen", - 24: "article4.buckinghamshire.gravellyway", - 25: "article4.buckinghamshire.greenstreetfarm", - 26: "article4.buckinghamshire.hampdenroad", - 27: "article4.buckinghamshire.junctionhughendenroad", - 28: "article4.buckinghamshire.lakeendroad", - 29: "article4.buckinghamshire.lodgelane", - 30: "article4.buckinghamshire.lodgelaneenclosure", - 31: "article4.buckinghamshire.mansionlanesouth", - 32: "article4.buckinghamshire.mansionlanewest", - 33: "article4.buckinghamshire.ministrywharf", - 35: "article4.buckinghamshire.nightingaleslane", - 36: "article4.buckinghamshire.northpark", - 37: "article4.buckinghamshire.officetoresi", - 38: "article4.buckinghamshire.os262", - 39: "article4.buckinghamshire.os3313", - 40: "article4.buckinghamshire.os5200", - 41: "article4.buckinghamshire.os6961", - 42: "article4.buckinghamshire.os8050", - 43: "article4.buckinghamshire.pednorroadcaravan", - 44: "article4.buckinghamshire.pednorroaddrydelllane", - 45: "article4.buckinghamshire.pednorroadenclosure", - 46: "article4.buckinghamshire.pennroad", - 47: "article4.buckinghamshire.phillipshillfarm", - 48: "article4.buckinghamshire.potterrowcaravan", - 49: "article4.buckinghamshire.potterrowenclosure", - 50: "article4.buckinghamshire.poultry", - 51: "article4.buckinghamshire.robertswooddrive", - 52: "article4.buckinghamshire.saunderton", - 53: "article4.buckinghamshire.sedgesfarm", - 54: "article4.buckinghamshire.sheepcotedellroad", - 55: "article4.buckinghamshire.sibleyscoppice", - 56: "article4.buckinghamshire.skimmersorchard", - 57: "article4.buckinghamshire.stokenchurch", - 58: "article4.buckinghamshire.threeoaksfarm", - 59: "article4.buckinghamshire.valleyroad", - 60: "article4.buckinghamshire.wellcottage", - 61: "article4.buckinghamshire.woodlandsmeadow", - 62: "article4.buckinghamshire.wyburnwood", - 63: "article4.buckinghamshire.wycombehealthfarmnortheast", - 64: "article4.buckinghamshire.wycombehealthfarmspurlands", + records: { // planx value to "DEV_TYPE" lookup, unless otherwise noted + "article4.buckinghamshire.AD186731": "186731", // INT_ID + "article4.buckinghamshire.AD285884": "285884", // INT_ID + "article4.buckinghamshire.AD287247": "287247", // INT_ID + "article4.buckinghamshire.AD390975": "390975", // INT_ID + "article4.buckinghamshire.amershamroad": "Land to north-west of Amersham Road, Beaconsfield - the erection, construction, maintenance, improvement or alteration of a gate, fence, wall or other means of enclosure", + "article4.buckinghamshire.amershamroadeast": "Land East of Amersham Road including OS parcel 0006. Means of enclosure.", + "article4.buckinghamshire.asheridgeroad": "Land Surrounding Asheridge Road Agricultural buildings and mineral working.", + "article4.buckinghamshire.bakerswood": "Land at Bakers Wood, Denham - the erection, construction, maintenance, improvement or alteration of a gate, fence, wall or other means of enclosure", + "article4.buckinghamshire.bakerswoodbrokengate": "Land between Bakers Wood and Broken Gate Lane, Denham - the erection, construction, maintenance, improvement or alteration of a gate, fence, wall or other means of enclosure.", + "article4.buckinghamshire.ballingerroad": "Land to the South of Ballinger Road - Agricultural buildings and mineral working.", + "article4.buckinghamshire.ballingerroadnorth": "Land to north of Ballinger Road - Means of enclosure.", + "article4.buckinghamshire.bangorsroadnorth": "Sunrise, Bangors Road North, Iver - Agricultural", + "article4.buckinghamshire.beamondendfarm": "Land at Beamond End Farm Agricultural buildings and mineral working.", + "article4.buckinghamshire.blackthornelane": "Land to the North of Blackthorne Lane, Ballinger - Agricultural buildings and mineral working.", + "article4.buckinghamshire.boismoorroad": "Land at the rear of 157-165 Bois Moor Road, Chesham - Means of enclosure.", + "article4.buckinghamshire.botleyroad": "Land off Botley Road, Chesham - Agricultural Buildings.", + "article4.buckinghamshire.boundaryroad": "Boundary Road, Land at Hill Farm, Taplow - Agricultural", + "article4.buckinghamshire.bourneend": "Off Upper Thames Way, Bourne End - Gates etc, Markets, Racing", // different in airtable + "article4.buckinghamshire.bovingdonheights.a": "North of Bovingdon Heights, Marlow - Gates, Fences, Walls etc", // different in airtable + "article4.buckinghamshire.bovingdonheights.b": "North of Bovingdon Heights, Marlow - Caravan Sites", // different in airtable + "article4.buckinghamshire.broadviewchesham": "Land off Broadview Chesham - Agricultural buildings.", + "article4.buckinghamshire.bryantsbottomroad.a": "Adj Bryants Bottom Road, Hughenden - Gates etc, Markets, Racing", // split a/b, different in airtable + "article4.buckinghamshire.bryantsbottomroad.b": "Bryants Bottom Road, Hughenden - Agricultural Use", // split a/b, different in airtable + "article4.buckinghamshire.burtonslane": "Land north of Burtons Lane extending to Carpenters and Hillas Woods Agricultural buildings and mineral working.", + "article4.buckinghamshire.chalklaneanhydehealth": "Land below Chalk Lane, Hyde Heath Agricultural buildings and mineral working.", + "article4.buckinghamshire.chartridgelane": "Land off Chartridge Lane, Chartridge Agricultural Buildings.", + "article4.buckinghamshire.cheshamroad": "Land off Chesham Road, Bellingdon Agricultural buildings.", + "article4.buckinghamshire.chessfieldparkenclosure": "Land at rear of Chessfield Park - Means of enclosure.", + "article4.buckinghamshire.churchlane": "Church lane, Wexham - Agricultural", + "article4.buckinghamshire.collegeplantation": "College Plantation, Speen - Motor car and motorcycle racing", // different in airtable + "article4.buckinghamshire.collumgreen": "Land at Collum Green, Beaconsfield Road, Farnham Common - Agricultural", + "article4.buckinghamshire.commonwood": "Common Wood - Penn Road, Hazlemere (b) - Agricultural Use", // different in airtable + "article4.buckinghamshire.commonwoodagri": "Land at Common Wood, Penn. Agricultural buildings.", + "article4.buckinghamshire.commonwoodandpennroad": "Land between Common Wood and Penn Road, Hazlemere Agricultural buildings.", + "article4.buckinghamshire.commonwoodenclosure": "Land at Common Wood, Penn - Means of enclosure.", + "article4.buckinghamshire.commonwoodpennroad": "Land between Common Wood and Penn Road, Hazelmere Means of enclosure.", + "article4.buckinghamshire.coneybankwood": "Land South of Coneybank Wood, Great Missenden - Agricultural Buildings.", + "article4.buckinghamshire.copperkinslanecaravan": "Land off Copperkins Lane, Amersham - Caravan sites", + "article4.buckinghamshire.cooperkinslaneenclosure": "Land Off Copperkins Lane, Amersham - Means of enclosure", // variable typo in airtable, check content + "article4.buckinghamshire.coppicesouthheathcaravan": "Land at The Coppice, South Heath - Caravan Sites", + "article4.buckinghamshire.cryershillroad": "Valley Road/Cryers Hill Road, Hughenden - Caravan Sites", // different in airtable + "article4.buckinghamshire.deanfield": "Part Fields SW of Deanfield, Saunderton (b) - Caravan sites", // different in airtable + "article4.buckinghamshire.DO10fulmer": "DO.10 Fulmer - Agricultural", // no clear gis match + "article4.buckinghamshire.dorneywoodroad": "Dorney Wood Road, Burnham - Agricultural", + "article4.buckinghamshire.eastamershamroadOS0006": "Land East of Amersham Road including OS parcel 0006. Agricultural Buildings.", + "article4.buckinghamshire.eastamershamroadOS9269": "Land East of Amersham Road including OS Parcel 9269 Agricultural buildings.", + "article4.buckinghamshire.eastjasonshill": "Land to the East of Jasons Hill, Ley Hill Agricultural buildings.", + "article4.buckinghamshire.eastjordanslane": "OS parcel 449a and 447 East off Jordans Lane Breeding and keeping of poultry.", + "article4.buckinghamshire.eastlatimervillage": "Land on East side of Latimer Village, adjoining Bucks/Herts border Agricultural Buildings.", + "article4.buckinghamshire.eastlodgelaneagri": "Land East of Lodge Lane Agricultural buildings.", // variable typo in airtable, check content + "article4.buckinghamshire.eastlodgelanecaravan": "Small parcel of land East of Lodge Lane Caravan sites.", + "article4.buckinghamshire.eastmarishlane": "Land adjoining the east side of Marish Lane and Slade Oak Lane and the north side of Mirrie Lane, Denham - Agricultural", + "article4.buckinghamshire.eastvaleroad": "Land on East Side of Vale Road - Agricultural buildings and mineral working.", + "article4.buckinghamshire.ferrylane": "Water Meadows, Ferry Lane, Medmenham (a) - Gates, Fences, Walls etc", // different in airtable + "article4.buckinghamshire.ferrylaneagri": "Water Meadows, Ferry Lane, Medmenham (b) - Agricultural & Fish Farming", // different in airtable + "article4.buckinghamshire.fourwinds": "Four Winds, Slough Road, Iver Heath - Agricultural", + "article4.buckinghamshire.fulmer": "Land in Fulmer, Bucks - Agricultural", + "article4.buckinghamshire.fulmerplacefarm": "Fulmer Place Farm, Fulmer - Agricultural", + "article4.buckinghamshire.georgegreen": "Land at George Green, Wexham, Bucks - Development", + "article4.buckinghamshire.gravellyway": "Land at Gravelly Way, adjacent Common Wood, Penn Bottom - Means of enclosure.", + "article4.buckinghamshire.greenacres": "All that piece of land known as Greenacres, Buslins Lane, north east of the Chartridge/Chesham Road Agricultural buildings and mineral working.", + "article4.buckinghamshire.greenstreetdarmagri": "Land at Green Street Farm, Herts and Bucks border - Agricultural buildings.", + "article4.buckinghamshire.greenstreetfarm.a": "Land at Green Street Farm, Herts and Bucks border Agricultural buildings.", // split a/b + "article4.buckinghamshire.greenstreetfarm.b": "Land at Green Street Farm, Herts and Bucks border Highway access.", // split a/b + "article4.buckinghamshire.hampdenroad": "Part Field West of Hampden Road - Gates etc, Markets, Racing", // different in airtable + "article4.buckinghamshire.hollybushcorner": "Land South of Hollybush Corner, Farnham Common - Agricultural", + "article4.buckinghamshire.johnsonsfarm": "Land at Johnson’s Farm, North of Chesham Road, Bellingdon Agricultural buildings.", + "article4.buckinghamshire.junctionhughendenroad": "Junction Hughenden Rd & Cryers Hill Rd - Gates etc, Markets, Racing", // different in airtable + "article4.buckinghamshire.lakeendroad": "Land between Lake End road and Huntercombe Lane South, Burnham - Development", + "article4.buckinghamshire.littlekingsash": "Land know as Little Kings Ash Farm and adjoining land at Kingsash and Lee Gate - Agricultural buildings.", + "article4.buckinghamshire.lodgelane": "Land East of Lodge Lane Means of enclosure.", + "article4.buckinghamshire.lodgelaneagri": "3 parcels of land surrounding Lodge Lane Agricultural buildings.", + "article4.buckinghamshire.lodgelaneenclosure.a": "Land West of Lodge Lane Means of enclosure.", // split a/b + "article4.buckinghamshire.lodgelaneenclosure.b": "Small parcel of Land East of Lodge Lane Means of enclosure.", // split a/b + "article4.buckinghamshire.manorfarm": "Manor Farm, Coates Lane - Agricultural Use", // different in airtable + "article4.buckinghamshire.mansionlanesouth": "Land West of Mansion Lane, Immediately South of Iverdale Close, Iver - Development", + "article4.buckinghamshire.mansionlanewest": "Land West of Mansion Lane - immediately to the west and south row of cottages No's 110-148 Mansion Lane, Iver - Development", + "article4.buckinghamshire.millfarm": "Land North of Mill Farm, Chenies Bottom - Agricultural Buildings.", + "article4.buckinghamshire.ministrywharf": "NW of Ministry Wharf, Saunderton - Gates etc, Markets, Racing", // different in airtable + "article4.buckinghamshire.nightingaleslane": "Land surrounding Nightingales Lane, 2290 metre long strip. - Means of enclosure.", // first airtable entry does not have gis match + "article4.buckinghamshire.northandsouthhollowway": "Land north and south of Hollow Way between Chesham and Pednor - Agricultural buildings and mineral working.", + "article4.buckinghamshire.northballingerroadvaravan": "Land to north of Ballinger Road - Caravan sites.", + "article4.buckinghamshire.northlongpark": "Land to the north of Long Park, Chesham Bois - Agricultural buildings.", // no clear gis match + "article4.buckinghamshire.northorbitalroad": "Land off North Orbital Road, Denham - Caravan Site", + "article4.buckinghamshire.northpark": "Land to north of North Park and West of St Andrews Church, Iver - the erection, construction, maintenance, improvement or alteration of a gate, fence, wall or other means of enclosure.", + "article4.buckinghamshire.northsidesevenhills": "Land on the North Side of Seven Hills Road, Iver - Agricultural", + "article4.buckinghamshire.northwelderslane": "Land North of Welders Lane, South of Jordans Way Agricultural buildings and mineral working.", + "article4.buckinghamshire.officetoresi": "Change of use from offices to residential", // DESCRIPTIO starts with, no DEV_TYPE match + "article4.buckinghamshire.os1178": "OS parcel 1178, 1179, 1180 nr Asheridge Farm Agricultural Buildings", + "article4.buckinghamshire.os262": "OS Parcel 262, Penfolds Lane, Holmer Green Means of enclosure.", + "article4.buckinghamshire.os3100": "OS Parcels 3100, 2829 - Means of enclosure and agricultural buildings.", + "article4.buckinghamshire.os3313.a": "OS parcel 3313 north of Welders Lane Caravan sites.", // split a/b + "article4.buckinghamshire.os3313.b": "OS parcel 3313 north of Welders Lane Means of enclosure.", // split a/b + "article4.buckinghamshire.os4729": "O.S. Parcel No. 4729 at Swan Bottom Agricultural Buildings.", + "article4.buckinghamshire.os5200": "OS Parcel 5200, Windsor Lane, Little Kingshill Means of enclosure.", + "article4.buckinghamshire.os6961": "OS parcel 6961 to West of Amersham Road, Chalfont St Giles Means of enclosure.", + "article4.buckinghamshire.os8050": "Land West of Amersham Road OS parcels 8050 and 8750 Means of enclosure.", + "article4.buckinghamshire.os8349": "OS parcel 8349, 6265, 7466, off Bellingdon Road Agricultural buildings.", + "article4.buckinghamshire.parkspringwood": "Parkspring Wood, Fulmer - Agricultural", + "article4.buckinghamshire.parslowshillock": "Parslow's Hillock to Loosley Row, Lacey Green - Agricultural Use", // different in airtable + "article4.buckinghamshire.pednorhighroad": "Land Surrounding Pednor High Road Agricultural buildings and mineral working.", + "article4.buckinghamshire.pednorroadanddrydelllane": "Land between Pednor Road and Drydell Lane - Caravan sites.", + "article4.buckinghamshire.pednorroadcaravan": "Land off Pednor Road, Chesham - Caravan Sites.", + "article4.buckinghamshire.pednorroaddrydelllane": "Land between Pednor Road and Drydell Lane - Means of enclosure.", + "article4.buckinghamshire.pednorroadenclosure": "Land off Pednor Road, Chesham - Means of enclosure.", + "article4.buckinghamshire.pennroad": "Common Wood - Penn Road, Hazlemere (a) - Gates, Fences, Walls etc", // different in airtable + "article4.buckinghamshire.phillipshillfarm.a": "Land at Phillipshill Farm off Old Shire Lane and Burtons Lane Agricultural Buildings.", // split a/b, variable typo in airtable, check content + "article4.buckinghamshire.phillipshillfarm.b": "Land at Phillipshill Farm off Old Shire Lane and Burtons Lane Means of enclosure.", // split a/b + "article4.buckinghamshire.piggery": "Buildings for use as piggery on agricultural land", // DESCRIPTIO starts with, no DEV_TYPE match + "article4.buckinghamshire.potkilnlaneandlayternsgreen": "Land between Potkiln Lane and Layters Green Lane Agricultural Buildings.", + "article4.buckinghamshire.potterrowcaravan": "Land East of Potter Row, Great Missenden - Caravan sites.", + "article4.buckinghamshire.potterrowenclosure": "Land East of Potter Row, Great Missenden - Means of enclosure", + "article4.buckinghamshire.poultry": "Former Wycombe Rural District - Poultry Production", // different in airtable + "article4.buckinghamshire.purtonlane": "Purton Lane/Farnham Park Lane, Farnham Royal - Agricultural", + "article4.buckinghamshire.rearuplands": "Land at the rear of Uplands, Swan Bottom (OS Parcel 2216) - Agricultural Buildings and means of enclosure.", + "article4.buckinghamshire.robertswooddrive": "Land East of Roberts Wood Drive Means of enclosure.", + "article4.buckinghamshire.ruralwycombe": "The whole of the Rural District of Wycombe in the county of Buckingham which includes the Area of Watchet Road, High Wycombe, edge of Chiltern District Council area - Poultry production", + "article4.buckinghamshire.saunderton": "Part Fields SW of Deanfield, Saunderton (a) - Gates etc, Markets, Racing", // different in airtable + "article4.buckinghamshire.sedgesfarm": "Strip Land at Sedges Farm, Great Missenden - Means of enclosure.", + "article4.buckinghamshire.sheepcotedellroad": "Land South of Sheepcote Dell Road, Holmer Green, including Land East of Earl Howe Road Means of enclosure.", + "article4.buckinghamshire.sibleyscoppice": "Land at Sibleys Coppice, South Heath - Means of enclosure.", + "article4.buckinghamshire.skimmersorchard.a": "Land at Skimmers Orchard, Holmer Green (a) Holding of Markets (b) Motor Racing.", // split a/b/c + "article4.buckinghamshire.skimmersorchard.b": "Land at Skimmers Orchard, Holmer Green Caravan Site", // split a/b/c + "article4.buckinghamshire.skimmersorchard.c": "Land at Skimmers Orchard, Holmer Green Means of Enclosure.", // split a/b/c + "article4.buckinghamshire.southA413": "Land South of A413 in Little Missenden Agricultural buildings and mineral working.", + "article4.buckinghamshire.southchartridge": "Southern side Chartridge Lane between Chartridge-Pednor Bottom. Agricultural buildings and mineral working. OS parcels 1348, 1347, 1369, 1367, Southern side Chartridge Lane Agricultural buildings and mineral working. OS parcels 1274, 1279, 1328, Northern", // different in airtable + "article4.buckinghamshire.southeastfinchlane": "Land Southeast of Finch Lane Agricultural buildings and mineral working.", + "article4.buckinghamshire.southkilnlane": "Land to South of Kiln Lane, Ley Hill Agricultural Buildings.", + "article4.buckinghamshire.southlittlemissenden": "Land to the South of Little Missenden Agricultural buildings and mineral working.", + "article4.buckinghamshire.southpenfoldlane.a": "Land south of Penfold Lane and adjoining the rear of properties in Shepherds Fold and Winters Way Agricultural Buildings.", // split a/b + "article4.buckinghamshire.southpenfoldlane.b": "Land to the South of Penfold Lane Agricultural Buildings.", // split a/b + "article4.buckinghamshire.southpenfoldlaneOS262": "Land south of Penfold Lane (OS Parcel 262) Caravan Sites.", + "article4.buckinghamshire.southsheepcoteroad": "Land South of Sheepcote Dell Road, Holmer Green, including Land East of Earl Howe Road Agricultural Buildings.", + "article4.buckinghamshire.southsidekiln": "Land on South Side of Kiln Lane Hedgerley - Agricultural", + "article4.buckinghamshire.southswanbottom": "Land on the south side of Swan Bottom Road - Agricultural buildings.", + "article4.buckinghamshire.stokenchurch": "North of A40, Stokenchurch - Gates etc, Markets, Racing", // different in airtable + "article4.buckinghamshire.threeoaksfarm": "Land formally known as Three Oaks Farm, East Side, Roberts Lane Means of enclosure.", + "article4.buckinghamshire.turnerswood": "Land at Turners Wood on the NE side of Amersham Road, Chalfont St Giles Agricultural buildings.", + "article4.buckinghamshire.turvillevalley": "Turville Valley - Agricultural Use", // different in airtable + "article4.buckinghamshire.valleyroad": "Valley Road (formerly pt Hitchenden Farm) - Gates etc, Markets, Racing", // different in airtable + "article4.buckinghamshire.wellcottage": "N of Well Cottage, Church Ln, Lacey Green - Gates etc, Markets, Racing", // different in airtable + "article4.buckinghamshire.westledgelanecaravan": "Land West of Lodge Lane Caravan sites.", + "article4.buckinghamshire.weststhubertslane": "Land on the West and North-East sides of St Huberts Lane, Gerrards Cross - Agricultural", + "article4.buckinghamshire.westwexhamstreet": "Land to the west of Wexham Street, Stoke Poges - Markets", + "article4.buckinghamshire.wholedistrictpoultry": "Whole District excluding the Town of Chesham - Poultry production.", + "article4.buckinghamshire.widmerfarm": "Widmer Farm, Lacey Green - Agricultural Use", // different in airtable + "article4.buckinghamshire.wigginton": "In the area of Wigginton - Agricultural buildings.", + "article4.buckinghamshire.wiltonlane": "Land at Wilton Lane, Seer Green - Agricultural buildings and mineral working.", + "article4.buckinghamshire.wooburngreen": "Wooburn Green - Agricultural Use", // different in airtable + "article4.buckinghamshire.woodlandsmeadow": "Land at Woodlands Meadow, Jasons Hill, Ley Hill Means of enclosure.", + "article4.buckinghamshire.wyburnwood": "Land at Wyburn Wood off Amersham Road - Means of enclosure.", + "article4.buckinghamshire.wyburnwoodagri": "Land at Wyburn Wood off Amersham Road - Agricultural Buildings.", + "article4.buckinghamshire.wyburnwoodforestry": "Land at Wyburn Wood off Amersham Road - Forestry.", + "article4.buckinghamshire.wycombehealthfarmnortheast": "Land to NE of Wycombe Heath Farm, Spurlands End Lane, Holmer Green Means of enclosure.", + "article4.buckinghamshire.wycombehealthfarmspurlands": "Land at Wycombe Heath Farm, Spurlands End Means of enclosure.", + "article4.buckinghamshire.wycombeheathfarm": "Land to NE of Wycombe Heath Farm, Spurlands End Lane, Holmer Green Caravan sites.", + "article4.buckinghamshire.wycombeheathfarmcaravan": "Land at Wycombe Heath Farm, Spurlands End Caravan sites." }, }, listed: { @@ -99,7 +192,7 @@ const planningConstraints = { fields: ["OBJECTID", "GRADE", "DESCRIPTIO", "ADDRESS"], neg: "is not in, or within, a Listed Building", pos: (data) => ({ - text: `is, or is within, a Listed Building Grade ${data.GRADE}`, + text: `is, or is within, a Listed Building Grade ${data[0].GRADE}`, description: data.DESCRIPTIO, }), }, diff --git a/api.planx.uk/tests/nocks/fetching-gis-data.2dd996c5.json b/api.planx.uk/tests/nocks/fetching-gis-data.2dd996c5.json deleted file mode 100644 index 1ac2c553ee..0000000000 --- a/api.planx.uk/tests/nocks/fetching-gis-data.2dd996c5.json +++ /dev/null @@ -1,2025 +0,0 @@ -[ - { - "scope": "https://maps.buckscc.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/1/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CName%2CDesc_%2CGrade&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d90310fc2201085ffcbcd0cd5e8c2a6564d1dec60b7a631c49e95049b0670681afebb504a838943a783bbf73e1e3740cd5527587fe228ea2b7b2350180b81a76bed04670a15d001f2fde57828b2d42ae623815f4f8aea71b7575f099c25abddd85733412dae1ca0f5ce88a5fbce7550493ee629ec3d1f27ccc588c586cc80e9e97fe69b96bc6d22ffa415d836fa0574bddd44a0107a112988036a952411caff77212a88e75489a9eca690e98f74ab2f2bf305ad7659d8a8010000" - ], - "rawHeaders": [ - "Vary", - "Origin", - "Cache-Control", - "max-age=0,must-revalidate", - "Server", - "", - "ETag", - "JcclDs1Qod9tH9zo_9644b952", - "Content-Encoding", - "gzip", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Length", - "197", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://maps.buckscc.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/5/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CDEV_TYPE%2CDESCRIPTIO%2CDISTRICT%2CDATE_CONF&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d52616bc23010fd2b219f3bacb2c2e6376debd631ac68d9184324da6b0daba924294ca4ff7d973a6b2a1bf8edddcbbd772fc91d69cad5be60870987229db21dd0210dc2b755f2310ba94333438f0ace14283a3cd278fc12fa491460570b9d8ba0a30dc2853f8f664914377c5be049b448e6919f18fe0c911d25e1ca8fa71343b7b8fe0d81e33f8f549c125ab3f5616f185092377748b08e9b136662dbcdb5d31a5831ff325868c9456e7958fd05885c6fe970e0dd770cadfbdd686929fe31bd3cce6d9697feb3a1e7da7eedabde6a6809da886ebdc43f01a62b09a75f611a85eb4a5fef48ffc1eb2cc72b1329619af82854f04dc695e202219931f9e590679e6fc9fb6153eed670bd3ffe96891c4899914a01c964b9439cf10d28a24b827e3c05a1392bc81d56194843c7324560863e053119b87daf29103c76b7d01a6a2da13be8b95eafe9aeeb65fd03c8aabac02c030000" - ], - "rawHeaders": [ - "Vary", - "Origin", - "Cache-Control", - "max-age=0,must-revalidate", - "Server", - "", - "ETag", - "JcclDs1Qod9tH9zo_10fffe33", - "Content-Encoding", - "gzip", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Length", - "349", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://maps.buckscc.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/4/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CDESCRIPTIO&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", - "body": "", - "status": 200, - "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252f273f47555d2514a030939e6642616a7162b59552bf93b79b93a8778ba0055c0993a10c5703d2eaec1ce419e01219efe4031244e2dd438a041d1d54a79107b904c29a92c0089a4161765825d1202e4fb836512410e40565cab0337006a2936cdc125459979e948faa16a7352f3d24b3294ac8c0c90cc41722891a6a1e88099696a501b0bf4676a6249691128c8a2636b014c90bcb960010000" - ], - "rawHeaders": [ - "Vary", - "Origin", - "Cache-Control", - "max-age=0,must-revalidate", - "Server", - "", - "ETag", - "JcclDs1Qod9tH9zo_ec1a70c", - "Content-Encoding", - "gzip", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Length", - "184", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://maps.buckscc.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/2/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGRADE%2CDESCRIPTIO%2CADDRESS&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d91310f83201085ffcbcd2c6d3a346e566863936a236ec681446a49a8314a0763f8ef052d16930e4edc3d1edf3d60844af4ad64c359705925ecc5218024bc1140f0b0522805eb790fc108e9e94aa23cc6c6b194082e59888991e615012634cae27b1ea746f41a0421c619a1d4c8aed2df21065f8cd0ccd33db61a5aabf0be1353bedcf4e9b4c36c2cdfacd1027049fe9da6aa134ded019c59f2a6564f088e1e68957e136d75c2210f3b8fe9aebe11f8b32fb4bd2ecdb371a6de9dfd97a2d41ff12a7003c5010000" - ], - "rawHeaders": [ - "Vary", - "Origin", - "Cache-Control", - "max-age=0,must-revalidate", - "Server", - "", - "ETag", - "JcclDs1Qod9tH9zo_432247dd", - "Content-Encoding", - "gzip", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Length", - "210", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://maps.buckscc.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/6/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CORDERREF%2CSTATUS%2CCOMMENTS&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d913f0b833010c5bfcbcd595adac5cdfa072ca8a0e9240e01af369006d17410c9776f52d4587070bbbcbcfbddbb6482860f9d6063cc5134197b23789017615414510c049e56f60567030ee04d90dfee514093d0ba9692b886bfde92faf4511a6d2e0804799a4619b5da5aea7988c15713c8398163abb1b30a0e3dff65a4e69c48852df6e696d968db064d1cc445d98394aae7b2dd329c5fa06cd50bbcd369c35bd738445bddbbac75fd83b48d7fe19daf175d9bc743a63ebdfd9daad65f587da44fcf010000" - ], - "rawHeaders": [ - "Vary", - "Origin", - "Cache-Control", - "max-age=0,must-revalidate", - "Server", - "", - "ETag", - "JcclDs1Qod9tH9zo_32cf9711", - "Content-Encoding", - "gzip", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Length", - "208", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://maps.buckscc.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2Csssi_name&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", - "body": "", - "status": 200, - "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2522a2e2ece8ccf03b17594d240e28e399989c5a9c54a56d54afe4e5eaece219e2e406570a60e920e64ddb550ed408dd1d54a5069245d2595052091d4e2a24cb0f52140be3f5826116421b2e25a1db801c8aec36642704951665e3a9221c81a7252f3d24b3294ac0c8d0c6a6381ce4b4d2c292d02f92c3ab61600484580070c010000" - ], - "rawHeaders": [ - "Vary", - "Origin", - "Cache-Control", - "max-age=0,must-revalidate", - "Server", - "", - "ETag", - "JcclDs1Qod9tH9zo_a3f01184", - "Content-Encoding", - "gzip", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Length", - "160", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://maps.buckscc.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/3/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CName%2CDesc_&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", - "body": "", - "status": 200, - "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b25202533a4a692021c79cccc4e2d46225ab6a257f272f57e7104f17a00a38534709558f4b6a71723c900ba16ba18600b547572be5415422e92da92c0089a416176582ed0f01f2fdc13289206b9115d7eac00d805a854d73704951665e3a927ea8da9cd4bcf4920c252b2353132483208e24d22498629851860606b5b140ffa5269694168102283ab61600a3a360e34e010000" - ], - "rawHeaders": [ - "Vary", - "Origin", - "Cache-Control", - "max-age=0,must-revalidate", - "Server", - "", - "ETag", - "JcclDs1Qod9tH9zo_25f9c9b3", - "Content-Encoding", - "gzip", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Length", - "176", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "http://127.0.0.1:41945", - "method": "GET", - "path": "/gis/buckinghamshire?x=485061.33649798&y=191930.3763250516&siteBoundary=[]", - "body": "", - "status": 200, - "response": { - "designated.nationalPark": { - "text": "is not in a National Park", - "value": false, - "type": "check", - "data": {} - }, - "designated.broads": { - "text": "is not in a Broad", - "value": false, - "type": "check", - "data": {} - }, - "designated.WHS": { - "text": "is not an UNESCO World Heritage Site", - "value": false, - "type": "check", - "data": {} - }, - "article4": { - "text": "is subject to Article 4 restriction(s)", - "description": "Change of use from offices to residential - refer to Order and GDO 2015 and 2019", - "value": true, - "type": "warning", - "data": { - "OBJECTID": 185, - "DEV_TYPE": "Land at Cressex Business Park, High Wycombe", - "DESCRIPTIO": "Change of use from offices to residential - refer to Order and GDO 2015 and 2019", - "DISTRICT": "Wycombe", - "DATE_CONF": "02/05/2019" - } - }, - "listed": { - "text": "is not in, or within, a Listed Building", - "value": false, - "type": "check", - "data": {} - }, - "designated.conservationArea": { - "text": "is not in a Conservation Area", - "value": false, - "type": "check", - "data": {} - }, - "designated.AONB": { - "text": "is not in an Area of Outstanding Natural Beauty", - "value": false, - "type": "check", - "data": {} - }, - "designated.monument": { - "text": "is not the site of a Scheduled Ancient Monument", - "value": false, - "type": "check", - "data": {} - }, - "tpo": { - "text": "is not in a TPO (Tree Preservation Order) zone", - "value": false, - "type": "check", - "data": {} - }, - "nature.SSSI": { - "text": "is not a Site of Special Scientific Interest", - "value": false, - "type": "check", - "data": {} - }, - "article4.buckinghamshire.officetoresi": {"value": true}, - "article4.buckinghamshire.poultry": {"value": false}, - "designated": {"value": false} - }, - "rawHeaders": [ - "X-Powered-By", - "Express", - "Access-Control-Allow-Origin", - "*", - "Access-Control-Allow-Headers", - "Origin, X-Requested-With, Content-Type, Accept", - "Access-Control-Allow-Credentials", - "true", - "Content-Type", - "application/json; charset=utf-8", - "Content-Length", - "1498", - "ETag", - "W/\"5da-LupMsGr+SHNlb6LUYmbQAtkxv/c\"", - "Date", - "Thu, 21 Oct 2021 07:07:35 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/8/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CLOCATION%2CDESCRIPTIO%2CPOLICY%2Cinfo1&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d913d0f82301086ffcbcd0c62646143c00463ac5116631c1a29da042b69eb6008ffdd43a49c890353afefbd7deea30d14d2d4157fada4a88a2dbf0b0861c3e228cfd8163c283b39aa2437c240d8005baed338cf1274b9d01b1f8410158516c6a098a487789fed50473911e6a2656de543616ac736597c44f91b782055f9f051e8cff65b184b9e1a507d57a49e7dd59d228c969fbe73bcb34f8677ad5273eb390019eb1fe060b55457c21847a984bada1b84f360417864c089c4df2d38ea8c40dd4626019d7b60f90185f5db9cc81acc1475c68f10dc3e75f7fba773fb06dfb3147b2f020000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "7dde2272", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "240" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/7/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGRADE%2CNAME%2CDESCRIPTIO&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d91310bc2301085ffcb4d0a4144c4a15b35b554b415db4d1c823d35106b49e220a5ffdd246d2582835bdebbcbc7bbbb064aae6ac15e6b8ea24cd91d2180fcc66a9ce4c516ababbe8dc640e062cba1e04ca182a0816cb9895645424df7e749203e843432562c598946a7e1ce4a872540a37c7548f64592198fa23a4b5e6bfea8a0edf9867c6ca0ea427858fdaaad834a7217b3303a73156613f9cd2df900ba30bf7fe75af2eaea0186c4c28d0cc1c203b929fee4f4a30e98d97cea81bc05fc89f3b7f44d3d999d21d34f69ef713cb56fb633d8a2c9010000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "1c2155a2", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "226" - ], - "responseIsBinary": false - }, - { - "scope": "https://environment.data.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/NE/SitesOfSpecialScientificInterestEngland/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Csssi_name&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000006d8fbd0ec2300c84dfc5730660cc86842ab1c0005b55552931c528842a0e4315e5dd4950557960f3cf7d7776024b3c39333784ce9ecc0b41033353ef6bade05ee77b4786914127780f4fbc45b245b6964a1092ce0b5ec036c1b216549ca73a410ef48bbf96fe7c3c948da981529cd56a20affbe7708981fc284c24e0d08ff1017abbdbe4ae9c87267e42fdacedf217093ee47f0c010000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "161", - "Connection", - "close", - "Cache-Control", - "public, must-revalidate, max-age=0", - "Content-Encoding", - "gzip", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "ETag", - "712c1184", - "Vary", - "Origin", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "x-esri-ftiles-cache-compress", - "true", - "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Thu, 21-Oct-2021 07:08:36 GMT; Path=/arcgis/rest; Secure; HttpOnly", - "X-AspNet-Version", - "4.0.30319", - "X-Powered-By", - "ASP.NET" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/4/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CTYPE%2CDESIGNATIO%2CDESCRIPTIO%2CURL&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d52cb6a834014fd95308bae2446f38008a118b5c5906a49cca2942c263a3543cd28f30884e0bf778c8f0e92859b79dc7beee1dc7bcf1d24981519bcbd61942501bc206081c0fef080067eaa909d61c81003d61d84eb8de744be2b11dd53abc1b2a62ad540f4f559fd1e97065c6fefbf0776e48732e62286530239cec9c8851cd57967e77f76f998e2a2cacbd461b795b1ea2c1b2552c3f71d905aa22280df8a2a8218c58f2622f90f1f19586957c1a5d611343d3e2bde738a49aad437bd6588a4fc0c2c633e51889a56071135d896686a2a3ccaac06b23d196827b1c7dc4e7938b3b28a4eaeda76b599816c35b46531e5f48e72a508724151bd54c865cd49f0becf8cd9b433d8d68fa2adb70e0fbbc0fb379a931386e8b51e824d11ecbbce34f4c9423796cb59df6f7651508819cc461b41d0c89c4ce69defce9c1796ae27792c2e8870368e21e1889e04bd8dd3fc3a16bf7a214e19666744f5cb35d6e593bb2dfa1527f2c2d2b574a50a7c113821f9ca756c73ba9883b23c967f65924ad980030000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "5dd08fcd", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "397" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/3/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CREF%2CLOCATION_1%2CCOMMENT%2CDESCRIPTIO&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d924d0b82401086ff4accd943d1cd9ba981516e94b7885872b4856d0ddd0e21fef7662d6382026fbbefbcf3ec7c6c0bb96a6e5a3e960a759eca2b820fbb78091e144e09b4920d36e0b72016ab38cc92880c9fa3d77b29030bacd19c9194b508832c11e9694681757596565586f4506c36719a9118e4b972a2d493c414d5757044f13edc255b4a2653242d42f72e830a38b4605ee5b1d7ede3e6146c6ad53790d15df411e90ae7e6cefb005efdfdcadddb5a9992a5f3c6349ad25ec09f4f198b753b12c946321067538e1c063592f76f9abfe16cc623f9fd22be71475a0b4a7bafddcf381cbb272b5c82c046020000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "72cd4659", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "249" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CSchedDate%2CAmendDate&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d91b10e823010865fc5dccc6434316c289ae820036c84a191139a9486d03210c2bbdbd6164a6470eaf5ffefbebb5e4728a96819196e1459f9240d4208e608e0ada588512250403842727e5c2fd93d56197318c0ba267dd558c6446ac9c43dc372678400a206b9334decacc936536df211f897e8f59043ab15141d357366ea9e1887e8f1fce429980176a4ade2547694575ebdcd65c82b5943b83f1e3cd0f2a86d9ab51cebe7dd8e7af298cb2efe62aed6e5130bb53a24b2eff41fe5c5f401f82a285cd1010000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "a56e84f1", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "209" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/13/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252f273f47555d2514a030939e6642616a7162b59552bf93b79b93a8778ba0055c0993a10c5403d20adb5504d40e5d1d54a7910d390d49654168044528b8b32c1f68500f9fe6099449035c88a6b75e006409d834d73704951665e3a927eb03374947252f3d24b3294ac8c4c4d6a63818e4a4d2c292d02f9223ab61600034c236bf3000000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "a66a0339", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "162" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/13/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTPO%2CTPO_Group%2CLocation%2CDescription&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b0800000000000000ab564a2d2aca2f52b2aa564ace4f4955b2323130d051ca4d2d2e4e4c07f294dc1233735253144af215522b52934b4b52150a4b538b2af594749452524b8092c54a56d1b1b5b500e89014d348000000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "4fc6bde0", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "89" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/6/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CREF%2CLOCATION_1%2CCOMMENT%2CDESCRIPTIO&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d914d0f82300c86ff4bcf3b68bc715398090698516ec498450a2ec169601e0ce1bf5b50b4261eb8756fdf3efd580bb9696e957eac0d5679a22f081eece41a0414bdb2ac8c6eb001af05b5da483f0d03327c423178a9020bacd19e909448f9cb3454c9714e89e87ad2ce5c2de9be8a6399a4248e918040eefd5db8253bc9817608ddbb31b5cc5ab0af81583ff7b8f50a36b519464ee9ad868cee47e5e64e7c00af8dfed5ee5d6d6cc9caf92a15dad29dc15bcc188bed3711c98e3012e7338efc1e6412ef6bff8f63579d481c4eff8b3bd047a076f7bafffdecd03d01b73645882a020000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "498489b9", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "238" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/2/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CDESIG_DATE%2CHOTLINK&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d913d0f82301086ff0ab999418d2e6c6851eb070cb211629a7060132ca6ad8321fc775b05d3040796a6bdbbf7b97baf2d145c3d6af6da72ac8b98dd110288c373043e943614d69c295410b490ac0fd126a5c454fcaefeb7d868acd407125de8ee4ac2d4c6082a5e09a6b1f088394d7a9fa4271a1f4deedc48f4a8281b79679a3702babea16995b520be93387df4eb6123a824ffcc9a9a77f2c9303ba25bdcf93f406fe59ff8a2251795a3ef2dd4282a7d8360b15a3a20c7d844dcd8fd409ebbe0612513a9a3bd39d8d9accbcd1691e9a7b45f96e5dd1b7f2eebcce0010000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "be458ee5", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Connection", - "close", - "Content-Length", - "233" - ], - "responseIsBinary": false - }, - { - "scope": "http://127.0.0.1:37267", - "method": "GET", - "path": "/gis/canterbury?x=621192.0132463141&y=157770.55052344775&siteBoundary=[]", - "body": "", - "status": 200, - "response": { - "designated.nationalPark": { - "text": "is not in a National Park", - "value": false, - "type": "check", - "data": {} - }, - "designated.broads": { - "text": "is not in a Broad", - "value": false, - "type": "check", - "data": {} - }, - "article4": { - "text": "is not subject to any Article 4 Restrictions", - "value": false, - "type": "check", - "data": {} - }, - "article4.canterbury.hmo": {"value": false}, - "listed": { - "text": "is not in, or within, a Listed Building", - "value": false, - "type": "check", - "data": {} - }, - "designated.conservationArea": { - "text": "is in a Conservation Area", - "description": "LITTLEBOURNE", - "value": true, - "type": "warning", - "data": { - "OBJECTID": 143, - "NAME": "LITTLEBOURNE", - "TYPE": "Conservation Area", - "DESIGNATIO": "21/06/1994", - "DESCRIPTIO": "Appraisal June 2005", - "URL": "http://documents.canterbury.gov.uk/publisher/mvc/listDocuments?identifier=Conservation&uidno=DCA2365" - } - }, - "designated.AONB": { - "text": "is not in an Area of Outstanding Natural Beauty", - "value": false, - "type": "check", - "data": {} - }, - "designated.WHS": { - "text": "is not an UNESCO World Heritage Site", - "value": false, - "type": "check", - "data": {} - }, - "designated.monument": { - "text": "is not the site of an Ancient Monument", - "value": false, - "type": "check", - "data": {} - }, - "nature.SSSI": { - "text": "is not a Site of Special Scientific Interest", - "value": false, - "type": "check", - "data": {} - }, - "designated": {"value": true} - }, - "rawHeaders": [ - "X-Powered-By", - "Express", - "Access-Control-Allow-Origin", - "*", - "Access-Control-Allow-Headers", - "Origin, X-Requested-With, Content-Type, Accept", - "Access-Control-Allow-Credentials", - "true", - "Content-Type", - "application/json; charset=utf-8", - "Content-Length", - "1275", - "ETag", - "W/\"4fb-HNQkktNRp7odV3/HKTGuwsSeuJk\"", - "Date", - "Thu, 21 Oct 2021 07:07:36 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://gis.lambeth.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/LambethArticle4B1toC3/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CARTICLE_4&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d904f0f82300cc5bfcad233078d7ae1068a11ff60a2dc8c3133545cc44158893164dfdd210417e3c15bd7bdf77b6d6b48842a32fe9c0bcc9288df115c88bc4d000e5c9a969709ae50815bc3d65f06d3389c19455f3aadb8f778bb389cae83d3d8b43eb5ee600673a841b62916839e45d341558af71cb1796fdf3fbc89b7c5dae9015de42ff39e4a2153cbdf693394295dc19d0c2cce67ce3f61b6c1221ecd96c8a92ab1dd9393319e2bfabede70d45f6d9f5774653e9737b6c82b858ccb8445f828f29298c945a4afa3ae42df03ad8ffa051e269908ba010000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "228", - "Connection", - "close", - "Cache-Control", - "max-age=0,must-revalidate", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "Vary", - "Origin", - "ETag", - "223f8627", - "x-esri-ftiles-cache-compress", - "true", - "Content-Encoding", - "gzip" - ], - "responseIsBinary": false - }, - { - "scope": "https://gis.lambeth.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/LambethArticle4/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CDESCRIPTION&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", - "body": "", - "status": 200, - "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b25202533a4a692021c79cccc4e2d46225ab6a257f272f57e7104f17a00a385347c9c535d839c83320c4d3df0f2881ccab851a01d41c5dad9407311b49674965014824b5b828136c7b0890ef0f964904598aacb856076e00b20dd8cd082e29cacc4b473206554b4e6a5e7a498692959181416d2cd089a98925a545201f46c7d60200f09d5fd20f010000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "167", - "Connection", - "close", - "Cache-Control", - "max-age=0,must-revalidate", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "Vary", - "Origin", - "ETag", - "2c8e8706", - "x-esri-ftiles-cache-compress", - "true", - "Content-Encoding", - "gzip" - ], - "responseIsBinary": false - }, - { - "scope": "https://environment.data.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/NE/SitesOfSpecialScientificInterestEngland/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Csssi_name&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000006d8fbd0ec2300c84dfc5730660cc86842ab1c0005b55552931c528842a0e4315e5dd4950557960f3cf7d7776024b3c39333784ce9ecc0b41033353ef6bade05ee77b4786914127780f4fbc45b245b6964a1092ce0b5ec036c1b216549ca73a410ef48bbf96fe7c3c948da981529cd56a20affbe7708981fc284c24e0d08ff1017abbdbe4ae9c87267e42fdacedf217093ee47f0c010000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "161", - "Connection", - "close", - "Cache-Control", - "public, must-revalidate, max-age=0", - "Content-Encoding", - "gzip", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "ETag", - "712c1184", - "Vary", - "Origin", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "x-esri-ftiles-cache-compress", - "true", - "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Thu, 21-Oct-2021 07:08:37 GMT; Path=/arcgis/rest; Secure; HttpOnly", - "X-AspNet-Version", - "4.0.30319", - "X-Powered-By", - "ASP.NET" - ], - "responseIsBinary": false - }, - { - "scope": "https://gis.lambeth.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/LambethConservationAreas/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CCA_REF_NO&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d904f0b824010c5bf4accd94b8409decc0c0a52286f21b2e2644beb22eb7a10d9efdefa275daa43b7d9d9f77e6f663ac8695d31d21e28b23c2425820ba1770ec0827bdff2182535d6e07610ed4e811f1ff75a3197d6289e3dbe975e82431a46bab5d46a8269ccad033ea6180cd9567d076b41873962fd8e861fd2c79b6265cd8029f297f92a05e585e19fb40c79211fe06e1c83b3ccf927cc34bc89b64af492486423705c9348edcb1af979bced7a3e9ac7321472159419e1cf12b9fcbaa0ed8052897a01e1800562a7010000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "215", - "Connection", - "close", - "Cache-Control", - "max-age=0,must-revalidate", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "Vary", - "Origin", - "ETag", - "e2843dcb", - "x-esri-ftiles-cache-compress", - "true", - "Content-Encoding", - "gzip" - ], - "responseIsBinary": false - }, - { - "scope": "https://gis.lambeth.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/LambethCentralActivitiesZone/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTITLE%2CPOLICY&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d904d8bc2301086ff4a98730545bcf4a65d858a58c15c56f190d55107625a9a512825ff7d535b35bbec82a74cde99f7998f1a0e640badaa19a13e2cd5052186f403223836c25893b26821ae219bcca789f4a9f815462053b9987aa97d2358658b34f9f44217b80ee411db1a4ccb0ffc5c158d82b6a4fb04d2ffb37b4635adc362173d018f6e7fb9d75c9239058047b14673e233c483513f407573bec97a5687b09ddf11155f4b6cb754ec6d5f57fe7db7c1eb5c091a2e9516e33dd38d98d08a4d6ef0c701734dfb4a0c454fc8338aff1cceeddc371013d349c5010000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "231", - "Connection", - "close", - "Cache-Control", - "max-age=0,must-revalidate", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "Vary", - "Origin", - "ETag", - "720e0394", - "x-esri-ftiles-cache-compress", - "true", - "Content-Encoding", - "gzip" - ], - "responseIsBinary": false - }, - { - "scope": "https://gis.lambeth.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/LambethListedBuildings/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGRADE%2CADDRESS_1&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d90c16ec2300c865f25f23997204d9a7a6bd78e751a30b5dc263419e241446851931c5095775f4a575aa11d38c5f96d7ffeed16a432678d9757455a2ef14410c1325e64c0e1a79362add09081a88555f29ebdacf33454dc420ef3224eb320f52f87384d8bac2cbf45d0c6d8ffe102e8ab85aa9f33a1d8cbb953c834eaea641dfeab6b063b03d362cf6f8061e67fdda56d54b59f0086624dd5de1e209a3d4d48a3d30769d386812884f09bb028a1750df5aba20d9d5b67ef4ff83c13e3ed3e94b12459e29496610c9b372889e5f9dd39cbdad9c316ab237bab9d21ce128dbb23fb0cd676c48a1a2578bff1bf83855541d4010000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "254", - "Connection", - "close", - "Cache-Control", - "max-age=0,must-revalidate", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "Vary", - "Origin", - "ETag", - "d701ea2f", - "x-esri-ftiles-cache-compress", - "true", - "Content-Encoding", - "gzip" - ], - "responseIsBinary": false - }, - { - "scope": "https://gis.lambeth.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/LambethTreePreservationOrderBoundaries/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTPO_NUMBER%2CLEGISLATION&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d90310b83301085ffcbcd595a7071539b96144da4a69388049ada801531e920e27f6f628b44e8d02defdedd77ef32c14de9be15e351c9f646c5534208458e13828b7a57d328c380e0eecca855424b0de1042c3ee3849383ed5d9f0878ce6a7acd627cb1754f2048f1891469c409a3d6f2d5fc855b6c3941f7d9ef31cdd8bb8ad4835a1272abd9e20817c76f9ed10ad82cff8528cca0bac6a36c265ad935e601e13e083ca81ffb4fea76c4c756f66e29cc6b701f5a56f31b42688fd288010000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:37 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "202", - "Connection", - "close", - "Cache-Control", - "max-age=0,must-revalidate", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "Vary", - "Origin", - "ETag", - "c2850930", - "x-esri-ftiles-cache-compress", - "true", - "Content-Encoding", - "gzip" - ], - "responseIsBinary": false - }, - { - "scope": "https://environment.data.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/HE/WorldHeritageSites/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Cname&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", - "body": "", - "status": 200, - "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252ca03513a4a692021c79cccc4e2d46225ab6aa5fca4acd4e492cc14a00a385307a218aaa716aa09a83cba1a2683a4b6a4b20024925a5c9409b62f04c8f7f77401ca2482ac41565cab538d623476cdc125459979e948faa16a7352f3d24b3294ac8c4c4d6a63818e4a4d2c292d02f9223ab61600e62e1e1ef3000000" - ], - "rawHeaders": [ - "Server", - "nginx", - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Content-Type", - "application/json;charset=UTF-8", - "Content-Length", - "154", - "Connection", - "close", - "Cache-Control", - "public, must-revalidate, max-age=0", - "Content-Encoding", - "gzip", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "ETag", - "c6159739", - "Vary", - "Origin", - "X-Content-Type-Options", - "nosniff", - "X-XSS-Protection", - "1; mode=block", - "x-esri-ftiles-cache-compress", - "true", - "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Thu, 21-Oct-2021 07:08:37 GMT; Path=/arcgis/rest; Secure; HttpOnly", - "X-AspNet-Version", - "4.0.30319", - "X-Powered-By", - "ASP.NET" - ], - "responseIsBinary": false - }, - { - "scope": "http://127.0.0.1:36743", - "method": "GET", - "path": "/gis/lambeth?x=530622.7463248332&y=178706.16704920324&siteBoundary=[]", - "body": "", - "status": 200, - "response": { - "article4.lambeth.fentiman": {"value": false}, - "article4.lambeth.streatham": {"value": false}, - "article4.lambeth.stockwell": {"value": false}, - "article4.lambeth.leigham": {"value": false}, - "article4.lambeth.stmarks": {"value": false}, - "article4.lambeth.parkHall": {"value": false}, - "article4.lambeth.lansdowne": {"value": false}, - "article4.lambeth.albert": {"value": false}, - "article4.lambeth.hydeFarm": {"value": false}, - "designated.AONB": { - "text": "is not in an Area of Outstanding Natural Beauty", - "value": false, - "type": "check", - "data": {} - }, - "designated.nationalPark": { - "text": "is not in a National Park", - "value": false, - "type": "check", - "data": {} - }, - "designated.broads": { - "text": "is not in a Broad", - "value": false, - "type": "check", - "data": {} - }, - "article4": { - "text": "is subject to an Article 4 direction(s)", - "description": "South Bank House and Newport Street", - "value": true, - "type": "warning", - "data": { - "OBJECTID": 13, - "NAME": "South Bank House and Newport Street", - "ARTICLE_4": "KIBA" - } - }, - "article4.lambeth.kiba": {"value": true}, - "article4.lambeth.caz": {"value": true}, - "listed": { - "text": "is, or is within, a Listed Building Grade II", - "description": "Southbank House, Black Prince Road", - "value": true, - "type": "warning", - "data": { - "OBJECTID": 821, - "GRADE": "Listed Building Grade II", - "ADDRESS_1": "Southbank House, Black Prince Road" - } - }, - "designated.conservationArea": { - "text": "is in a Conservation Area", - "description": "Albert Embankment", - "value": true, - "type": "warning", - "data": { - "OBJECTID": 61, - "NAME": "Albert Embankment", - "CA_REF_NO": "CA57" - } - }, - "designated.WHS": { - "text": "is not a World Heritage Site", - "value": false, - "type": "check", - "data": {} - }, - "tpo": { - "text": "is not in a TPO (Tree Preservation Order) zone", - "value": false, - "type": "check", - "data": {} - }, - "nature.SSSI": { - "text": "is not a Site of Special Scientific Interest", - "value": false, - "type": "check", - "data": {} - }, - "designated.conservationArea.lambeth.churchRoad": {"value": false}, - "designated": {"value": true} - }, - "rawHeaders": [ - "X-Powered-By", - "Express", - "Access-Control-Allow-Origin", - "*", - "Access-Control-Allow-Headers", - "Origin, X-Requested-With, Content-Type, Accept", - "Access-Control-Allow-Credentials", - "true", - "Content-Type", - "application/json; charset=utf-8", - "Content-Length", - "1865", - "ETag", - "W/\"749-8dBT5+qe0AHWNmv4VuTASfvw94s\"", - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Sunray+Estate%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "Article_4_Direction": "External alterations to buildings are restricted", - "More_information": "http://www.southwark.gov.uk/planning-and-building-control/planning-policy-and-transport-policy/article-4-directions" - }, - "geometry": null, - "id": 1 - } - ], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "412", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=C08042647E437A836FDF52BFBD55773B; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+HMO+Bywater+Place%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=0ECE91FCB867D670B15DCB412AB79211; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+HMO+Henshaw+Street%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=A0DCA29865224FA0F881250478A1A7B7; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Public+Houses%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=04FAB176D443E27BE73F84357FE0DDF1; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+offices+in+the+Central+Activities+Zone%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=053DDDAD7EBB536930E37DBFE3027CBA; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Historic_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Location", "type": "String"}, - {"name": "TPO_document", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "131", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=C8A8FD1EFF3A54444E7DA9859714405F; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Individual_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Location", "type": "String"}, - {"name": "TPO_document", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "131", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=1E459194C3CE84438905D277CEAC8B02; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Area_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Location", "type": "String"}, - {"name": "TPO_document", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "131", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=B6ADD4F33B6A0E1F415EEF066914826C; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Woodland_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "Location": "Area bounded by Denmark Hill, Sunray Avenue, Red Post Hill and Casino Avenue.", - "TPO_document": "https://geo.southwark.gov.uk/connect/analyst/Includes/TPOs/215.pdf" - }, - "geometry": null, - "id": 7 - } - ], - "Metadata": [ - {"name": "Location", "type": "String"}, - {"name": "TPO_document", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "362", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=0316D74BE62144CAE397BDD51BFDE921; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Group_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Location", "type": "String"}, - {"name": "TPO_document", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "131", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=6952ABE57E006FFC902CD54848735F57; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Conservation_area%22%2C%22Conservation_area_number%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FConservation+areas%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "Conservation_area": "Sunray Estate", - "Conservation_area_number": 39, - "More_information": "http://www.southwark.gov.uk/planning-and-building-control/design-and-conservation/conservation-areas?chapter=36" - }, - "geometry": null, - "id": 37 - } - ], - "Metadata": [ - {"name": "Conservation_area", "type": "String"}, - {"name": "Conservation_area_number", "type": "Integer"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "453", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=AA313FB9F12550E8E0958FC4819CD922; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22ID%22%2C%22NAME%22%2C%22STREET_NUMBER%22%2C%22STREET%22%2C%22GRADE%22%2C%22DATE_OF_LISTING%22%2C%22LISTING_DESCRIPTION%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FListed+buildings+%28Southwark%29+Grade+I%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "ID", "type": "Double"}, - {"name": "NAME", "type": "String"}, - {"name": "STREET_NUMBER", "type": "String"}, - {"name": "STREET", "type": "String"}, - {"name": "GRADE", "type": "String"}, - {"name": "DATE_OF_LISTING", "type": "Date"}, - {"name": "LISTING_DESCRIPTION", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "313", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=0D4DF081E62C00823F15A743D9AAD44E; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22OGR_FID%22%2C%22NAME%22%2C%22NOTES%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FUNESCO+World+Heritage+Sites+England%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "OGR_FID", "type": "Double"}, - {"name": "NAME", "type": "String"}, - {"name": "NOTES", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "155", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=038AE85DB382CBD9C46846B876DC2141; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22ID%22%2C%22NAME%22%2C%22STREET_NUMBER%22%2C%22STREET%22%2C%22GRADE%22%2C%22DATE_OF_LISTING%22%2C%22LISTING_DESCRIPTION%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FListed+buildings+%28Southwark%29+Grade+II%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "ID", "type": "Double"}, - {"name": "NAME", "type": "String"}, - {"name": "STREET_NUMBER", "type": "String"}, - {"name": "STREET", "type": "String"}, - {"name": "GRADE", "type": "String"}, - {"name": "DATE_OF_LISTING", "type": "Date"}, - {"name": "LISTING_DESCRIPTION", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "313", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=C574579914F51FA47CF07D8E46173247; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Demolition+of+the+Stables+and+the+Forge+on+Catlin+Street%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=48DCE1481E6B647D784E7E6ECCF95FA0; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Railway+Arches%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=BA2812D78472F1CA5F7EE90756EEF936; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Town+Centres+A1+to+A2%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=7819FD01C167ACFDE94E1B206092DBD2; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22ID%22%2C%22NAME%22%2C%22STREET_NUMBER%22%2C%22STREET%22%2C%22GRADE%22%2C%22DATE_OF_LISTING%22%2C%22LISTING_DESCRIPTION%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FListed+buildings+%28Southwark%29+Grade+II+star%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "ID", "type": "Double"}, - {"name": "NAME", "type": "String"}, - {"name": "STREET_NUMBER", "type": "String"}, - {"name": "STREET", "type": "String"}, - {"name": "GRADE", "type": "String"}, - {"name": "DATE_OF_LISTING", "type": "Date"}, - {"name": "LISTING_DESCRIPTION", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "313", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=B4B729C01A0AA42054E2D8E1BFAA24BC; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Town+Centres+A3+-+A5+to+A2+and+from+A1+%E2%80%93+A5+B1+D1+and+D2+to+flexible+uses%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=5231BCA9028EB2F0DE80B4D180484373; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "https://geo.southwark.gov.uk:443", - "method": "POST", - "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Light+Industrial%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", - "status": 200, - "response": { - "type": "FeatureCollection", - "features": [], - "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} - ] - }, - "rawHeaders": [ - "Date", - "Thu, 21 Oct 2021 07:07:44 GMT", - "Content-Type", - "application/json;charset=utf-8", - "Content-Length", - "146", - "Connection", - "keep-alive", - "Server", - "Apache-Coyote/1.1", - "Set-Cookie", - "JSESSIONID=89AE1DA1CA3863402FC7F961EE2F9B01; Path=/connect; HttpOnly", - "Cache-Control", - "max-age=3600" - ], - "responseIsBinary": false - }, - { - "scope": "http://127.0.0.1:35357", - "method": "GET", - "path": "/gis/southwark?x=532700&y=175010&siteBoundary=[]", - "body": "", - "status": 200, - "response": { - "designated.AONB": { - "text": "is not in an Area of Outstanding Natural Beauty", - "value": false, - "type": "check", - "data": {} - }, - "designated.nationalPark": { - "text": "is not in a National Park", - "value": false, - "type": "check", - "data": {} - }, - "designated.broads": { - "text": "is not in a Broad", - "value": false, - "type": "check", - "data": {} - }, - "article4": { - "text": "is subject to Article 4 restriction(s)", - "description": "External alterations to buildings are restricted", - "value": true, - "type": "warning", - "data": { - "Article_4_Direction": "External alterations to buildings are restricted", - "More_information": "http://www.southwark.gov.uk/planning-and-building-control/planning-policy-and-transport-policy/article-4-directions" - } - }, - "listed": { - "value": false, - "text": "is not in, or within, a Listed Building", - "type": "check", - "data": {} - }, - "designated.conservationArea": { - "text": "is in a Conservation Area", - "description": "http://www.southwark.gov.uk/planning-and-building-control/design-and-conservation/conservation-areas?chapter=36", - "value": true, - "type": "warning", - "data": { - "Conservation_area": "Sunray Estate", - "Conservation_area_number": 39, - "More_information": "http://www.southwark.gov.uk/planning-and-building-control/design-and-conservation/conservation-areas?chapter=36" - } - }, - "designated.WHS": { - "value": false, - "text": "is not a World Heritage Site", - "type": "check", - "data": {} - }, - "tpo": { - "text": "is in a TPO (Tree Preservation Order) zone", - "description": "https://geo.southwark.gov.uk/connect/analyst/Includes/TPOs/215.pdf", - "value": true, - "type": "warning", - "data": { - "Location": "Area bounded by Denmark Hill, Sunray Avenue, Red Post Hill and Casino Avenue.", - "TPO_document": "https://geo.southwark.gov.uk/connect/analyst/Includes/TPOs/215.pdf" - } - }, - "article4.southwark.sunray": {"value": true} - }, - "rawHeaders": [ - "X-Powered-By", - "Express", - "Access-Control-Allow-Origin", - "*", - "Access-Control-Allow-Headers", - "Origin, X-Requested-With, Content-Type, Accept", - "Access-Control-Allow-Credentials", - "true", - "Content-Type", - "application/json; charset=utf-8", - "Content-Length", - "1710", - "ETag", - "W/\"6ae-SkO91nrEAS4tdcYgv/PtWWbE96w\"", - "Date", - "Thu, 21 Oct 2021 07:07:43 GMT", - "Connection", - "close" - ], - "responseIsBinary": false - } -] \ No newline at end of file diff --git a/api.planx.uk/tests/nocks/fetching-gis-data.f02de285.json b/api.planx.uk/tests/nocks/fetching-gis-data.f02de285.json index a4d5567521..3e6c7d130c 100644 --- a/api.planx.uk/tests/nocks/fetching-gis-data.f02de285.json +++ b/api.planx.uk/tests/nocks/fetching-gis-data.f02de285.json @@ -2,11 +2,11 @@ { "scope": "https://maps.buckscc.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/4/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CDESCRIPTIO&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", + "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/5/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CINT_ID%2CDEV_TYPE%2CDESCRIPTIO%2CDISTRICT&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252f273f47555d2514a030939e6642616a7162b59552bf93b79b93a8778ba0055c0993a10c5703d2eaec1ce419e01219efe4031244e2dd438a041d1d54a79107b904c29a92c0089a4161765825d1202e4fb836512410e40565cab0337006a2936cdc125459979e948faa16a7352f3d24b3294ac8c0c90cc41722891a6a1e88099696a501b0bf4676a6249691128c8a2636b014c90bcb960010000" + "1f8b08000000000000008d92616b83301086ff4ac86707b64cd8fa6d55b7658c5adab0314629693d6d98c692445829fef745ab36960efaedbd3797e72eb93be298ab7dc60ecf1cb278c672c0131c841f6bfa350fb18393da7eca3853a0f0e488a3e95be8531298ac5e3a98cce8baf15ae19c11035a102efd05995312357e1f9813b2a40be2d3daef64d5963785bf8f589c7ab3aaeac3be764049de744f4d1c3527ac6ed84eae9c1ed0b778ed3a111a529016a24db700d67bae21965a72915a042b3f0391ea1d9e8cbdfb01d0fa881b91d68d7fa0dd2fde8a3ce77740cfad566604c07429e13404a6cdbd4da92f9761f4e09db7c01d8cff9d8918318d7cc350f08ba6a5e2c2483467f2c741af3cdda1cfc3b6c83770b921fe8e89145091a052014a64911b9df02d28a40b64783c06a139cbd09d891290b51dc9d888bae84b10a1b13bf29ac088c7e19e7545ab6a55fd01e74919ea07030000" ], "rawHeaders": [ "Vary", @@ -16,15 +16,15 @@ "Server", "", "ETag", - "NGLRrkgMPSs1sBdl_ec1a70c", + "2r49ul6nh5rVfDwF_98439cb3", "Content-Encoding", "gzip", "Content-Type", "text/plain;charset=utf-8", "Content-Length", - "184", + "344", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close" ], @@ -33,11 +33,11 @@ { "scope": "https://maps.buckscc.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/5/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CDEV_TYPE%2CDESCRIPTIO%2CDISTRICT%2CDATE_CONF&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", + "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/2/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGRADE%2CDESCRIPTIO%2CADDRESS&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d52616bc23010fd2b219f3bacb2c2e6376debd631ac68d9184324da6b0daba924294ca4ff7d973a6b2a1bf8edddcbbd772fc91d69cad5be60870987229db21dd0210dc2b755f2310ba94333438f0ace14283a3cd278fc12fa491460570b9d8ba0a30dc2853f8f664914377c5be049b448e6919f18fe0c911d25e1ca8fa71343b7b8fe0d81e33f8f549c125ab3f5616f185092377748b08e9b136662dbcdb5d31a5831ff325868c9456e7958fd05885c6fe970e0dd770cadfbdd686929fe31bd3cce6d9697feb3a1e7da7eedabde6a6809da886ebdc43f01a62b09a75f611a85eb4a5fef48ffc1eb2cc72b1329619af82854f04dc695e202219931f9e590679e6fc9fb6153eed670bd3ffe96891c4899914a01c964b9439cf10d28a24b827e3c05a1392bc81d56194843c7324560863e053119b87daf29103c76b7d01a6a2da13be8b95eafe9aeeb65fd03c8aabac02c030000" + "1f8b08000000000000008d91310f83201085ffcbcd2c6d3a346e566863936a236ec681446a49a8314a0763f8ef052d16930e4edc3d1edf3d60844af4ad64c359705925ecc5218024bc1140f0b0522805eb790fc108e9e94aa23cc6c6b194082e59888991e615012634cae27b1ea746f41a0421c619a1d4c8aed2df21065f8cd0ccd33db61a5aabf0be1353bedcf4e9b4c36c2cdfacd1027049fe9da6aa134ded019c59f2a6564f088e1e68957e136d75c2210f3b8fe9aebe11f8b32fb4bd2ecdb371a6de9dfd97a2d41ff12a7003c5010000" ], "rawHeaders": [ "Vary", @@ -47,15 +47,15 @@ "Server", "", "ETag", - "NGLRrkgMPSs1sBdl_10fffe33", + "2r49ul6nh5rVfDwF_432247dd", "Content-Encoding", "gzip", "Content-Type", "text/plain;charset=utf-8", "Content-Length", - "349", + "210", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close" ], @@ -64,11 +64,11 @@ { "scope": "https://maps.buckscc.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/2/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGRADE%2CDESCRIPTIO%2CADDRESS&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", + "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/6/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CORDERREF%2CSTATUS%2CCOMMENTS&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d91310f83201085ffcbcd2c6d3a346e566863936a236ec681446a49a8314a0763f8ef052d16930e4edc3d1edf3d60844af4ad64c359705925ecc5218024bc1140f0b0522805eb790fc108e9e94aa23cc6c6b194082e59888991e615012634cae27b1ea746f41a0421c619a1d4c8aed2df21065f8cd0ccd33db61a5aabf0be1353bedcf4e9b4c36c2cdfacd1027049fe9da6aa134ded019c59f2a6564f088e1e68957e136d75c2210f3b8fe9aebe11f8b32fb4bd2ecdb371a6de9dfd97a2d41ff12a7003c5010000" + "1f8b08000000000000008d913f0b833010c5bfcbcd595adac5cdfa072ca8a0e9240e01af369006d17410c9776f52d4587070bbbcbcfbddbb6482860f9d6063cc5134197b23789017615414510c049e56f60567030ee04d90dfee514093d0ba9692b886bfde92faf4511a6d2e0804799a4619b5da5aea7988c15713c8398163abb1b30a0e3dff65a4e69c48852df6e696d968db064d1cc445d98394aae7b2dd329c5fa06cd50bbcd369c35bd738445bddbbac75fd83b48d7fe19daf175d9bc743a63ebdfd9daad65f587da44fcf010000" ], "rawHeaders": [ "Vary", @@ -78,15 +78,15 @@ "Server", "", "ETag", - "NGLRrkgMPSs1sBdl_432247dd", + "2r49ul6nh5rVfDwF_32cf9711", "Content-Encoding", "gzip", "Content-Type", "text/plain;charset=utf-8", "Content-Length", - "210", + "208", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close" ], @@ -95,11 +95,11 @@ { "scope": "https://maps.buckscc.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/3/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CName%2CDesc_&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", + "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/4/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CDESCRIPTIO&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b25202533a4a692021c79cccc4e2d46225ab6a257f272f57e7104f17a00a38534709558f4b6a71723c900ba16ba18600b547572be5415422e92da92c0089a416176582ed0f01f2fdc13289206b9115d7eac00d805a854d73704951665e3a927ea8da9cd4bcf4920c252b2353132483208e24d22498629851860606b5b140ffa5269694168102283ab61600a3a360e34e010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252f273f47555d2514a030939e6642616a7162b59552bf93b79b93a8778ba0055c0993a10c5703d2eaec1ce419e01219efe4031244e2dd438a041d1d54a79107b904c29a92c0089a4161765825d1202e4fb836512410e40565cab0337006a2936cdc125459979e948faa16a7352f3d24b3294ac8c0c90cc41722891a6a1e88099696a501b0bf4676a6249691128c8a2636b014c90bcb960010000" ], "rawHeaders": [ "Vary", @@ -109,15 +109,15 @@ "Server", "", "ETag", - "NGLRrkgMPSs1sBdl_25f9c9b3", + "2r49ul6nh5rVfDwF_ec1a70c", "Content-Encoding", "gzip", "Content-Type", "text/plain;charset=utf-8", "Content-Length", - "176", + "184", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close" ], @@ -126,11 +126,11 @@ { "scope": "https://maps.buckscc.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/1/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CName%2CDesc_%2CGrade&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", + "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/3/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CName%2CDesc_&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d90310fc2201085ffcbcd0cd5e8c2a6564d1dec60b7a631c49e95049b0670681afebb504a838943a783bbf73e1e3740cd5527587fe228ea2b7b2350180b81a76bed04670a15d001f2fde57828b2d42ae623815f4f8aea71b7575f099c25abddd85733412dae1ca0f5ce88a5fbce7550493ee629ec3d1f27ccc588c586cc80e9e97fe69b96bc6d22ffa415d836fa0574bddd44a0107a112988036a952411caff77212a88e75489a9eca690e98f74ab2f2bf305ad7659d8a8010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b25202533a4a692021c79cccc4e2d46225ab6a257f272f57e7104f17a00a38534709558f4b6a71723c900ba16ba18600b547572be5415422e92da92c0089a416176582ed0f01f2fdc13289206b9115d7eac00d805a854d73704951665e3a927ea8da9cd4bcf4920c252b2353132483208e24d22498629851860606b5b140ffa5269694168102283ab61600a3a360e34e010000" ], "rawHeaders": [ "Vary", @@ -140,15 +140,15 @@ "Server", "", "ETag", - "NGLRrkgMPSs1sBdl_9644b952", + "2r49ul6nh5rVfDwF_25f9c9b3", "Content-Encoding", "gzip", "Content-Type", "text/plain;charset=utf-8", "Content-Length", - "197", + "176", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close" ], @@ -157,11 +157,11 @@ { "scope": "https://maps.buckscc.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/6/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CORDERREF%2CSTATUS%2CCOMMENTS&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", + "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2Csssi_name&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d913f0b833010c5bfcbcd595adac5cdfa072ca8a0e9240e01af369006d17410c9776f52d4587070bbbcbcfbddbb6482860f9d6063cc5134197b23789017615414510c049e56f60567030ee04d90dfee514093d0ba9692b886bfde92faf4511a6d2e0804799a4619b5da5aea7988c15713c8398163abb1b30a0e3dff65a4e69c48852df6e696d968db064d1cc445d98394aae7b2dd329c5fa06cd50bbcd369c35bd738445bddbbac75fd83b48d7fe19daf175d9bc743a63ebdfd9daad65f587da44fcf010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2522a2e2ece8ccf03b17594d240e28e399989c5a9c54a56d54afe4e5eaece219e2e406570a60e920e64ddb550ed408dd1d54a5069245d2595052091d4e2a24cb0f52140be3f5826116421b2e25a1db801c8aec36642704951665e3a9221c81a7252f3d24b3294ac0c8d0c6a6381ce4b4d2c292d02f92c3ab61600484580070c010000" ], "rawHeaders": [ "Vary", @@ -171,15 +171,15 @@ "Server", "", "ETag", - "NGLRrkgMPSs1sBdl_32cf9711", + "2r49ul6nh5rVfDwF_a3f01184", "Content-Encoding", "gzip", "Content-Type", "text/plain;charset=utf-8", "Content-Length", - "208", + "160", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close" ], @@ -188,11 +188,11 @@ { "scope": "https://maps.buckscc.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2Csssi_name&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", + "path": "/arcgis/rest/services/PLANNING/RIPA_BOPS/MapServer/1/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CName%2CDesc_%2CGrade&geometry=485060.95%2C191930.05%2C485061.05%2C191929.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2522a2e2ece8ccf03b17594d240e28e399989c5a9c54a56d54afe4e5eaece219e2e406570a60e920e64ddb550ed408dd1d54a5069245d2595052091d4e2a24cb0f52140be3f5826116421b2e25a1db801c8aec36642704951665e3a9221c81a7252f3d24b3294ac0c8d0c6a6381ce4b4d2c292d02f92c3ab61600484580070c010000" + "1f8b08000000000000008d90310fc2201085ffcbcd0cd5e8c2a6564d1dec60b7a631c49e95049b0670681afebb504a838943a783bbf73e1e3740cd5527587fe228ea2b7b2350180b81a76bed04670a15d001f2fde57828b2d42ae623815f4f8aea71b7575f099c25abddd85733412dae1ca0f5ce88a5fbce7550493ee629ec3d1f27ccc588c586cc80e9e97fe69b96bc6d22ffa415d836fa0574bddd44a0107a112988036a952411caff77212a88e75489a9eca690e98f74ab2f2bf305ad7659d8a8010000" ], "rawHeaders": [ "Vary", @@ -202,22 +202,22 @@ "Server", "", "ETag", - "NGLRrkgMPSs1sBdl_a3f01184", + "2r49ul6nh5rVfDwF_9644b952", "Content-Encoding", "gzip", "Content-Type", "text/plain;charset=utf-8", "Content-Length", - "160", + "197", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close" ], "responseIsBinary": false }, { - "scope": "http://127.0.0.1:56093", + "scope": "http://127.0.0.1:33287", "method": "GET", "path": "/gis/buckinghamshire?x=485061.33649798&y=191930.3763250516&siteBoundary=[]", "body": "", @@ -227,71 +227,227 @@ "text": "is not in a National Park", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.broads": { "text": "is not in a Broad", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.WHS": { "text": "is not an UNESCO World Heritage Site", "value": false, "type": "check", - "data": {} + "data": [] }, "article4": { "text": "is subject to Article 4 restriction(s)", - "description": "Change of use from offices to residential - refer to Order and GDO 2015 and 2019", "value": true, "type": "warning", - "data": { - "OBJECTID": 185, - "DEV_TYPE": "Land at Cressex Business Park, High Wycombe", - "DESCRIPTIO": "Change of use from offices to residential - refer to Order and GDO 2015 and 2019", - "DISTRICT": "Wycombe", - "DATE_CONF": "02/05/2019" - } + "data": [ + { + "OBJECTID": 185, + "INT_ID": 0, + "DEV_TYPE": "Land at Cressex Business Park, High Wycombe", + "DESCRIPTIO": "Change of use from offices to residential - refer to Order and GDO 2015 and 2019", + "DISTRICT": "Wycombe" + } + ] }, "listed": { "text": "is not in, or within, a Listed Building", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.conservationArea": { "text": "is not in a Conservation Area", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.AONB": { "text": "is not in an Area of Outstanding Natural Beauty", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.monument": { "text": "is not the site of a Scheduled Ancient Monument", "value": false, "type": "check", - "data": {} + "data": [] }, "tpo": { "text": "is not in a TPO (Tree Preservation Order) zone", "value": false, "type": "check", - "data": {} + "data": [] }, "nature.SSSI": { "text": "is not a Site of Special Scientific Interest", "value": false, "type": "check", - "data": {} + "data": [] }, + "article4.buckinghamshire.AD186731": {"value": false}, + "article4.buckinghamshire.AD285884": {"value": false}, + "article4.buckinghamshire.AD287247": {"value": false}, + "article4.buckinghamshire.AD390975": {"value": false}, + "article4.buckinghamshire.amershamroad": {"value": false}, + "article4.buckinghamshire.amershamroadeast": {"value": false}, + "article4.buckinghamshire.asheridgeroad": {"value": false}, + "article4.buckinghamshire.bakerswood": {"value": false}, + "article4.buckinghamshire.bakerswoodbrokengate": {"value": false}, + "article4.buckinghamshire.ballingerroad": {"value": false}, + "article4.buckinghamshire.ballingerroadnorth": {"value": false}, + "article4.buckinghamshire.bangorsroadnorth": {"value": false}, + "article4.buckinghamshire.beamondendfarm": {"value": false}, + "article4.buckinghamshire.blackthornelane": {"value": false}, + "article4.buckinghamshire.boismoorroad": {"value": false}, + "article4.buckinghamshire.botleyroad": {"value": false}, + "article4.buckinghamshire.boundaryroad": {"value": false}, + "article4.buckinghamshire.bourneend": {"value": false}, + "article4.buckinghamshire.bovingdonheights.a": {"value": false}, + "article4.buckinghamshire.bovingdonheights.b": {"value": false}, + "article4.buckinghamshire.broadviewchesham": {"value": false}, + "article4.buckinghamshire.bryantsbottomroad.a": {"value": false}, + "article4.buckinghamshire.bryantsbottomroad.b": {"value": false}, + "article4.buckinghamshire.burtonslane": {"value": false}, + "article4.buckinghamshire.chalklaneanhydehealth": {"value": false}, + "article4.buckinghamshire.chartridgelane": {"value": false}, + "article4.buckinghamshire.cheshamroad": {"value": false}, + "article4.buckinghamshire.chessfieldparkenclosure": {"value": false}, + "article4.buckinghamshire.churchlane": {"value": false}, + "article4.buckinghamshire.collegeplantation": {"value": false}, + "article4.buckinghamshire.collumgreen": {"value": false}, + "article4.buckinghamshire.commonwood": {"value": false}, + "article4.buckinghamshire.commonwoodagri": {"value": false}, + "article4.buckinghamshire.commonwoodandpennroad": {"value": false}, + "article4.buckinghamshire.commonwoodenclosure": {"value": false}, + "article4.buckinghamshire.commonwoodpennroad": {"value": false}, + "article4.buckinghamshire.coneybankwood": {"value": false}, + "article4.buckinghamshire.copperkinslanecaravan": {"value": false}, + "article4.buckinghamshire.cooperkinslaneenclosure": {"value": false}, + "article4.buckinghamshire.coppicesouthheathcaravan": {"value": false}, + "article4.buckinghamshire.cryershillroad": {"value": false}, + "article4.buckinghamshire.deanfield": {"value": false}, + "article4.buckinghamshire.DO10fulmer": {"value": false}, + "article4.buckinghamshire.dorneywoodroad": {"value": false}, + "article4.buckinghamshire.eastamershamroadOS0006": {"value": false}, + "article4.buckinghamshire.eastamershamroadOS9269": {"value": false}, + "article4.buckinghamshire.eastjasonshill": {"value": false}, + "article4.buckinghamshire.eastjordanslane": {"value": false}, + "article4.buckinghamshire.eastlatimervillage": {"value": false}, + "article4.buckinghamshire.eastlodgelaneagri": {"value": false}, + "article4.buckinghamshire.eastlodgelanecaravan": {"value": false}, + "article4.buckinghamshire.eastmarishlane": {"value": false}, + "article4.buckinghamshire.eastvaleroad": {"value": false}, + "article4.buckinghamshire.ferrylane": {"value": false}, + "article4.buckinghamshire.ferrylaneagri": {"value": false}, + "article4.buckinghamshire.fourwinds": {"value": false}, + "article4.buckinghamshire.fulmer": {"value": false}, + "article4.buckinghamshire.fulmerplacefarm": {"value": false}, + "article4.buckinghamshire.georgegreen": {"value": false}, + "article4.buckinghamshire.gravellyway": {"value": false}, + "article4.buckinghamshire.greenacres": {"value": false}, + "article4.buckinghamshire.greenstreetdarmagri": {"value": false}, + "article4.buckinghamshire.greenstreetfarm.a": {"value": false}, + "article4.buckinghamshire.greenstreetfarm.b": {"value": false}, + "article4.buckinghamshire.hampdenroad": {"value": false}, + "article4.buckinghamshire.hollybushcorner": {"value": false}, + "article4.buckinghamshire.johnsonsfarm": {"value": false}, + "article4.buckinghamshire.junctionhughendenroad": {"value": false}, + "article4.buckinghamshire.lakeendroad": {"value": false}, + "article4.buckinghamshire.littlekingsash": {"value": false}, + "article4.buckinghamshire.lodgelane": {"value": false}, + "article4.buckinghamshire.lodgelaneagri": {"value": false}, + "article4.buckinghamshire.lodgelaneenclosure.a": {"value": false}, + "article4.buckinghamshire.lodgelaneenclosure.b": {"value": false}, + "article4.buckinghamshire.manorfarm": {"value": false}, + "article4.buckinghamshire.mansionlanesouth": {"value": false}, + "article4.buckinghamshire.mansionlanewest": {"value": false}, + "article4.buckinghamshire.millfarm": {"value": false}, + "article4.buckinghamshire.ministrywharf": {"value": false}, + "article4.buckinghamshire.nightingaleslane": {"value": false}, + "article4.buckinghamshire.northandsouthhollowway": {"value": false}, + "article4.buckinghamshire.northballingerroadvaravan": {"value": false}, + "article4.buckinghamshire.northlongpark": {"value": false}, + "article4.buckinghamshire.northorbitalroad": {"value": false}, + "article4.buckinghamshire.northpark": {"value": false}, + "article4.buckinghamshire.northsidesevenhills": {"value": false}, + "article4.buckinghamshire.northwelderslane": {"value": false}, "article4.buckinghamshire.officetoresi": {"value": true}, + "article4.buckinghamshire.os1178": {"value": false}, + "article4.buckinghamshire.os262": {"value": false}, + "article4.buckinghamshire.os3100": {"value": false}, + "article4.buckinghamshire.os3313.a": {"value": false}, + "article4.buckinghamshire.os3313.b": {"value": false}, + "article4.buckinghamshire.os4729": {"value": false}, + "article4.buckinghamshire.os5200": {"value": false}, + "article4.buckinghamshire.os6961": {"value": false}, + "article4.buckinghamshire.os8050": {"value": false}, + "article4.buckinghamshire.os8349": {"value": false}, + "article4.buckinghamshire.parkspringwood": {"value": false}, + "article4.buckinghamshire.parslowshillock": {"value": false}, + "article4.buckinghamshire.pednorhighroad": {"value": false}, + "article4.buckinghamshire.pednorroadanddrydelllane": {"value": false}, + "article4.buckinghamshire.pednorroadcaravan": {"value": false}, + "article4.buckinghamshire.pednorroaddrydelllane": {"value": false}, + "article4.buckinghamshire.pednorroadenclosure": {"value": false}, + "article4.buckinghamshire.pennroad": {"value": false}, + "article4.buckinghamshire.phillipshillfarm.a": {"value": false}, + "article4.buckinghamshire.phillipshillfarm.b": {"value": false}, + "article4.buckinghamshire.piggery": {"value": false}, + "article4.buckinghamshire.potkilnlaneandlayternsgreen": {"value": false}, + "article4.buckinghamshire.potterrowcaravan": {"value": false}, + "article4.buckinghamshire.potterrowenclosure": {"value": false}, "article4.buckinghamshire.poultry": {"value": false}, + "article4.buckinghamshire.purtonlane": {"value": false}, + "article4.buckinghamshire.rearuplands": {"value": false}, + "article4.buckinghamshire.robertswooddrive": {"value": false}, + "article4.buckinghamshire.ruralwycombe": {"value": false}, + "article4.buckinghamshire.saunderton": {"value": false}, + "article4.buckinghamshire.sedgesfarm": {"value": false}, + "article4.buckinghamshire.sheepcotedellroad": {"value": false}, + "article4.buckinghamshire.sibleyscoppice": {"value": false}, + "article4.buckinghamshire.skimmersorchard.a": {"value": false}, + "article4.buckinghamshire.skimmersorchard.b": {"value": false}, + "article4.buckinghamshire.skimmersorchard.c": {"value": false}, + "article4.buckinghamshire.southA413": {"value": false}, + "article4.buckinghamshire.southchartridge": {"value": false}, + "article4.buckinghamshire.southeastfinchlane": {"value": false}, + "article4.buckinghamshire.southkilnlane": {"value": false}, + "article4.buckinghamshire.southlittlemissenden": {"value": false}, + "article4.buckinghamshire.southpenfoldlane.a": {"value": false}, + "article4.buckinghamshire.southpenfoldlane.b": {"value": false}, + "article4.buckinghamshire.southpenfoldlaneOS262": {"value": false}, + "article4.buckinghamshire.southsheepcoteroad": {"value": false}, + "article4.buckinghamshire.southsidekiln": {"value": false}, + "article4.buckinghamshire.southswanbottom": {"value": false}, + "article4.buckinghamshire.stokenchurch": {"value": false}, + "article4.buckinghamshire.threeoaksfarm": {"value": false}, + "article4.buckinghamshire.turnerswood": {"value": false}, + "article4.buckinghamshire.turvillevalley": {"value": false}, + "article4.buckinghamshire.valleyroad": {"value": false}, + "article4.buckinghamshire.wellcottage": {"value": false}, + "article4.buckinghamshire.westledgelanecaravan": {"value": false}, + "article4.buckinghamshire.weststhubertslane": {"value": false}, + "article4.buckinghamshire.westwexhamstreet": {"value": false}, + "article4.buckinghamshire.wholedistrictpoultry": {"value": false}, + "article4.buckinghamshire.widmerfarm": {"value": false}, + "article4.buckinghamshire.wigginton": {"value": false}, + "article4.buckinghamshire.wiltonlane": {"value": false}, + "article4.buckinghamshire.wooburngreen": {"value": false}, + "article4.buckinghamshire.woodlandsmeadow": {"value": false}, + "article4.buckinghamshire.wyburnwood": {"value": false}, + "article4.buckinghamshire.wyburnwoodagri": {"value": false}, + "article4.buckinghamshire.wyburnwoodforestry": {"value": false}, + "article4.buckinghamshire.wycombehealthfarmnortheast": {"value": false}, + "article4.buckinghamshire.wycombehealthfarmspurlands": {"value": false}, + "article4.buckinghamshire.wycombeheathfarm": {"value": false}, + "article4.buckinghamshire.wycombeheathfarmcaravan": {"value": false}, "designated": {"value": false} }, "rawHeaders": [ @@ -306,11 +462,11 @@ "Content-Type", "application/json; charset=utf-8", "Content-Length", - "1498", + "10444", "ETag", - "W/\"5da-LupMsGr+SHNlb6LUYmbQAtkxv/c\"", + "W/\"28cc-SAZb7x1Zwlx9sskHOKb+tVa9CHI\"", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Connection", "close" ], @@ -319,11 +475,11 @@ { "scope": "https://mapping.canterbury.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/3/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CREF%2CLOCATION_1%2CCOMMENT%2CDESCRIPTIO&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", + "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/3/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CREF%2CLOCATION_1%2CDESCRIPTIO&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d924d0b82401086ff4accd943d1cd9ba981516e94b7885872b4856d0ddd0e21fef7662d6382026fbbefbcf3ec7c6c0bb96a6e5a3e960a759eca2b820fbb78091e144e09b4920d36e0b72016ab38cc92880c9fa3d77b29030bacd19c9194b508832c11e9694681757596565586f4506c36719a9118e4b972a2d493c414d5757044f13edc255b4a2653242d42f72e830a38b4605ee5b1d7ede3e6146c6ad53790d15df411e90ae7e6cefb005efdfdcadddb5a9992a5f3c6349ad25ec09f4f198b753b12c946321067538e1c063592f76f9abfe16cc623f9fd22be71475a0b4a7bafddcf381cbb272b5c82c046020000" + "1f8b08000000000000008d91b10e82400c86dfa53303c68d4d01130c01236c84980b14bce43c089c0321bcbb0595d4c481edfab7fdfab7374229fb5689e12451959178203870f54f6041352b0725458f3d3823c4c7b3efa6814705ebd35a6aa9032bec5017484a18bb873488a3db8e12615308231b4dbae727ee35b8508a744f1884e93384f0d908fa3d9cb1cdd0ce0af69d5ceca514c74b46ccb678f164ad80b7fb7fbd89e9a4ae593bb7ad50d7e60ecede662cb6cb46245bf84bdcd91cc9ceb011b9dcea1797d3e5509867377f4d964f2f901c11c3c7010000" ], "rawHeaders": [ "Cache-Control", @@ -333,7 +489,7 @@ "Content-Encoding", "gzip", "ETag", - "72cd4659", + "e14871a1", "Vary", "Origin", "Server", @@ -347,11 +503,11 @@ "X-XSS-Protection", "1", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close", "Content-Length", - "249" + "218" ], "responseIsBinary": false }, @@ -386,7 +542,7 @@ "X-XSS-Protection", "1", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close", "Content-Length", @@ -394,6 +550,45 @@ ], "responseIsBinary": false }, + { + "scope": "https://mapping.canterbury.gov.uk:443", + "method": "GET", + "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CSchedDate%2CAmendDate&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", + "body": "", + "status": 200, + "response": [ + "1f8b08000000000000008d91b10e823010865fc5dccc6434316c289ae820036c84a191139a9486d03210c2bbdbd6164a6470eaf5ffefbebb5e4728a96819196e1459f9240d4208e608e0ada588512250403842727e5c2fd93d56197318c0ba267dd558c6446ac9c43dc372678400a206b9334decacc936536df211f897e8f59043ab15141d357366ea9e1887e8f1fce429980176a4ade2547694575ebdcd65c82b5943b83f1e3cd0f2a86d9ab51cebe7dd8e7af298cb2efe62aed6e5130bb53a24b2eff41fe5c5f401f82a285cd1010000" + ], + "rawHeaders": [ + "Cache-Control", + "max-age=0,must-revalidate", + "Content-Type", + "text/plain;charset=utf-8", + "Content-Encoding", + "gzip", + "ETag", + "a56e84f1", + "Vary", + "Origin", + "Server", + "Microsoft-IIS/8.5", + "X-Powered-By", + "ARR/2.5", + "X-Frame-Options", + "SAMEORIGIN", + "Referrer-Policy", + "same-origin", + "X-XSS-Protection", + "1", + "Date", + "Wed, 12 Jan 2022 09:42:20 GMT", + "Connection", + "close", + "Content-Length", + "209" + ], + "responseIsBinary": false + }, { "scope": "https://environment.data.gov.uk:443", "method": "GET", @@ -407,7 +602,7 @@ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", @@ -431,7 +626,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:56 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:21 GMT; Path=/arcgis/rest; Secure; HttpOnly", "X-AspNet-Version", "4.0.30319", "X-Powered-By", @@ -442,50 +637,11 @@ { "scope": "https://mapping.canterbury.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/6/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CREF%2CLOCATION_1%2CCOMMENT%2CDESCRIPTIO&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", - "body": "", - "status": 200, - "response": [ - "1f8b08000000000000008d914d0f82300c86ff4bcf3b68bc715398090698516ec498450a2ec169601e0ce1bf5b50b4261eb8756fdf3efd580bb9696e957eac0d5679a22f081eece41a0414bdb2ac8c6eb001af05b5da483f0d03327c423178a9020bacd19e909448f9cb3454c9714e89e87ad2ce5c2de9be8a6399a4248e918040eefd5db8253bc9817608ddbb31b5cc5ab0af81583ff7b8f50a36b519464ee9ad868cee47e5e64e7c00af8dfed5ee5d6d6cc9caf92a15dad29dc15bcc188bed3711c98e3012e7338efc1e6412ef6bff8f63579d481c4eff8b3bd047a076f7bafffdecd03d01b73645882a020000" - ], - "rawHeaders": [ - "Cache-Control", - "max-age=0,must-revalidate", - "Content-Type", - "text/plain;charset=utf-8", - "Content-Encoding", - "gzip", - "ETag", - "498489b9", - "Vary", - "Origin", - "Server", - "Microsoft-IIS/8.5", - "X-Powered-By", - "ARR/2.5", - "X-Frame-Options", - "SAMEORIGIN", - "Referrer-Policy", - "same-origin", - "X-XSS-Protection", - "1", - "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", - "Connection", - "close", - "Content-Length", - "238" - ], - "responseIsBinary": false - }, - { - "scope": "https://mapping.canterbury.gov.uk:443", - "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CSchedDate%2CAmendDate&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", + "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/6/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CREF%2CLOCATION_1%2CDESCRIPTIO&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d91b10e823010865fc5dccc6434316c289ae820036c84a191139a9486d03210c2bbdbd6164a6470eaf5ffefbebb5e4728a96819196e1459f9240d4208e608e0ada588512250403842727e5c2fd93d56197318c0ba267dd558c6446ac9c43dc372678400a206b9334decacc936536df211f897e8f59043ab15141d357366ea9e1887e8f1fce429980176a4ade2547694575ebdcd65c82b5943b83f1e3cd0f2a86d9ab51cebe7dd8e7af298cb2efe62aed6e5130bb53a24b2eff41fe5c5f401f82a285cd1010000" + "1f8b08000000000000008d91b10e82400c86dfa53303c68d4d01130c01236c84980b14bce43c089c0321bcbb0595d4c481edfab7fdfab7374229fb5689e12451959178203870f54f6041352b0725458f3d3823c4c7b3efa6814705ebd35a6aa9032bec5017484a18bb873488a3db8e12615308231b4dbae727ee35b8508a744f1884e93384f0d908fa3d9cb1cdd0ce0af69d5ceca514c74b46ccb678f164ad80b7fb7fbd89e9a4ae593bb7ad50d7e60ecede662cb6cb46245bf84bdcd91cc9ceb011b9dcea1797d3e5509867377f4d964f2f901c11c3c7010000" ], "rawHeaders": [ "Cache-Control", @@ -495,7 +651,7 @@ "Content-Encoding", "gzip", "ETag", - "a56e84f1", + "e14871a1", "Vary", "Origin", "Server", @@ -509,11 +665,11 @@ "X-XSS-Protection", "1", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:20 GMT", "Connection", "close", "Content-Length", - "209" + "218" ], "responseIsBinary": false }, @@ -548,7 +704,7 @@ "X-XSS-Protection", "1", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Connection", "close", "Content-Length", @@ -559,11 +715,11 @@ { "scope": "https://mapping.canterbury.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/13/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTPO%2CTPO_Group%2CLocation%2CDescription&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", + "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/4/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CTYPE%2CDESIGNATIO%2CDESCRIPTIO%2CURL&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564a2d2aca2f52b2aa564ace4f4955b2323130d051ca4d2d2e4e4c07f294dc1233735253144af215522b52934b4b52150a4b538b2af594749452524b8092c54a56d1b1b5b500e89014d348000000" + "1f8b08000000000000008d52cb6a834014fd95308bae2446f38008a118b5c5906a49cca2942c263a3543cd28f30884e0bf778c8f0e92859b79dc7beee1dc7bcf1d24981519bcbd61942501bc206081c0fef080067eaa909d61c81003d61d84eb8de744be2b11dd53abc1b2a62ad540f4f559fd1e97065c6fefbf0776e48732e62286530239cec9c8851cd57967e77f76f998e2a2cacbd461b795b1ea2c1b2552c3f71d905aa22280df8a2a8218c58f2622f90f1f19586957c1a5d611343d3e2bde738a49aad437bd6588a4fc0c2c633e51889a56071135d896686a2a3ccaac06b23d196827b1c7dc4e7938b3b28a4eaeda76b599816c35b46531e5f48e72a508724151bd54c865cd49f0becf8cd9b433d8d68fa2adb70e0fbbc0fb379a931386e8b51e824d11ecbbce34f4c9423796cb59df6f7651508819cc461b41d0c89c4ce69defce9c1796ae27792c2e8870368e21e1889e04bd8dd3fc3a16bf7a214e19666744f5cb35d6e593bb2dfa1527f2c2d2b574a50a7c113821f9ca756c73ba9883b23c967f65924ad980030000" ], "rawHeaders": [ "Cache-Control", @@ -573,7 +729,7 @@ "Content-Encoding", "gzip", "ETag", - "4fc6bde0", + "5dd08fcd", "Vary", "Origin", "Server", @@ -587,11 +743,11 @@ "X-XSS-Protection", "1", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Connection", "close", "Content-Length", - "89" + "397" ], "responseIsBinary": false }, @@ -626,7 +782,7 @@ "X-XSS-Protection", "1", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Connection", "close", "Content-Length", @@ -637,11 +793,11 @@ { "scope": "https://mapping.canterbury.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/4/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CTYPE%2CDESIGNATIO%2CDESCRIPTIO%2CURL&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", + "path": "/arcgis/rest/services/External/Planning_Constraints_New/MapServer/13/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTPO%2CTPO_Group%2CLocation%2CDescription&geometry=621191.95%2C157770.05%2C621192.05%2C157769.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d52cb6a834014fd95308bae2446f38008a118b5c5906a49cca2942c263a3543cd28f30884e0bf778c8f0e92859b79dc7beee1dc7bcf1d24981519bcbd61942501bc206081c0fef080067eaa909d61c81003d61d84eb8de744be2b11dd53abc1b2a62ad540f4f559fd1e97065c6fefbf0776e48732e62286530239cec9c8851cd57967e77f76f998e2a2cacbd461b795b1ea2c1b2552c3f71d905aa22280df8a2a8218c58f2622f90f1f19586957c1a5d611343d3e2bde738a49aad437bd6588a4fc0c2c633e51889a56071135d896686a2a3ccaac06b23d196827b1c7dc4e7938b3b28a4eaeda76b599816c35b46531e5f48e72a508724151bd54c865cd49f0becf8cd9b433d8d68fa2adb70e0fbbc0fb379a931386e8b51e824d11ecbbce34f4c9423796cb59df6f7651508819cc461b41d0c89c4ce69defce9c1796ae27792c2e8870368e21e1889e04bd8dd3fc3a16bf7a214e19666744f5cb35d6e593bb2dfa1527f2c2d2b574a50a7c113821f9ca756c73ba9883b23c967f65924ad980030000" + "1f8b0800000000000000ab564a2d2aca2f52b2aa564ace4f4955b2323130d051ca4d2d2e4e4c07f294dc1233735253144af215522b52934b4b52150a4b538b2af594749452524b8092c54a56d1b1b5b500e89014d348000000" ], "rawHeaders": [ "Cache-Control", @@ -651,7 +807,7 @@ "Content-Encoding", "gzip", "ETag", - "5dd08fcd", + "4fc6bde0", "Vary", "Origin", "Server", @@ -665,11 +821,11 @@ "X-XSS-Protection", "1", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Connection", "close", "Content-Length", - "397" + "89" ], "responseIsBinary": false }, @@ -704,7 +860,7 @@ "X-XSS-Protection", "1", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Connection", "close", "Content-Length", @@ -713,7 +869,7 @@ "responseIsBinary": false }, { - "scope": "http://127.0.0.1:56102", + "scope": "http://127.0.0.1:39595", "method": "GET", "path": "/gis/canterbury?x=621192.0132463141&y=157770.55052344775&siteBoundary=[]", "body": "", @@ -723,13 +879,13 @@ "text": "is not in a National Park", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.broads": { "text": "is not in a Broad", "value": false, "type": "check", - "data": {} + "data": [] }, "article4": { "text": "is not subject to any Article 4 Restrictions", @@ -782,6 +938,71 @@ "type": "check", "data": {} }, + "article4.canterbury.adisham.a": {"value": false}, + "article4.canterbury.adisham.b": {"value": false}, + "article4.canterbury.barham.a": {"value": false}, + "article4.canterbury.barham.b": {"value": false}, + "article4.canterbury.barham.c": {"value": false}, + "article4.canterbury.bishopsbourne": {"value": false}, + "article4.canterbury.blean.a": {"value": false}, + "article4.canterbury.blean.b": {"value": false}, + "article4.canterbury.bridge": {"value": false}, + "article4.canterbury.brookfield": {"value": false}, + "article4.canterbury.chartham": {"value": false}, + "article4.canterbury.chestfield": {"value": false}, + "article4.canterbury.chisit.a": {"value": false}, + "article4.canterbury.chisit.b": {"value": false}, + "article4.canterbury.city": {"value": false}, + "article4.canterbury.denstroude.a": {"value": false}, + "article4.canterbury.denstroude.b": {"value": false}, + "article4.canterbury.fordwich": {"value": false}, + "article4.canterbury.fourAcres": {"value": false}, + "article4.canterbury.graveneyMarshes": {"value": false}, + "article4.canterbury.hackington": {"value": false}, + "article4.canterbury.harbledown.a": {"value": false}, + "article4.canterbury.harbledown.b": {"value": false}, + "article4.canterbury.herne": {"value": false}, + "article4.canterbury.herneBay": {"value": false}, + "article4.canterbury.hoath.a": {"value": false}, + "article4.canterbury.hoath.b": {"value": false}, + "article4.canterbury.ickham.a": {"value": false}, + "article4.canterbury.ickham.b": {"value": false}, + "article4.canterbury.ickhamWickhambreaux": {"value": false}, + "article4.canterbury.kemberlandWood": {"value": false}, + "article4.canterbury.kingston": {"value": false}, + "article4.canterbury.littlebourne": {"value": false}, + "article4.canterbury.lovelane": {"value": false}, + "article4.canterbury.lowerHardres": {"value": false}, + "article4.canterbury.mountsWoods": {"value": false}, + "article4.canterbury.nackington": {"value": false}, + "article4.canterbury.nelsonRoad": {"value": false}, + "article4.canterbury.patrixbourne": {"value": false}, + "article4.canterbury.pennyPot": {"value": false}, + "article4.canterbury.petham.a": {"value": false}, + "article4.canterbury.petham.b": {"value": false}, + "article4.canterbury.sandpitWood": {"value": false}, + "article4.canterbury.southWhitstable": {"value": false}, + "article4.canterbury.stMartinsHospital.a": {"value": false}, + "article4.canterbury.stMartinsHospital.b": {"value": false}, + "article4.canterbury.stodmarsh": {"value": false}, + "article4.canterbury.sturry": {"value": false}, + "article4.canterbury.tylerHill": {"value": false}, + "article4.canterbury.upperHarbledown": {"value": false}, + "article4.canterbury.upperHardres.a": {"value": false}, + "article4.canterbury.upperHardres.b": {"value": false}, + "article4.canterbury.vikingsEstate": {"value": false}, + "article4.canterbury.walderchainWood.a": {"value": false}, + "article4.canterbury.walderchainWood.b": {"value": false}, + "article4.canterbury.waltham": {"value": false}, + "article4.canterbury.watermill": {"value": false}, + "article4.canterbury.westbere": {"value": false}, + "article4.canterbury.whitstable.a": {"value": false}, + "article4.canterbury.whitstable.b": {"value": false}, + "article4.canterbury.whitstableBeach": {"value": false}, + "article4.canterbury.whitstableConservation": {"value": false}, + "article4.canterbury.womenswold.a": {"value": false}, + "article4.canterbury.womenswold.b": {"value": false}, + "article4.canterbury.yorkletts": {"value": false}, "designated": {"value": true} }, "rawHeaders": [ @@ -796,11 +1017,11 @@ "Content-Type", "application/json; charset=utf-8", "Content-Length", - "1275", + "4502", "ETag", - "W/\"4fb-HNQkktNRp7odV3/HKTGuwsSeuJk\"", + "W/\"1196-ARQyEVYlY6v8F7FES6HHiFOi2Sc\"", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Connection", "close" ], @@ -819,7 +1040,7 @@ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", @@ -848,21 +1069,21 @@ { "scope": "https://gis.lambeth.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/LambethCentralActivitiesZone/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTITLE%2CPOLICY&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", + "path": "/arcgis/rest/services/LambethListedBuildings/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGRADE%2CADDRESS_1&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d904d8bc2301086ff4a98730545bcf4a65d858a58c15c56f190d55107625a9a512825ff7d535b35bbec82a74cde99f7998f1a0e640badaa19a13e2cd5052186f403223836c25893b26821ae219bcca789f4a9f815462053b9987aa97d2358658b34f9f44217b80ee411db1a4ccb0ffc5c158d82b6a4fb04d2ffb37b4635adc362173d018f6e7fb9d75c9239058047b14673e233c483513f407573bec97a5687b09ddf11155f4b6cb754ec6d5f57fe7db7c1eb5c091a2e9516e33dd38d98d08a4d6ef0c701734dfb4a0c454fc8338aff1cceeddc371013d349c5010000" + "1f8b08000000000000008d90c16ec2300c865f25f239974e9a867a6bd78e1531985a6e139a0cf120226b51931c5095775f4a571aa11d768af3dbfefcdb1d08a9cf0a2f2f929458e137410cabe42d070e5fbd9428899a34c41dacd345febc29325f710b39cccb24cbbd34bc1c922c2bf3aafa8cbc36c5ee17e7411f1dd4c39c80622ee75e21ddcaab938dffafaf19ec0d84c58edf00e3ccbfba2bd3cafa1000c66245f5c11c217e780c4893d37fd2c28691184591dbfa45098d6d6958158defdc59737fc2d9d36cbadd526a4382a5562ae1c7b0798b825851dc9db36aac39eeb03eb1d7c66ae22c55b83fb1776f6d4fac6c5080735bf703c86e916bd4010000" ], "rawHeaders": [ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", - "231", + "255", "Connection", "close", "Cache-Control", @@ -876,7 +1097,7 @@ "Vary", "Origin", "ETag", - "720e0394", + "4dec94d1", "x-esri-ftiles-cache-compress", "true", "Content-Encoding", @@ -887,21 +1108,21 @@ { "scope": "https://gis.lambeth.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/LambethArticle4B1toC3/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CARTICLE_4&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", + "path": "/arcgis/rest/services/LambethConservationAreas/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CCA_REF_NO&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d904f0f82300cc5bfcad233078d7ae1068a11ff60a2dc8c3133545cc44158893164dfdd210417e3c15bd7bdf77b6d6b48842a32fe9c0bcc9288df115c88bc4d000e5c9a969709ae50815bc3d65f06d3389c19455f3aadb8f778bb389cae83d3d8b43eb5ee600673a841b62916839e45d341558af71cb1796fdf3fbc89b7c5dae9015de42ff39e4a2153cbdf693394295dc19d0c2cce67ce3f61b6c1221ecd96c8a92ab1dd9393319e2bfabede70d45f6d9f5774653e9737b6c82b858ccb8445f828f29298c945a4afa3ae42df03ad8ffa051e269908ba010000" + "1f8b08000000000000008d904f0b824010c5bf4accd94b8409decc0c0a52286f21b2e2644beb22eb7a10d9efdefa275daa43b7d9d9f77e6f663ac8695d31d21e28b23c2425820ba1770ec0827bdff2182535d6e07610ed4e811f1ff75a3197d6289e3dbe975e82431a46bab5d46a8269ccad033ea6180cd9567d076b41873962fd8e861fd2c79b6265cd8029f297f92a05e585e19fb40c79211fe06e1c83b3ccf927cc34bc89b64af492486423705c9348edcb1af979bced7a3e9ac7321472159419e1cf12b9fcbaa0ed8052897a01e1800562a7010000" ], "rawHeaders": [ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", - "228", + "215", "Connection", "close", "Cache-Control", @@ -915,7 +1136,7 @@ "Vary", "Origin", "ETag", - "223f8627", + "e2843dcb", "x-esri-ftiles-cache-compress", "true", "Content-Encoding", @@ -926,21 +1147,21 @@ { "scope": "https://gis.lambeth.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/LambethConservationAreas/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CCA_REF_NO&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", + "path": "/arcgis/rest/services/LambethTreePreservationOrderBoundaries/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTPO_NUMBER%2CLEGISLATION&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d904f0b824010c5bf4accd94b8409decc0c0a52286f21b2e2644beb22eb7a10d9efdefa275daa43b7d9d9f77e6f663ac8695d31d21e28b23c2425820ba1770ec0827bdff2182535d6e07610ed4e811f1ff75a3197d6289e3dbe975e82431a46bab5d46a8269ccad033ea6180cd9567d076b41873962fd8e861fd2c79b6265cd8029f297f92a05e585e19fb40c79211fe06e1c83b3ccf927cc34bc89b64af492486423705c9348edcb1af979bced7a3e9ac7321472159419e1cf12b9fcbaa0ed8052897a01e1800562a7010000" + "1f8b08000000000000008d90310b83301085ffcbcd595a7071539b96144da4a69388049ada801531e920e27f6f628b44e8d02defdedd77ef32c14de9be15e351c9f646c5534208458e13828b7a57d328c380e0eecca855424b0de1042c3ee3849383ed5d9f0878ce6a7acd627cb1754f2048f1891469c409a3d6f2d5fc855b6c3941f7d9ef31cdd8bb8ad4835a1272abd9e20817c76f9ed10ad82cff8528cca0bac6a36c265ad935e601e13e083ca81ffb4fea76c4c756f66e29cc6b701f5a56f31b42688fd288010000" ], "rawHeaders": [ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:21 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", - "215", + "202", "Connection", "close", "Cache-Control", @@ -954,7 +1175,7 @@ "Vary", "Origin", "ETag", - "e2843dcb", + "c2850930", "x-esri-ftiles-cache-compress", "true", "Content-Encoding", @@ -963,191 +1184,191 @@ "responseIsBinary": false }, { - "scope": "https://gis.lambeth.gov.uk:443", + "scope": "https://environment.data.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/LambethListedBuildings/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGRADE%2CADDRESS_1&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", + "path": "/arcgis/rest/services/NE/SitesOfSpecialScientificInterestEngland/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Csssi_name&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d90c16ec2300c865f25f239974e9a867a6bd78e1531985a6e139a0cf120226b51931c5095775f4a571aa11d768af3dbfefcdb1d08a9cf0a2f2f929458e137410cabe42d070e5fbd9428899a34c41dacd345febc29325f710b39cccb24cbbd34bc1c922c2bf3aafa8cbc36c5ee17e7411f1dd4c39c80622ee75e21ddcaab938dffafaf19ec0d84c58edf00e3ccbfba2bd3cafa1000c66245f5c11c217e780c4893d37fd2c28691184591dbfa45098d6d6958158defdc59737fc2d9d36cbadd526a4382a5562ae1c7b0798b825851dc9db36aac39eeb03eb1d7c66ae22c55b83fb1776f6d4fac6c5080735bf703c86e916bd4010000" + "1f8b08000000000000006d8fbd0ec2300c84dfc5730660cc86842ab1c0005b55552931c528842a0e4315e5dd4950557960f3cf7d7776024b3c39333784ce9ecc0b41033353ef6bade05ee77b4786914127780f4fbc45b245b6964a1092ce0b5ec036c1b216549ca73a410ef48bbf96fe7c3c948da981529cd56a20affbe7708981fc284c24e0d08ff1017abbdbe4ae9c87267e42fdacedf217093ee47f0c010000" ], "rawHeaders": [ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:22 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", - "255", + "161", "Connection", "close", "Cache-Control", - "max-age=0,must-revalidate", + "public, must-revalidate, max-age=0", + "Content-Encoding", + "gzip", "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", + "ETag", + "712c1184", + "Vary", + "Origin", "X-Content-Type-Options", "nosniff", "X-XSS-Protection", "1; mode=block", - "Vary", - "Origin", - "ETag", - "4dec94d1", "x-esri-ftiles-cache-compress", "true", - "Content-Encoding", - "gzip" + "Set-Cookie", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:21 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "X-AspNet-Version", + "4.0.30319", + "X-Powered-By", + "ASP.NET" ], "responseIsBinary": false }, { - "scope": "https://gis.lambeth.gov.uk:443", + "scope": "https://environment.data.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/LambethTreePreservationOrderBoundaries/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTPO_NUMBER%2CLEGISLATION&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", + "path": "/arcgis/rest/services/HE/ScheduledMonuments/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Cname%2Cscheddate%2Camenddate&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d90310b83301085ffcbcd595a7071539b96144da4a69388049ada801531e920e27f6f628b44e8d02defdedd77ef32c14de9be15e351c9f646c5534208458e13828b7a57d328c380e0eecca855424b0de1042c3ee3849383ed5d9f0878ce6a7acd627cb1754f2048f1891469c409a3d6f2d5fc855b6c3941f7d9ef31cdd8bb8ad4835a1272abd9e20817c76f9ed10ad82cff8528cca0bac6a36c265ad935e601e13e083ca81ffb4fea76c4c756f66e29cc6b701f5a56f31b42688fd288010000" + "1f8b08000000000000008d91310fc2201085ffcbcd4c4613d34dad263ad8c16e4d072c678b416c0a0e0de97f171a2a683a38018f77dfbd03038cab56d0fec051b0337d202420dd42e0e6a48de054a182c4c0f37ac74a73661dd9f6b4dfe5c7d4bae4578daa1a648c6a27853d017b2b273dec07dfc4e20b33913e6d08e8be750aaa8e8ff9727bcec6aed4c58a830cc4fc44992bbee88ecb3aaaf75e81b2d60d248bd53202c503ccd1523f9b67c5f609b88e7061eebf70b13de04afb6448f5ab737f5294c31b451f9d35c1010000" ], "rawHeaders": [ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:56 GMT", + "Wed, 12 Jan 2022 09:42:22 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", - "202", + "205", "Connection", "close", "Cache-Control", - "max-age=0,must-revalidate", + "public, must-revalidate, max-age=0", + "Content-Encoding", + "gzip", "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", + "ETag", + "ae5ec479", + "Vary", + "Origin", "X-Content-Type-Options", "nosniff", "X-XSS-Protection", "1; mode=block", - "Vary", - "Origin", - "ETag", - "c2850930", "x-esri-ftiles-cache-compress", "true", - "Content-Encoding", - "gzip" + "Set-Cookie", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:21 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "X-AspNet-Version", + "4.0.30319", + "X-Powered-By", + "ASP.NET" ], "responseIsBinary": false }, { - "scope": "https://environment.data.gov.uk:443", + "scope": "https://gis.lambeth.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/HE/WorldHeritageSites/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Cname&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", + "path": "/arcgis/rest/services/LambethArticle4B1toC3/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CNAME%2CARTICLE_4&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252ca03513a4a692021c79cccc4e2d46225ab6aa5fca4acd4e492cc14a00a385307a218aaa716aa09a83cba1a2683a4b6a4b20024925a5c9409b62f04c8f7f77401ca2482ac41565cab538d623476cdc125459979e948faa16a7352f3d24b3294ac8c4c4d6a63818e4a4d2c292d02f9223ab61600e62e1e1ef3000000" + "1f8b08000000000000008d904f0f82300cc5bfcad233078d7ae1068a11ff60a2dc8c3133545cc44158893164dfdd210417e3c15bd7bdf77b6d6b48842a32fe9c0bcc9288df115c88bc4d000e5c9a969709ae50815bc3d65f06d3389c19455f3aadb8f778bb389cae83d3d8b43eb5ee600673a841b62916839e45d341558af71cb1796fdf3fbc89b7c5dae9015de42ff39e4a2153cbdf693394295dc19d0c2cce67ce3f61b6c1221ecd96c8a92ab1dd9393319e2bfabede70d45f6d9f5774653e9737b6c82b858ccb8445f828f29298c945a4afa3ae42df03ad8ffa051e269908ba010000" ], "rawHeaders": [ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:22 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", - "154", + "228", "Connection", "close", "Cache-Control", - "public, must-revalidate, max-age=0", - "Content-Encoding", - "gzip", + "max-age=0,must-revalidate", "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", - "ETag", - "c6159739", - "Vary", - "Origin", "X-Content-Type-Options", "nosniff", "X-XSS-Protection", "1; mode=block", + "Vary", + "Origin", + "ETag", + "223f8627", "x-esri-ftiles-cache-compress", "true", - "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:56 GMT; Path=/arcgis/rest; Secure; HttpOnly", - "X-AspNet-Version", - "4.0.30319", - "X-Powered-By", - "ASP.NET" + "Content-Encoding", + "gzip" ], "responseIsBinary": false }, { - "scope": "https://environment.data.gov.uk:443", + "scope": "https://gis.lambeth.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/NE/SitesOfSpecialScientificInterestEngland/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Csssi_name&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", + "path": "/arcgis/rest/services/LambethCentralActivitiesZone/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CTITLE%2CPOLICY&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", "body": "", "status": 200, "response": [ - "1f8b08000000000000006d8fbd0ec2300c84dfc5730660cc86842ab1c0005b55552931c528842a0e4315e5dd4950557960f3cf7d7776024b3c39333784ce9ecc0b41033353ef6bade05ee77b4786914127780f4fbc45b245b6964a1092ce0b5ec036c1b216549ca73a410ef48bbf96fe7c3c948da981529cd56a20affbe7708981fc284c24e0d08ff1017abbdbe4ae9c87267e42fdacedf217093ee47f0c010000" + "1f8b08000000000000008d904d8bc2301086ff4a98730545bcf4a65d858a58c15c56f190d55107625a9a512825ff7d535b35bbec82a74cde99f7998f1a0e640badaa19a13e2cd5052186f403223836c25893b26821ae219bcca789f4a9f815462053b9987aa97d2358658b34f9f44217b80ee411db1a4ccb0ffc5c158d82b6a4fb04d2ffb37b4635adc362173d018f6e7fb9d75c9239058047b14673e233c483513f407573bec97a5687b09ddf11155f4b6cb754ec6d5f57fe7db7c1eb5c091a2e9516e33dd38d98d08a4d6ef0c701734dfb4a0c454fc8338aff1cceeddc371013d349c5010000" ], "rawHeaders": [ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:22 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", - "161", + "231", "Connection", "close", "Cache-Control", - "public, must-revalidate, max-age=0", - "Content-Encoding", - "gzip", - "Expires", - "Thu, 01 Jan 1970 00:00:00 GMT", - "ETag", - "712c1184", - "Vary", - "Origin", + "max-age=0,must-revalidate", + "Expires", + "Thu, 01 Jan 1970 00:00:00 GMT", "X-Content-Type-Options", "nosniff", "X-XSS-Protection", "1; mode=block", + "Vary", + "Origin", + "ETag", + "720e0394", "x-esri-ftiles-cache-compress", "true", - "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:56 GMT; Path=/arcgis/rest; Secure; HttpOnly", - "X-AspNet-Version", - "4.0.30319", - "X-Powered-By", - "ASP.NET" + "Content-Encoding", + "gzip" ], "responseIsBinary": false }, { "scope": "https://environment.data.gov.uk:443", "method": "GET", - "path": "/arcgis/rest/services/HE/ScheduledMonuments/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Cname%2Cscheddate%2Camenddate&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", + "path": "/arcgis/rest/services/HE/WorldHeritageSites/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=objectid%2Cname&geometry=530619.5%2C178708.5%2C530624.5%2C178703.5", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d91310fc2201085ffcbcd4c4613d34dad263ad8c16e4d072c678b416c0a0e0de97f171a2a683a38018f77dfbd03038cab56d0fec051b0337d202420dd42e0e6a48de054a182c4c0f37ac74a73661dd9f6b4dfe5c7d4bae4578daa1a648c6a27853d017b2b273dec07dfc4e20b33913e6d08e8be750aaa8e8ff9727bcec6aed4c58a830cc4fc44992bbee88ecb3aaaf75e81b2d60d248bd53202c503ccd1523f9b67c5f609b88e7061eebf70b13de04afb6448f5ab737f5294c31b451f9d35c1010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252ca03513a4a692021c79cccc4e2d46225ab6aa5fca4acd4e492cc14a00a385307a218aaa716aa09a83cba1a2683a4b6a4b20024925a5c9409b62f04c8f7f77401ca2482ac41565cab538d623476cdc125459979e948faa16a7352f3d24b3294ac8c4c4d6a63818e4a4d2c292d02f9223ab61600e62e1e1ef3000000" ], "rawHeaders": [ "Server", "nginx", "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=UTF-8", "Content-Length", - "205", + "154", "Connection", "close", "Cache-Control", @@ -1157,7 +1378,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "ae5ec479", + "c6159739", "Vary", "Origin", "X-Content-Type-Options", @@ -1167,7 +1388,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:56 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:22 GMT; Path=/arcgis/rest; Secure; HttpOnly", "X-AspNet-Version", "4.0.30319", "X-Powered-By", @@ -1176,48 +1397,39 @@ "responseIsBinary": false }, { - "scope": "http://127.0.0.1:56114", + "scope": "http://127.0.0.1:36089", "method": "GET", "path": "/gis/lambeth?x=530622.7463248332&y=178706.16704920324&siteBoundary=[]", "body": "", "status": 200, "response": { - "article4.lambeth.fentiman": {"value": false}, - "article4.lambeth.streatham": {"value": false}, - "article4.lambeth.stockwell": {"value": false}, - "article4.lambeth.leigham": {"value": false}, - "article4.lambeth.stmarks": {"value": false}, - "article4.lambeth.parkHall": {"value": false}, - "article4.lambeth.lansdowne": {"value": false}, - "article4.lambeth.albert": {"value": false}, - "article4.lambeth.hydeFarm": {"value": false}, "designated.AONB": { "text": "is not in an Area of Outstanding Natural Beauty", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.nationalPark": { "text": "is not in a National Park", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.broads": { "text": "is not in a Broad", "value": false, "type": "check", - "data": {} + "data": [] }, "article4": { "text": "is subject to an Article 4 direction(s)", - "description": "South Bank House and Newport Street", + "description": "Central Activities Zone", "value": true, "type": "warning", "data": { - "OBJECTID": 13, - "NAME": "South Bank House and Newport Street", - "ARTICLE_4": "KIBA" + "OBJECTID": 1, + "TITLE": "Central Activities Zone", + "POLICY": "Policy 3 - The Central Activities Zone" } }, "article4.lambeth.kiba": {"value": true}, @@ -1269,6 +1481,14 @@ "data": {} }, "designated.conservationArea.lambeth.churchRoad": {"value": false}, + "article4.lambeth.streathamLodge": {"value": false}, + "article4.lambeth.stockwell": {"value": false}, + "article4.lambeth.leigham": {"value": false}, + "article4.lambeth.stMarks": {"value": false}, + "article4.lambeth.parkHall": {"value": false}, + "article4.lambeth.lansdowne": {"value": false}, + "article4.lambeth.albert": {"value": false}, + "article4.lambeth.hydeFarm": {"value": false}, "designated": {"value": true} }, "rawHeaders": [ @@ -1283,11 +1503,11 @@ "Content-Type", "application/json; charset=utf-8", "Content-Length", - "1977", + "1945", "ETag", - "W/\"7b9-Yj5CKf11pAnmjzsTfEiSfWNMqBw\"", + "W/\"799-T+WPb9tOJw9Qvt6Eg3rNT3QwnXw\"", "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Connection", "close" ], @@ -1297,21 +1517,11 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Sunray+Estate%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Demolition+of+the+Stables+and+the+Forge+on+Catlin+Street%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "Article_4_Direction": "External alterations to buildings are restricted", - "More_information": "http://www.southwark.gov.uk/planning-and-building-control/planning-policy-and-transport-policy/article-4-directions" - }, - "geometry": null, - "id": 1 - } - ], + "features": [], "Metadata": [ {"name": "Article_4_Direction", "type": "String"}, {"name": "More_information", "type": "String"} @@ -1319,17 +1529,17 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "412", + "146", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=26DC77B807AD3B4CCDD95804DF9ED45A; Path=/connect; HttpOnly", + "JSESSIONID=6C8B79FA4772A2CDF0788712DCB1C012; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1339,7 +1549,7 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Town+Centres+A1+to+A2%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Public+Houses%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", @@ -1351,7 +1561,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1361,7 +1571,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=93F149CB7B85FBCBFD78CE78148A9CA4; Path=/connect; HttpOnly", + "JSESSIONID=47FCF2482F5D3BAB0C9E894F1C44C0D9; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1371,11 +1581,21 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+offices+in+the+Central+Activities+Zone%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Sunray+Estate%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", - "features": [], + "features": [ + { + "type": "Feature", + "properties": { + "Article_4_Direction": "External alterations to buildings are restricted", + "More_information": "http://www.southwark.gov.uk/planning-and-building-control/planning-policy-and-transport-policy/article-4-directions" + }, + "geometry": null, + "id": 1 + } + ], "Metadata": [ {"name": "Article_4_Direction", "type": "String"}, {"name": "More_information", "type": "String"} @@ -1383,17 +1603,17 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "146", + "412", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=0AF733A5A13A5325DD942C09A3CE3087; Path=/connect; HttpOnly", + "JSESSIONID=37B42270DB72A7CC078C03D60FD3AB58; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1420,7 +1640,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1430,7 +1650,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=1A542567AFCCA952CE016D8315642F7B; Path=/connect; HttpOnly", + "JSESSIONID=C27864B5CE14E61382D02BFE6AC907BC; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1440,7 +1660,7 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Public+Houses%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Railway+Arches%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", @@ -1452,7 +1672,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1462,7 +1682,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=E513C17790B8D73058F14AC0276B1562; Path=/connect; HttpOnly", + "JSESSIONID=5E4953BDD8F42745E5DD11AEF83957F7; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1472,7 +1692,7 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+HMO+Bywater+Place%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Town+Centres+A1+to+A2%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", @@ -1484,7 +1704,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1494,7 +1714,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=2453C74DC17247F65DF63A7E37033FF9; Path=/connect; HttpOnly", + "JSESSIONID=F01B6FA10DD6079B29B1EC2DEC02CE1F; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1504,7 +1724,7 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+HMO+Henshaw+Street%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+HMO+Bywater+Place%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", @@ -1516,7 +1736,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1526,7 +1746,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=653FA09EA9DD44B802B139D47E1F946F; Path=/connect; HttpOnly", + "JSESSIONID=1130CCA69F0E37CF64DF81EC62C1F8FF; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1536,7 +1756,7 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Town+Centres+A3+-+A5+to+A2+and+from+A1+%E2%80%93+A5+B1+D1+and+D2+to+flexible+uses%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Light+Industrial%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", @@ -1548,7 +1768,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1558,7 +1778,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=D4BEC69119074FDFC133917EA19BD7A1; Path=/connect; HttpOnly", + "JSESSIONID=61EAF61D710A60C4DD8BCC07456E5726; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1568,29 +1788,29 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Historic_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Town+Centres+A3+-+A5+to+A2+and+from+A1+%E2%80%93+A5+B1+D1+and+D2+to+flexible+uses%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", "features": [], "Metadata": [ - {"name": "Location", "type": "String"}, - {"name": "TPO_document", "type": "String"} + {"name": "Article_4_Direction", "type": "String"}, + {"name": "More_information", "type": "String"} ] }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "131", + "146", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=739F562613B778D96B6F10F19D7B168D; Path=/connect; HttpOnly", + "JSESSIONID=34FC894D9996E9F042ED04C4FC0A68D9; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1600,29 +1820,29 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Area_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+HMO+Henshaw+Street%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", "features": [], "Metadata": [ - {"name": "Location", "type": "String"}, - {"name": "TPO_document", "type": "String"} + {"name": "Article_4_Direction", "type": "String"}, + {"name": "More_information", "type": "String"} ] }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "131", + "146", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=F0B1807E18AB8C951C926FD3CD495FDA; Path=/connect; HttpOnly", + "JSESSIONID=92B3282A69DC738572B1EFBBE5838D62; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1632,30 +1852,29 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22OGR_FID%22%2C%22NAME%22%2C%22NOTES%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FUNESCO+World+Heritage+Sites+England%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+offices+in+the+Central+Activities+Zone%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", "features": [], "Metadata": [ - {"name": "OGR_FID", "type": "Double"}, - {"name": "NAME", "type": "String"}, - {"name": "NOTES", "type": "String"} + {"name": "Article_4_Direction", "type": "String"}, + {"name": "More_information", "type": "String"} ] }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "155", + "146", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=590BEAC7CFC8993630D1AFDD6D78C663; Path=/connect; HttpOnly", + "JSESSIONID=514866F2FF19497637FBC42FC4CC6676; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1665,34 +1884,29 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22ID%22%2C%22NAME%22%2C%22STREET_NUMBER%22%2C%22STREET%22%2C%22GRADE%22%2C%22DATE_OF_LISTING%22%2C%22LISTING_DESCRIPTION%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FListed+buildings+%28Southwark%29+Grade+II+star%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Historic_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", "features": [], "Metadata": [ - {"name": "ID", "type": "Double"}, - {"name": "NAME", "type": "String"}, - {"name": "STREET_NUMBER", "type": "String"}, - {"name": "STREET", "type": "String"}, - {"name": "GRADE", "type": "String"}, - {"name": "DATE_OF_LISTING", "type": "Date"}, - {"name": "LISTING_DESCRIPTION", "type": "String"} + {"name": "Location", "type": "String"}, + {"name": "TPO_document", "type": "String"} ] }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "313", + "131", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=26A6391D4C3D154327B59CBD251B9744; Path=/connect; HttpOnly", + "JSESSIONID=C4F4D0CD22140B22E3C1096DF21FA04D; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1702,7 +1916,7 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Group_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Area_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", @@ -1714,7 +1928,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:29 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1724,7 +1938,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=04F12E15795F1AD6F57FF74D52372B68; Path=/connect; HttpOnly", + "JSESSIONID=0212ED034647F27607D53B1CEE879F1F; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1734,21 +1948,11 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Woodland_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Group_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "Location": "Area bounded by Denmark Hill, Sunray Avenue, Red Post Hill and Casino Avenue.", - "TPO_document": "https://geo.southwark.gov.uk/connect/analyst/Includes/TPOs/215.pdf" - }, - "geometry": null, - "id": 7 - } - ], + "features": [], "Metadata": [ {"name": "Location", "type": "String"}, {"name": "TPO_document", "type": "String"} @@ -1756,17 +1960,17 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "362", + "131", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=36B7F3EFD4982A8AF163DF2E2BC2D1E0; Path=/connect; HttpOnly", + "JSESSIONID=BC585BC46494E2EDAB5644594ADE0345; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1776,29 +1980,30 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Railway+Arches%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22OGR_FID%22%2C%22NAME%22%2C%22NOTES%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FUNESCO+World+Heritage+Sites+England%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", "features": [], "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} + {"name": "OGR_FID", "type": "Double"}, + {"name": "NAME", "type": "String"}, + {"name": "NOTES", "type": "String"} ] }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "146", + "155", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=22479980C6BC61C867DB8BDC3C0B3221; Path=/connect; HttpOnly", + "JSESSIONID=A45AC60F7AF866A53FAB9D958B1D7718; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1820,7 +2025,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1830,7 +2035,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=54F493CE308AC08553192F5191B45EF2; Path=/connect; HttpOnly", + "JSESSIONID=6FC4B1DC815032BB525FB1BD28ACB9B6; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1840,34 +2045,39 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22ID%22%2C%22NAME%22%2C%22STREET_NUMBER%22%2C%22STREET%22%2C%22GRADE%22%2C%22DATE_OF_LISTING%22%2C%22LISTING_DESCRIPTION%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FListed+buildings+%28Southwark%29+Grade+I%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Location%22%2C%22TPO_document%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FTPO_zones___Woodland_type%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", - "features": [], + "features": [ + { + "type": "Feature", + "properties": { + "Location": "Area bounded by Denmark Hill, Sunray Avenue, Red Post Hill and Casino Avenue.", + "TPO_document": "https://geo.southwark.gov.uk/connect/analyst/Includes/TPOs/215.pdf" + }, + "geometry": null, + "id": 7 + } + ], "Metadata": [ - {"name": "ID", "type": "Double"}, - {"name": "NAME", "type": "String"}, - {"name": "STREET_NUMBER", "type": "String"}, - {"name": "STREET", "type": "String"}, - {"name": "GRADE", "type": "String"}, - {"name": "DATE_OF_LISTING", "type": "Date"}, - {"name": "LISTING_DESCRIPTION", "type": "String"} + {"name": "Location", "type": "String"}, + {"name": "TPO_document", "type": "String"} ] }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "313", + "362", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=B4708781D14F2A1200CCFDED354A43FF; Path=/connect; HttpOnly", + "JSESSIONID=72232FDD2EE57FB6EF09DD16C0EBE033; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1901,7 +2111,7 @@ }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", @@ -1911,7 +2121,7 @@ "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=DE2C157AABE78AE15CD59E87702AD791; Path=/connect; HttpOnly", + "JSESSIONID=B9C26698D23A083682F354B6E0A7E813; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1921,29 +2131,34 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Light+Industrial%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22ID%22%2C%22NAME%22%2C%22STREET_NUMBER%22%2C%22STREET%22%2C%22GRADE%22%2C%22DATE_OF_LISTING%22%2C%22LISTING_DESCRIPTION%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FListed+buildings+%28Southwark%29+Grade+I%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", "features": [], "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} + {"name": "ID", "type": "Double"}, + {"name": "NAME", "type": "String"}, + {"name": "STREET_NUMBER", "type": "String"}, + {"name": "STREET", "type": "String"}, + {"name": "GRADE", "type": "String"}, + {"name": "DATE_OF_LISTING", "type": "Date"}, + {"name": "LISTING_DESCRIPTION", "type": "String"} ] }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "146", + "313", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=C8891D525E53B8B1E0B328E37FAB30A8; Path=/connect; HttpOnly", + "JSESSIONID=9C2A97D02947D198498589FF03AE9396; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], @@ -1953,36 +2168,41 @@ "scope": "https://geo.southwark.gov.uk:443", "method": "POST", "path": "/connect/analyst/controller/connectProxy/rest/Spatial/FeatureService", - "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22Article_4_Direction%22%2C%22More_information%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FArticle+4+-+Demolition+of+the+Stables+and+the+Forge+on+Catlin+Street%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", + "body": "url=tables%2Ffeatures.json%3Fq%3D%0A++++SELECT+%22ID%22%2C%22NAME%22%2C%22STREET_NUMBER%22%2C%22STREET%22%2C%22GRADE%22%2C%22DATE_OF_LISTING%22%2C%22LISTING_DESCRIPTION%22+%0A++++FROM+%22%2FNamedMaps%2FNamedTables%2FListed+buildings+%28Southwark%29+Grade+II+star%22+%0A++++WHERE+MI_Intersects%28obj%2CMI_Box%28532698.5%2C175008.5%2C532701.5%2C175011.5%2C%27EPSG%3A27700%27%29%29%0A++%26page%3D1%26pageLength%3D1%26strictSSL%3Dfalse%26gzip%3Dtrue&encodeSpecialChars=true", "status": 200, "response": { "type": "FeatureCollection", "features": [], "Metadata": [ - {"name": "Article_4_Direction", "type": "String"}, - {"name": "More_information", "type": "String"} + {"name": "ID", "type": "Double"}, + {"name": "NAME", "type": "String"}, + {"name": "STREET_NUMBER", "type": "String"}, + {"name": "STREET", "type": "String"}, + {"name": "GRADE", "type": "String"}, + {"name": "DATE_OF_LISTING", "type": "Date"}, + {"name": "LISTING_DESCRIPTION", "type": "String"} ] }, "rawHeaders": [ "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Content-Type", "application/json;charset=utf-8", "Content-Length", - "146", + "313", "Connection", "keep-alive", "Server", "Apache-Coyote/1.1", "Set-Cookie", - "JSESSIONID=C124EEA8836AFC5E727E85561A2C422F; Path=/connect; HttpOnly", + "JSESSIONID=8F75583A430A0B46031EFB05A4B4A729; Path=/connect; HttpOnly", "Cache-Control", "max-age=3600" ], "responseIsBinary": false }, { - "scope": "http://127.0.0.1:56125", + "scope": "http://127.0.0.1:45261", "method": "GET", "path": "/gis/southwark?x=532700&y=175010&siteBoundary=[]", "body": "", @@ -1992,19 +2212,19 @@ "text": "is not in an Area of Outstanding Natural Beauty", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.nationalPark": { "text": "is not in a National Park", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.broads": { "text": "is not in a Broad", "value": false, "type": "check", - "data": {} + "data": [] }, "article4": { "text": "is subject to Article 4 restriction(s)", @@ -2016,6 +2236,13 @@ "More_information": "http://www.southwark.gov.uk/planning-and-building-control/planning-policy-and-transport-policy/article-4-directions" } }, + "article4.southwark.sunray": {"value": true}, + "article4.southwark.caz": {"value": false}, + "article4.southwark.publichouse": {"value": false}, + "article4.southwark.hmo": {"value": false}, + "article4.southwark.lightindustrial": {"value": false}, + "article4.southwark.towncentre": {"value": false}, + "article4.southwark.southernrail": {"value": false}, "listed": { "value": false, "text": "is not in, or within, a Listed Building", @@ -2048,8 +2275,7 @@ "Location": "Area bounded by Denmark Hill, Sunray Avenue, Red Post Hill and Casino Avenue.", "TPO_document": "https://geo.southwark.gov.uk/connect/analyst/Includes/TPOs/215.pdf" } - }, - "article4.southwark.sunray": {"value": true} + } }, "rawHeaders": [ "X-Powered-By", @@ -2063,11 +2289,11 @@ "Content-Type", "application/json; charset=utf-8", "Content-Length", - "1710", + "1992", "ETag", - "W/\"6ae-SkO91nrEAS4tdcYgv/PtWWbE96w\"", + "W/\"7c8-DzD3TC6rClZLnXDSFSzRuJr9ozM\"", "Date", - "Fri, 10 Dec 2021 17:47:57 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close" ], @@ -2076,11 +2302,11 @@ { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/8/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CLOCATION&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2520a700cf20cf650d2514a03093ae6642616a7162b59552bf93b79b93a8778ba00d5c0993a4a3efece8e219efe7e405138b316aa19a82dba5a290f622e929e92ca0290486a715126d8e61020df1f2c9308b20e5971ad0edc00b8f1d80d082e29cacc4b473203497d4e6a5e7a49869295b9416d2cd06da98925a545204f45c7d602008a2779f204010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2520a700cf20cf650d2514a03093ae6642616a7162b59552bf93b79b93a8778ba00d5c099b550654005d1d54a791013e0b23a4a2595052091d4e2a24cb01d2140be3f58261164308a51b140b352134b4a8b40d645c7d6020011d8e66a9e000000" ], "rawHeaders": [ "Cache-Control", @@ -2092,7 +2318,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "e3cbe4df", + "1a0b6423", "Vary", "Origin", "Server", @@ -2104,7 +2330,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2112,22 +2338,22 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "168" + "126" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/1/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/3/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CDESIGNATED&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2520a700cf20cf650d2514a03093ae6642616a7162b59552bf93b79b93a8778ba00d5c099b550654005d1d54a791013e0b23a4a2595052091d4e2a24cb01d2140be3f58261164308a51b140b352134b4a8b40d645c7d6020011d8e66a9e000000" + "1f8b08000000000000006d8fb10a83301086dfe56641a545aa9badb6d84107dd8a438a571b4845923888e4dd1bb54822dd2e77f77df96f82868a9e91f14a913539f9204490a46576cbe32a4dc081d73c8819250205441314e77b7aa9b244ef6da5632216af7e028d3e26e856bfc1c9b19f3b28385d1254fa5d2c13327f692e2b67135801ff294ac969d71a168b60d8b5f20dd1d153b5ce87440e1cd784446af239c8fdad87d3ee463f74bdc0f5c32004a56af505d59c2d4948010000" ], "rawHeaders": [ "Cache-Control", @@ -2139,7 +2365,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "1a0b6423", + "8dcca684", "Vary", "Origin", "Server", @@ -2151,7 +2377,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2159,22 +2385,22 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "126" + "188" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/6/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CSPECIES%2CREFERENCE_&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/1/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000008d903d0f82301086ffcbcd1d30c6854df148700043d908314da8d8a41242eb4048ffbb2d0a94c4c1ed3ede7bdebb1ba116aa936c88059775ca9e1c42c831c61cd3086f40e0ee1a472998e20ac211b2d305a322395bdd1212a0578c12a4b63847c4c76c98e60bb5b87284f6e3e9b1f4d0b90a57bd98b62a6c9e4d1de6d6f0c5862c80d5f7d73cd5bd681b0fb1ca256f1bfd807017041e6ef383bf889b8919ba3f98ca9ecb997ef5ee7f6565dea4e3b94a73010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2520a700cf20cf650d2514a03093ae6642616a7162b59552bf93b79b93a8778ba00d5c099b550654005d1d54a791013e0b23a4a2595052091d4e2a24cb01d2140be3f58261164308a51b140b352134b4a8b40d645c7d6020011d8e66a9e000000" ], "rawHeaders": [ "Cache-Control", @@ -2186,7 +2412,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "80e16265", + "1a0b6423", "Vary", "Origin", "Server", @@ -2198,7 +2424,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2206,18 +2432,18 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "190" + "126" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/0/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/2/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ @@ -2245,7 +2471,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2253,7 +2479,7 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", @@ -2264,11 +2490,11 @@ { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/9/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CLOCATION&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/4/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252f2f177760cf1f4f753d2514a03093be6642616a7162b59552bf93b79b93a8778ba0055c1993a080d487a6ba19a81daa2ab95f2202623e929a92c0089a416176582ed0e01f2fdc1328920eb9015d7eac00d40721a3603824b8a32f3d291cc40529f939a975e92a1646562501b0b745b6a62496911c853d1b1b500999c6bee06010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252f2730d77f374f57151d2514a03093be6642616a7162b59552bf93b79b93a8778ba0055c199b550654005d1d54a791033e0b23a4a2595052091d4e2a24cb02d2140be3f58261164308a51b140b352134b4a8b40d645c7d6020054cb60e7a0000000" ], "rawHeaders": [ "Cache-Control", @@ -2280,7 +2506,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "bfee46e4", + "4f0f77a6", "Vary", "Origin", "Server", @@ -2292,7 +2518,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2300,22 +2526,22 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "161" + "128" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/5/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CAREAS&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/8/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CLOCATION&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252720c72750c56d2514a038939e6642616a7162b59552bf93b79b93a8778ba0095c0993a50d5305db5506d400dd1d54a79100391549754168044528b8b32c1568600f9fe6099449045c88a6b75e006c05c844d77704951665e3a920130c539a979e925194a564606b5b14057a526969416813c121d5b0b00a81ef63cf7000000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2520a700cf20cf650d2514a03093ae6642616a7162b59552bf93b79b93a8778ba00d5c0993a4a3efece8e219efe7e405138b316aa19a82dba5a290f622e929e92ca0290486a715126d8e61020df1f2c9308b20e5971ad0edc00b8f1d80d082e29cacc4b473203497d4e6a5e7a49869295b9416d2cd06da98925a545204f45c7d602008a2779f204010000" ], "rawHeaders": [ "Cache-Control", @@ -2327,7 +2553,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "b7115859", + "e3cbe4df", "Vary", "Origin", "Server", @@ -2339,7 +2565,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2347,22 +2573,22 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "158" + "168" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/7/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGROUPS%2CSPECIES&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/9/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CLOCATION&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252720ff20f0d0856d2514a03093ae6642616a7162b59552bf93b79b93a8778ba00d5c0993a30e548fa82035c9d3d5d414230562dd430a031d1d54a79107b90cc28a92c0089a4161765825d1202e4fb83651241d6232baed5811b00b7109bf6e092a2ccbc742413e0aa7352f3d24b3294ac8c0c90cc82b99448c310ca61a6191a18d4c602bd999a58525a040aafe8d85a007c45e3fd5f010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252f2f177760cf1f4f753d2514a03093be6642616a7162b59552bf93b79b93a8778ba0055c1993a080d487a6ba19a81daa2ab95f2202623e929a92c0089a416176582ed0e01f2fdc1328920eb9015d7eac00d40721a3603824b8a32f3d291cc40529f939a975e92a1646562501b0b745b6a62496911c853d1b1b500999c6bee06010000" ], "rawHeaders": [ "Cache-Control", @@ -2374,7 +2600,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "a53e735b", + "bfee46e4", "Vary", "Origin", "Server", @@ -2386,7 +2612,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2394,22 +2620,22 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "183" + "161" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/3/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CDESIGNATED&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/5/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CAREAS&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b08000000000000006d8fb10a83301086dfe56641a545aa9badb6d84107dd8a438a571b4845923888e4dd1bb54822dd2e77f77df96f82868a9e91f14a913539f9204490a46576cbe32a4dc081d73c8819250205441314e77b7aa9b244ef6da5632216af7e028d3e26e856bfc1c9b19f3b28385d1254fa5d2c13327f692e2b67135801ff294ac969d71a168b60d8b5f20dd1d153b5ce87440e1cd784446af239c8fdad87d3ee463f74bdc0f5c32004a56af505d59c2d4948010000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252720c72750c56d2514a038939e6642616a7162b59552bf93b79b93a8778ba0095c0993a50d5305db5506d400dd1d54a79100391549754168044528b8b32c1568600f9fe6099449045c88a6b75e006c05c844d77704951665e3a920130c539a979e925194a564606b5b14057a526969416813c121d5b0b00a81ef63cf7000000" ], "rawHeaders": [ "Cache-Control", @@ -2421,7 +2647,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "8dcca684", + "b7115859", "Vary", "Origin", "Server", @@ -2433,7 +2659,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2441,22 +2667,22 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "188" + "158" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/4/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/7/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CGROUPS%2CSPECIES&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252f2730d77f374f57151d2514a03093be6642616a7162b59552bf93b79b93a8778ba0055c199b550654005d1d54a791033e0b23a4a2595052091d4e2a24cb02d2140be3f58261164308a51b140b352134b4a8b40d645c7d6020054cb60e7a0000000" + "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b252720ff20f0d0856d2514a03093ae6642616a7162b59552bf93b79b93a8778ba00d5c0993a30e548fa82035c9d3d5d414230562dd430a031d1d54a79107b90cc28a92c0089a4161765825d1202e4fb83651241d6232baed5811b00b7109bf6e092a2ccbc742413e0aa7352f3d24b3294ac8c0c90cc82b99448c310ca61a6191a18d4c602bd999a58525a040aafe8d85a007c45e3fd5f010000" ], "rawHeaders": [ "Cache-Control", @@ -2468,7 +2694,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "4f0f77a6", + "a53e735b", "Vary", "Origin", "Server", @@ -2480,7 +2706,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2488,22 +2714,22 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "128" + "183" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/2/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/6/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CSPECIES%2CREFERENCE_&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ - "1f8b0800000000000000ab564ac92c2ec849ac74cb4ccd49f14bcc4d55b2520a700cf20cf650d2514a03093ae6642616a7162b59552bf93b79b93a8778ba00d5c099b550654005d1d54a791013e0b23a4a2595052091d4e2a24cb01d2140be3f58261164308a51b140b352134b4a8b40d645c7d6020011d8e66a9e000000" + "1f8b08000000000000008d903d0f82301086ffcbcd1d30c6854df148700043d908314da8d8a41242eb4048ffbb2d0a94c4c1ed3ede7bdebb1ba116aa936c88059775ca9e1c42c831c61cd3086f40e0ee1a472998e20ac211b2d305a322395bdd1212a0578c12a4b63847c4c76c98e60bb5b87284f6e3e9b1f4d0b90a57bd98b62a6c9e4d1de6d6f0c5862c80d5f7d73cd5bd681b0fb1ca256f1bfd807017041e6ef383bf889b8919ba3f98ca9ecb997ef5ee7f6565dea4e3b94a73010000" ], "rawHeaders": [ "Cache-Control", @@ -2515,7 +2741,7 @@ "Expires", "Thu, 01 Jan 1970 00:00:00 GMT", "ETag", - "1a0b6423", + "80e16265", "Vary", "Origin", "Server", @@ -2527,7 +2753,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2535,18 +2761,18 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", - "126" + "190" ], "responseIsBinary": false }, { "scope": "https://mapping.braintree.gov.uk:443", "method": "GET", - "path": "//arcgis/rest/services/Internal_Maps/PlanX/MapServer/10/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CINFORMATIO&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", + "path": "//arcgis/rest/services/PlanX/PlanX/MapServer/10/query?where=1%3D1&geometryType=esriGeometryEnvelope&inSR=27700&spatialRel=esriSpatialRelIntersects&returnGeometry=false&outSR=4326&f=json&outFields=OBJECTID%2CINFORMATIO&geometry=575628.95%2C223122.05%2C575629.05%2C223121.95", "body": "", "status": 200, "response": [ @@ -2574,7 +2800,7 @@ "x-esri-ftiles-cache-compress", "true", "Set-Cookie", - "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Fri, 10-Dec-2021 17:48:58 GMT; Path=/arcgis/rest; Secure; HttpOnly", + "AGS_ROLES=\"419jqfa+uOZgYod4xPOQ8Q==\"; Version=1; Max-Age=60; Expires=Wed, 12-Jan-2022 09:43:30 GMT; Path=/arcgis/rest; Secure; HttpOnly", "Server", "", "X-AspNet-Version", @@ -2582,7 +2808,7 @@ "X-Powered-By", "ASP.NET", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close", "Content-Length", @@ -2591,7 +2817,7 @@ "responseIsBinary": false }, { - "scope": "http://127.0.0.1:56147", + "scope": "http://127.0.0.1:45631", "method": "GET", "path": "/gis/braintree?x=575629.54&y=223122.85&siteBoundary=[]", "body": "", @@ -2601,25 +2827,25 @@ "text": "is not in an Area of Outstanding Natural Beauty", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.nationalPark": { "text": "is not in a National Park", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.broads": { "text": "is not in a Broad", "value": false, "type": "check", - "data": {} + "data": [] }, "designated.WHS": { "text": "is not an UNESCO World Heritage Site", "value": false, "type": "check", - "data": {} + "data": [] }, "listed.grade1": {"value": false}, "listed.grade2": {"value": false}, @@ -2677,9 +2903,9 @@ "Content-Length", "1241", "ETag", - "W/\"4d9-x0YmNFCp0hgAjAlHgyuXHyn6KCk\"", + "W/\"4d9-3qWrCNpRZHta+5iudLxD7V4yRR4\"", "Date", - "Fri, 10 Dec 2021 17:47:58 GMT", + "Wed, 12 Jan 2022 09:42:30 GMT", "Connection", "close" ],